Skip to content
This repository was archived by the owner on Jan 29, 2020. It is now read-only.

Commit 3adb518

Browse files
committed
Merge branch 'hotfix/293'
Close #293
2 parents 3cbb469 + eb41960 commit 3adb518

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ Initial stable release.
4141
- [#287](https://github.com/zendframework/zend-expressive/pull/287) updates the
4242
"standalone" quick start to reference calling `$app->pipeRoutingMiddleware()`
4343
and `$app->pipeDispatchMiddleware()` per the changes in RC6.
44+
- [#293](https://github.com/zendframework/zend-expressive/pull/293) adds
45+
a `require 'vendor/autoload.php';` line to the bootstrap script referenced in
46+
the zend-servicemanager examples.
4447

4548
## 1.0.0rc7 - 2016-01-21
4649

doc/book/features/container/zend-servicemanager.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ Your bootstrap (typically `public/index.php`) will then look like this:
133133

134134
```php
135135
chdir(dirname(__DIR__));
136+
require 'vendor/autoload.php';
136137
$container = require 'config/services.php';
137138
$app = $container->get('Zend\Expressive\Application');
138139
$app->run();

0 commit comments

Comments
 (0)