From 8a7b281f253c895e215ca8ba51d1b50feea24762 Mon Sep 17 00:00:00 2001 From: Daniel Gimenes Date: Sun, 11 Oct 2015 16:10:20 -0300 Subject: [PATCH] Replace Aura router by FastRoute in docs Because the quick start suggests FastRoute as default router and AppFactory::create() works with FastRoute by default --- doc/book/container/factories.md | 2 +- doc/book/quick-start.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/book/container/factories.md b/doc/book/container/factories.md index 7c0edd62..e2f28e82 100644 --- a/doc/book/container/factories.md +++ b/doc/book/container/factories.md @@ -16,7 +16,7 @@ namespace, and define an `__invoke()` method that accepts an - **Requires**: no additional services are required. - **Optional**: - `Zend\Expressive\Router\RouterInterface`. When provided, the service will - be used to construct the `Application` instance; otherwise, an Aura router + be used to construct the `Application` instance; otherwise, an FastRoute router implementation will be used. - `Zend\Expressive\FinalHandler`. This is a meta-service, as the only concrete type required is a callable that can be used as a final middleware in the diff --git a/doc/book/quick-start.md b/doc/book/quick-start.md index 32ff51a9..ed224b45 100644 --- a/doc/book/quick-start.md +++ b/doc/book/quick-start.md @@ -19,7 +19,7 @@ If you haven't already, [install Composer](https://getcomposer.org). Once you have, we can install Expressive, along with a router and a container: ```bash -$ composer require zendframework/zend-expressive aura/router zendframework/zend-servicemanager +$ composer require zendframework/zend-expressive zendframework/zend-expressive-fastroute zendframework/zend-servicemanager ``` > ### Routers