-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
111 lines (102 loc) · 3.8 KB
/
index.html
File metadata and controls
111 lines (102 loc) · 3.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<html>
<head>
<title>Radar for PHP</title>
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
</head>
<body>
<header>
<div class="container">
<div class="row">
<div class="prev col-md-3">
</div>
<div class="current col-md-6">
<h3 class="title">
Radar for PHP </h3>
<small class="parent">Radar for PHP</small>
</div>
<div class="next col-md-3">
<label for="">Next</label>
<a href="/intro.html">Introduction</a> </div>
<div class="clearfix"></div>
</div>
</div>
</header>
<section id="content">
<div class="container">
<div class="row">
<div class="col-md-12">
<h1>Radar for PHP</h1>
<dl>
<dt>1. <a href="/intro.html#1">Introduction</a></dt>
<dd><dl>
<dt>1.1. <a href="/intro.html#1-1">What is Action-Domain-Responder?</a></dt>
<dt>1.2. <a href="/intro.html#1-2">How Does Radar Work?</a></dt>
<dt>1.3. <a href="/intro.html#1-3">Installing Radar</a></dt>
<dt>1.4. <a href="/intro.html#1-4">Project Structure</a></dt>
<dt>1.5. <a href="/intro.html#1-5">Setting A Project Namespace</a></dt>
</dl></dd>
<dt>2. <a href="/domain.html#2">Domain Design</a></dt>
<dd><dl>
<dt>2.1. <a href="/domain.html#2-1">Application Service</a></dt>
<dt>2.2. <a href="/domain.html#2-2">Class Structure</a></dt>
<dd><dl>
<dt>2.2.1. <a href="/domain.html#2-2-1">Domain Logic</a></dt>
<dt>2.2.2. <a href="/domain.html#2-2-2">Domain Packaging</a></dt>
</dl></dd>
</dl></dd>
<dt>3. <a href="/routing.html#3">Routing</a></dt>
<dd><dl>
<dt>3.1. <a href="/routing.html#3-1">Adding A Route</a></dt>
<dt>3.2. <a href="/routing.html#3-2">Manually Specifying A Custom Input Class</a></dt>
<dt>3.3. <a href="/routing.html#3-3">Manually Specifying A Custom Responder Class</a></dt>
<dt>3.4. <a href="/routing.html#3-4">Automatic Input And Responder Discovery</a></dt>
<dt>3.5. <a href="/routing.html#3-5">Other Route Specifications</a></dt>
</dl></dd>
<dt>4. <a href="/middleware.html#4">Middleware</a></dt>
<dd><dl>
<dt>4.1. <a href="/middleware.html#4-1">Exception Handling</a></dt>
<dt>4.2. <a href="/middleware.html#4-2">Middleware And Domain Activity</a></dt>
</dl></dd>
<dt>5. <a href="/environment.html#5">Environment Variables</a></dt>
<dt>6. <a href="/container.html#6">Container Configuration</a></dt>
<dd><dl>
<dt>6.1. <a href="/container.html#6-1">Aura.Di</a></dt>
<dt>6.2. <a href="/container.html#6-2">Configuration (aka "Providers")</a></dt>
<dt>6.3. <a href="/container.html#6-3">Extracting Setup To Configuration</a></dt>
</dl></dd>
<dt>7. <a href="/execution.html#7">Execution Process</a></dt>
</dl>
</div>
</div>
</div>
</section>
<footer>
<section id="links">
<div class="container">
<div class="row">
<div class="prev col-md-3">
</div>
<div class="parent col-md-6">
</div>
<div class="next col-md-3">
<label for="">Next</label>
<a href="/intro.html">1. Introduction</a> </div>
<div class="clearfix"></div>
</div>
</div>
</section>
<section id="copyright">
<div class="container">
<div class="row">
<div class="col-md-12">
<span>
Powered by <a href="">Bookdown.io</a> | Designed by <a href="">yuripertamax</a>
</span>
</div>
</div>
</div>
</section>
</footer>
</body>
</html>