1 | {
|
---|
2 | "name": "guzzlehttp/psr7",
|
---|
3 | "description": "PSR-7 message implementation that also provides common utility methods",
|
---|
4 | "keywords": [
|
---|
5 | "request",
|
---|
6 | "response",
|
---|
7 | "message",
|
---|
8 | "stream",
|
---|
9 | "http",
|
---|
10 | "uri",
|
---|
11 | "url",
|
---|
12 | "psr-7"
|
---|
13 | ],
|
---|
14 | "license": "MIT",
|
---|
15 | "authors": [
|
---|
16 | {
|
---|
17 | "name": "Graham Campbell",
|
---|
18 | "email": "hello@gjcampbell.co.uk",
|
---|
19 | "homepage": "https://github.com/GrahamCampbell"
|
---|
20 | },
|
---|
21 | {
|
---|
22 | "name": "Michael Dowling",
|
---|
23 | "email": "mtdowling@gmail.com",
|
---|
24 | "homepage": "https://github.com/mtdowling"
|
---|
25 | },
|
---|
26 | {
|
---|
27 | "name": "George Mponos",
|
---|
28 | "email": "gmponos@gmail.com",
|
---|
29 | "homepage": "https://github.com/gmponos"
|
---|
30 | },
|
---|
31 | {
|
---|
32 | "name": "Tobias Nyholm",
|
---|
33 | "email": "tobias.nyholm@gmail.com",
|
---|
34 | "homepage": "https://github.com/Nyholm"
|
---|
35 | },
|
---|
36 | {
|
---|
37 | "name": "Márk Sági-Kazár",
|
---|
38 | "email": "mark.sagikazar@gmail.com",
|
---|
39 | "homepage": "https://github.com/sagikazarmark"
|
---|
40 | },
|
---|
41 | {
|
---|
42 | "name": "Tobias Schultze",
|
---|
43 | "email": "webmaster@tubo-world.de",
|
---|
44 | "homepage": "https://github.com/Tobion"
|
---|
45 | },
|
---|
46 | {
|
---|
47 | "name": "Márk Sági-Kazár",
|
---|
48 | "email": "mark.sagikazar@gmail.com",
|
---|
49 | "homepage": "https://sagikazarmark.hu"
|
---|
50 | }
|
---|
51 | ],
|
---|
52 | "require": {
|
---|
53 | "php": "^7.2.5 || ^8.0",
|
---|
54 | "psr/http-factory": "^1.0",
|
---|
55 | "psr/http-message": "^1.1 || ^2.0",
|
---|
56 | "ralouphie/getallheaders": "^3.0"
|
---|
57 | },
|
---|
58 | "provide": {
|
---|
59 | "psr/http-factory-implementation": "1.0",
|
---|
60 | "psr/http-message-implementation": "1.0"
|
---|
61 | },
|
---|
62 | "require-dev": {
|
---|
63 | "bamarni/composer-bin-plugin": "^1.8.2",
|
---|
64 | "http-interop/http-factory-tests": "0.9.0",
|
---|
65 | "phpunit/phpunit": "^8.5.39 || ^9.6.20"
|
---|
66 | },
|
---|
67 | "suggest": {
|
---|
68 | "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
|
---|
69 | },
|
---|
70 | "autoload": {
|
---|
71 | "psr-4": {
|
---|
72 | "GuzzleHttp\\Psr7\\": "src/"
|
---|
73 | }
|
---|
74 | },
|
---|
75 | "autoload-dev": {
|
---|
76 | "psr-4": {
|
---|
77 | "GuzzleHttp\\Tests\\Psr7\\": "tests/"
|
---|
78 | }
|
---|
79 | },
|
---|
80 | "extra": {
|
---|
81 | "bamarni-bin": {
|
---|
82 | "bin-links": true,
|
---|
83 | "forward-command": false
|
---|
84 | }
|
---|
85 | },
|
---|
86 | "config": {
|
---|
87 | "allow-plugins": {
|
---|
88 | "bamarni/composer-bin-plugin": true
|
---|
89 | },
|
---|
90 | "preferred-install": "dist",
|
---|
91 | "sort-packages": true
|
---|
92 | }
|
---|
93 | }
|
---|