Skip to content

Commit 329ee4a

Browse files
authored
Removed PHP7 line (#162)
1 parent ef9492e commit 329ee4a

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

README.md

+10-11
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ A super lightweight PSR-7 implementation. Very strict and very fast.
1414
| Description | Guzzle | Zend | Slim | Nyholm |
1515
| ---- | ------ | ---- | ---- | ------ |
1616
| Lines of code | 3 000 | 3 000 | 1 700 | 1 000 |
17-
| PHP7 | No | Yes | No | Yes |
1817
| PSR-7* | 66% | 100% | 75% | 100% |
1918
| PSR-17 | No | Yes | Yes | Yes |
2019
| HTTPlug | No | No | No | Yes |
@@ -30,16 +29,16 @@ A super lightweight PSR-7 implementation. Very strict and very fast.
3029
composer require nyholm/psr7
3130
```
3231

33-
If you are using Symfony Flex then you get all message factories registered as services.
32+
If you are using Symfony Flex then you get all message factories registered as services.
3433

3534
## Usage
3635

3736
The PSR-7 objects do not contain any other public methods than those defined in
38-
the [PSR-7 specification](https://www.php-fig.org/psr/psr-7/).
37+
the [PSR-7 specification](https://www.php-fig.org/psr/psr-7/).
3938

4039
### Create objects
4140

42-
Use the PSR-17 factory to create requests, streams, URIs etc.
41+
Use the PSR-17 factory to create requests, streams, URIs etc.
4342

4443
```php
4544
$psr17Factory = new \Nyholm\Psr7\Factory\Psr17Factory();
@@ -49,8 +48,8 @@ $stream = $psr17Factory->createStream('foobar');
4948

5049
### Sending a request
5150

52-
With [HTTPlug](http://httplug.io/) or any other PSR-18 (HTTP client) you may send
53-
requests like:
51+
With [HTTPlug](http://httplug.io/) or any other PSR-18 (HTTP client) you may send
52+
requests like:
5453

5554
```bash
5655
composer require kriswallsmith/buzz
@@ -66,7 +65,7 @@ $response = $psr18Client->sendRequest($request);
6665

6766
### Create server requests
6867

69-
The [`nyholm/psr7-server`](https://github.com/Nyholm/psr7-server) package can be used
68+
The [`nyholm/psr7-server`](https://github.com/Nyholm/psr7-server) package can be used
7069
to create server requests from PHP superglobals.
7170

7271
```bash
@@ -102,10 +101,10 @@ $response = $psr17Factory->createResponse(200)->withBody($responseBody);
102101

103102
## Our goal
104103

105-
This package is currently maintained by [Tobias Nyholm](http://nyholm.se) and
104+
This package is currently maintained by [Tobias Nyholm](http://nyholm.se) and
106105
[Martijn van der Ven](https://vanderven.se/martijn/). They have decided that the
107-
goal of this library should be to provide a super strict implementation of
108-
[PSR-7](https://www.php-fig.org/psr/psr-7/) that is blazing fast.
106+
goal of this library should be to provide a super strict implementation of
107+
[PSR-7](https://www.php-fig.org/psr/psr-7/) that is blazing fast.
109108

110109
The package will never include any extra features nor helper methods. All our classes
111-
and functions exist because they are required to fulfill the PSR-7 specification.
110+
and functions exist because they are required to fulfill the PSR-7 specification.

0 commit comments

Comments
 (0)