diff --git a/CHANGELOG.md b/CHANGELOG.md index ede63d66..f337f9d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,26 @@ All notable changes to this project will be documented in this file, in reverse chronological order by release. +## 1.1.0 - TBD + +- Nothing. + +### Added + +- Nothing. + +### Deprecated + +- Nothing. + +### Removed + +- Nothing. + +### Fixed + +- Nothing. + ## 1.0.0 - TBD Initial stable release. diff --git a/doc/book/images/check.png b/doc/book/images/check.png new file mode 100644 index 00000000..6002bb8d Binary files /dev/null and b/doc/book/images/check.png differ diff --git a/doc/book/images/check.svg b/doc/book/images/check.svg new file mode 100644 index 00000000..aacc24d3 --- /dev/null +++ b/doc/book/images/check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/doc/book/images/checkmark.png b/doc/book/images/checkmark.png deleted file mode 100644 index e2107e55..00000000 Binary files a/doc/book/images/checkmark.png and /dev/null differ diff --git a/doc/book/images/error.png b/doc/book/images/error.png new file mode 100644 index 00000000..7e1ff3e7 Binary files /dev/null and b/doc/book/images/error.png differ diff --git a/doc/book/images/error.svg b/doc/book/images/error.svg new file mode 100644 index 00000000..d2694b7a --- /dev/null +++ b/doc/book/images/error.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/doc/book/images/lambda.png b/doc/book/images/lambda.png index f17f9e0a..0a3fd1c1 100644 Binary files a/doc/book/images/lambda.png and b/doc/book/images/lambda.png differ diff --git a/doc/book/images/lambda.svg b/doc/book/images/lambda.svg new file mode 100644 index 00000000..946f588b --- /dev/null +++ b/doc/book/images/lambda.svg @@ -0,0 +1,5 @@ + \ No newline at end of file diff --git a/doc/book/images/network.png b/doc/book/images/network.png new file mode 100644 index 00000000..5759ad75 Binary files /dev/null and b/doc/book/images/network.png differ diff --git a/doc/book/images/network.svg b/doc/book/images/network.svg new file mode 100644 index 00000000..3702d013 --- /dev/null +++ b/doc/book/images/network.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/doc/book/images/nodes.png b/doc/book/images/nodes.png deleted file mode 100644 index 84f2566f..00000000 Binary files a/doc/book/images/nodes.png and /dev/null differ diff --git a/doc/book/images/pencil.png b/doc/book/images/pencil.png index 3313b44a..33b622e1 100644 Binary files a/doc/book/images/pencil.png and b/doc/book/images/pencil.png differ diff --git a/doc/book/images/pencil.svg b/doc/book/images/pencil.svg new file mode 100644 index 00000000..408450e9 --- /dev/null +++ b/doc/book/images/pencil.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/doc/book/images/syringe.png b/doc/book/images/syringe.png index 969ed4e8..96108c29 100644 Binary files a/doc/book/images/syringe.png and b/doc/book/images/syringe.png differ diff --git a/doc/book/images/syringe.svg b/doc/book/images/syringe.svg new file mode 100644 index 00000000..ec8f05dc --- /dev/null +++ b/doc/book/images/syringe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/doc/book/images/warning.png b/doc/book/images/warning.png deleted file mode 100644 index b43e2890..00000000 Binary files a/doc/book/images/warning.png and /dev/null differ diff --git a/doc/book/index.html b/doc/book/index.html index 01595ca9..7af90bd6 100644 --- a/doc/book/index.html +++ b/doc/book/index.html @@ -3,14 +3,15 @@
PSR-7 Middleware in Minutes
+$ composer create-project -s rc zendframework/zend-expressive-skeleton expressive









Installation is only a Composer command away!
-
-$ composer create-project -s rc zendframework/zend-expressive-skeleton expressive
-
+$ composer create-project -s rc zendframework/zend-expressive-skeleton expressive
- Expressive provides interfaces for routing and templating, letting you @@ -111,21 +109,19 @@


Write middleware:
@@ -139,24 +135,17 @@ Applications, Simplified
$response->getBody()->write('You visited ' . $path);
return $next($request, $response->withHeader('X-Path', $path));
-};
-
-
+};
And add it to an application:
-
$app->get('/path', $pathMiddleware);
Or use the menu to navigate to the section you're interested in.