-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
mkdocs.yml
65 lines (65 loc) · 2.34 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
docs_dir: docs/book
site_dir: docs/html
extra:
project: Components
current_version: v4
versions:
- v4
- v3
- v2
- v1
nav:
- Home: index.md
- v4:
- Introduction: v4/intro.md
- "Installation and Requirements": v4/install.md
- Usage: v4/usage.md
- Middleware: v4/middleware.md
- "Error Handlers": v4/error-handlers.md
- "Creating Middleware": v4/creating-middleware.md
- "Composing middleware": v4/executing-middleware.md
- "API Reference": v4/api.md
- Migration:
- "Migration from Version 3 to 4": v4/migration.md
- v3:
- Intro: v3/intro.md
- Reference:
- "Installation and Requirements": v3/install.md
- Usage: v3/usage.md
- Middleware: v3/middleware.md
- "Error Handlers": v3/error-handlers.md
- "Creating Middleware": v3/creating-middleware.md
- "Composing middleware": v3/executing-middleware.md
- "API Reference": v3/api.md
- Migration: v3/migration.md
- v2:
- "Installation and Requirements": v2/install.md
- Usage: v2/usage.md
- Middleware: v2/middleware.md
- "Error Handlers": v2/error-handlers.md
- "Creating Middleware": v2/creating-middleware.md
- "Executing and composing middleware": v2/executing-middleware.md
- "API Reference": v2/api.md
- Migration: v2/migration.md
- v1:
- "Installation and Requirements": v1/install.md
- Usage: v1/usage.md
- Middleware: v1/middleware.md
- "Error Handlers": v1/error-handlers.md
- "Creating Middleware": v1/creating-middleware.md
- "Executing and composing middleware": v1/executing-middleware.md
- "API Reference": v1/api.md
site_name: laminas-stratigility
site_description: "PSR-7 middleware foundation for building and dispatching middleware pipelines"
repo_url: 'https://github.com/laminas/laminas-stratigility'
plugins:
- redirects:
redirect_maps:
install.md: v4/install.md
usage.md: v4/usage.md
middleware.md: v4/middleware.md
error-handlers.md: v4/error-handlers.md
creating-middleware.md: v4/creating-middleware.md
executing-middleware.md: v4/executing-middleware.md
api.md: v4/api.md
migration.md: v4/migration.md