Security update to Drupal 8.4.6
[yaffs-website] / vendor / guzzlehttp / psr7 / composer.json
1 {
2     "name": "guzzlehttp/psr7",
3     "type": "library",
4     "description": "PSR-7 message implementation that also provides common utility methods",
5     "keywords": ["request", "response", "message", "stream", "http", "uri", "url"],
6     "license": "MIT",
7     "authors": [
8         {
9             "name": "Michael Dowling",
10             "email": "mtdowling@gmail.com",
11             "homepage": "https://github.com/mtdowling"
12         },
13         {
14             "name": "Tobias Schultze",
15             "homepage": "https://github.com/Tobion"
16         }
17     ],
18     "require": {
19         "php": ">=5.4.0",
20         "psr/http-message": "~1.0"
21     },
22     "require-dev": {
23         "phpunit/phpunit": "~4.0"
24     },
25     "provide": {
26         "psr/http-message-implementation": "1.0"
27     },
28     "autoload": {
29         "psr-4": {
30             "GuzzleHttp\\Psr7\\": "src/"
31         },
32         "files": ["src/functions_include.php"]
33     },
34     "extra": {
35         "branch-alias": {
36             "dev-master": "1.4-dev"
37         }
38     }
39 }