Skip to content

Commit e3f55e4

Browse files
authored
Rename Zend to Laminas (#165)
Rename Zend to Laminas in README.md In January 2020 Zend has moved on to become the Laminas project. (See https://framework.zend.com/blog/2019-04-17-announcing-laminas.html for further reference) This commit renames Zend to Laminas (and updates Packages / Namespaces) in the README.md
1 parent a272953 commit e3f55e4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
A super lightweight PSR-7 implementation. Very strict and very fast.
1313

14-
| Description | Guzzle | Zend | Slim | Nyholm |
14+
| Description | Guzzle | Laminas | Slim | Nyholm |
1515
| ---- | ------ | ---- | ---- | ------ |
1616
| Lines of code | 3 000 | 3 000 | 1 700 | 1 000 |
1717
| PSR-7* | 66% | 100% | 75% | 100% |
@@ -88,15 +88,15 @@ $serverRequest = $creator->fromGlobals();
8888
### Emitting a response
8989

9090
```bash
91-
composer require zendframework/zend-httphandlerrunner
91+
composer require laminas/laminas-httphandlerrunner
9292
```
9393

9494
```php
9595
$psr17Factory = new \Nyholm\Psr7\Factory\Psr17Factory();
9696

9797
$responseBody = $psr17Factory->createStream('Hello world');
9898
$response = $psr17Factory->createResponse(200)->withBody($responseBody);
99-
(new \Zend\HttpHandlerRunner\Emitter\SapiEmitter())->emit($response);
99+
(new \Laminas\HttpHandlerRunner\Emitter\SapiEmitter())->emit($response);
100100
```
101101

102102
## Our goal

0 commit comments

Comments
 (0)