@@ -3,6 +3,8 @@ markdown: kramdown
33timezone : America/New_York
44title : Slim Framework
55url : http://www.slimframework.com
6+ slim_version : v4
7+ slim_docs_versions : v2, v3, v4
68slim_website_repo : https://github.com/slimphp/Slim-Website/tree/gh-pages/
79urlBasePath :
810include : [.htaccess]
@@ -19,10 +21,87 @@ defaults:
1921 path : " "
2022 type : " pages"
2123 values :
22- docs :
24+ docs-v4 :
2325 - title : Get Started
2426 items :
25- - [/docs, Home]
27+ - [/docs/v4, Home]
28+ - [/docs/v4/start/installation.md, Installation]
29+ - [/docs/v4/start/upgrade.md, Upgrade Guide]
30+ - [/docs/v4/start/web-servers.md, Web Servers]
31+ - [/docs/v4/deployment/deployment.md, Deployment]
32+ - title : Concepts
33+ items :
34+ - [/docs/v4/concepts/life-cycle.md, Application Life Cycle]
35+ - [/docs/v4/concepts/value-objects.md, PSR-7]
36+ - [/docs/v4/concepts/middleware.md, Middleware]
37+ - [/docs/v4/concepts/di.md, Dependency Container]
38+ - title : The Application
39+ items :
40+ - [/docs/v4/objects/application.md, Overview]
41+ - [/docs/v4/objects/application.md#notices-and-warnings-handling, Notices & Warnings Handling]
42+ - title : The Request
43+ items :
44+ - [/docs/v4/objects/request.md, Overview]
45+ - [/docs/v4/objects/request.md#the-request-method, Method]
46+ - [/docs/v4/objects/request.md#the-request-headers, Headers]
47+ - [/docs/v4/objects/request.md#the-request-body, Body]
48+ - [/docs/v4/objects/request.md#uploaded-files, Uploaded Files]
49+ - [/docs/v4/objects/request.md#request-helpers, Helpers]
50+ - [/docs/v4/objects/request.md#route-object, Route object]
51+ - [/docs/v4/objects/request.md#media-type-parsers, Media type parsers]
52+
53+ - title : The Response
54+ items :
55+ - [/docs/v4/objects/response.md, Overview]
56+ - [/docs/v4/objects/response.md#the-response-status, Status]
57+ - [/docs/v4/objects/response.md#the-response-headers, Headers]
58+ - [/docs/v4/objects/response.md#the-response-body, Body]
59+ - [/docs/v4/objects/response.md#returning-json, JSON]
60+ - title : Routing
61+ items :
62+ - [/docs/v4/objects/routing.md, Overview]
63+ - [/docs/v4/objects/routing.md#how-to-create-routes, Create Routes]
64+ - [/docs/v4/objects/routing.md#route-callbacks, Callbacks]
65+ - [/docs/v4/objects/routing.md#route-strategies, Strategies]
66+ - [/docs/v4/objects/routing.md#route-placeholders, Placeholders]
67+ - [/docs/v4/objects/routing.md#route-names, Names]
68+ - [/docs/v4/objects/routing.md#route-groups, Groups]
69+ - [/docs/v4/objects/routing.md#route-middleware, Middleware]
70+ - [/docs/v4/objects/routing.md#router-caching, Caching]
71+ - [/docs/v4/objects/routing.md#container-resolution, Container Resolution]
72+ - title : Packaged Middleware
73+ items :
74+ - [/docs/v4/middleware/routing.md, Routing]
75+ - [/docs/v4/middleware/error-handling.md, Error Handling]
76+ - [/docs/v4/middleware/method-overriding.md, Method Overriding]
77+ - [/docs/v4/middleware/output-buffering.md, Output Buffering]
78+ - [/docs/v4/middleware/content-length.md, Content Length]
79+ - title : Cook book
80+ items :
81+ - [/docs/v4/cookbook/route-patterns.md, Trailing / in routes]
82+ - [/docs/v4/cookbook/retrieving-current-route.md, Retrieving Current Route]
83+ - [/docs/v4/cookbook/enable-cors.md, Enabling CORS]
84+ - [/docs/v4/cookbook/uploading-files.md, Uploading Files using POST forms]
85+ - title : Contributing
86+ items :
87+ - [/docs/v4/contributors/strategy.md, Branching Strategy]
88+ - [/docs/v4/contributors/guidelines.md, Guidelines]
89+
90+ - scope :
91+ path : " docs/v4"
92+ type : " pages"
93+ values :
94+ layout : docs-v4
95+
96+ -
97+ scope :
98+ path : " "
99+ type : " pages"
100+ values :
101+ docs-v3 :
102+ - title : Get Started
103+ items :
104+ - [/docs/v3, Home]
26105 - [/docs/v3/start/installation.md, Installation]
27106 - [/docs/v3/start/upgrade.md, Upgrade Guide]
28107 - [/docs/v3/start/web-servers.md, Web Servers]
@@ -33,7 +112,8 @@ defaults:
33112
34113 - title : Concepts
35114 items :
36- - [/docs/v3/concepts/value-objects.md, PSR 7]
115+ - [/docs/v3/concepts/life-cycle.md, Application Life Cycle]
116+ - [/docs/v3/concepts/value-objects.md, PSR-7]
37117 - [/docs/v3/concepts/middleware.md, Middleware]
38118 - [/docs/v3/concepts/di.md, Dependency Container]
39119 - title : The Application
@@ -94,17 +174,17 @@ defaults:
94174 - [/docs/v3/features/csrf.md, CSRF Protection]
95175 - [/docs/v3/features/flash.md, Flash Messages]
96176 - ['https://github.com/slimphp/Slim/wiki/Middleware-for-Slim-Framework-v3.x', 3rd Party]
97-
98177 - title : Contributing
99178 items :
100179 - [/docs/v3/contributors/strategy.md, Branching Strategy]
101180 - [/docs/v3/contributors/guidelines.md, Guidelines]
102- -
103- scope :
104- path : " docs"
181+
182+ - scope :
183+ path : " docs/v3 "
105184 type : " pages"
106185 values :
107- layout : docs
186+ layout : docs-v3
187+
108188 -
109189 scope :
110190 path : " "
0 commit comments