This repository has been archived by the owner on Nov 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
mkdocs.yml
86 lines (86 loc) · 2.47 KB
/
mkdocs.yml
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
site_name: Slim Framework v2
pages:
- Home: index.md
- Get Started: start/get-started.md
- Configuration:
- Overview: configuration/overview.md
- Settings: configuration/settings.md
- Names and Scopes: configuration/names-and-scopes.md
- Modes: configuration/modes.md
- Routing:
- Overview: routing/overview.md
- GET Routes: routing/get.md
- POST Routes: routing/post.md
- PUT Routes: routing/put.md
- DELETE Routes: routing/delete.md
- OPTIONS Routes: routing/options.md
- PATCH Routes: routing/patch.md
- Custom Routes: routing/custom.md
- Parameters: routing/params.md
- Names: routing/names.md
- Conditions: routing/conditions.md
- Middleware: routing/middleware.md
- Groups: routing/groups.md
- Helpers: routing/helpers.md
- URL Rewriting: routing/rewrite.md
- Environment:
- Overview: environment/overview.md
- Request:
- Overview: request/overview.md
- Method: request/method.md
- Headers: request/headers.md
- Body: request/body.md
- Variables: request/variables.md
- Cookies: request/cookies.md
- Paths: request/paths.md
- XHR: request/xhr.md
- Helpers: request/helpers.md
- Content-Types: request/content-types.md
- Response:
- Overview: response/overview.md
- Status: response/status.md
- Headers: response/headers.md
- Body: response/body.md
- Cookies: response/cookies.md
- Helpers: response/helpers.md
- View:
- Overview: view/overview.md
- Rendering: view/rendering.md
- Custom: view/custom.md
- Data: view/data.md
- HTTP Cache:
- Overview: cache/overview.md
- ETag: cache/etag.md
- Last Modified: cache/lastmodified.md
- Expires: cache/expires.md
- Middleware:
- Overview: middleware/overview.md
- How to Use: middleware/how-to-use.md
- How to Write: middleware/how-to-write.md
- Hooks:
- Overview: hooks/overview.md
- How to Use: hooks/how-to-use.md
- Defaults: hooks/defaults.md
- Custom: hooks/custom.md
- Flash Messages:
- Overview: flash/overview.md
- Next: flash/next.md
- Now: flash/now.md
- Keep: flash/keep.md
- Sessions:
- Native: sessions/native.md
- Cookies: sessions/cookies.md
- Logging:
- Activate: logging/activate.md
- Levels: logging/levels.md
- Writers: logging/writers.md
- Error Handling:
- Overview: errors/overview.md
- 500 System Error: errors/500.md
- 404 Not Found: errors/404.md
- Debug Mode: errors/debug.md
- Output: errors/output.md
- Dependency Injection:
- Overview: di/overview.md
theme: readthedocs
markdown_extensions: [markdown.extensions.extra]