-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
80 lines (80 loc) · 2.83 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "phpro/http-tools",
"description": "HTTP tools for developing more consistent HTTP implementations.",
"keywords": ["PSR-7", "PSR-18", "PSR-17", "HTTP", "Client"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Toon Verwerft",
"email": "toon.verwerft@phpro.be"
},
{
"name": "Jelle Deneweth",
"email": "jelle.deneweth@gmail.com"
}
],
"require": {
"php": "~8.2.0 || ~8.3.0",
"ext-json": "*",
"azjezz/psl": "^3.0",
"cardinalby/content-disposition": "^1.1",
"league/uri": "^7.3",
"php-http/client-common": "^2.7",
"php-http/discovery": "^1.19",
"php-http/httplug": "^2.4",
"php-http/logger-plugin": "^1.3",
"php-http/message": "^1.16 || ^2.0",
"psr/http-client-implementation": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-factory-implementation": "^1.0",
"psr/http-message": "^1.0 || ^2.0",
"psr/http-message-implementation": "^1.0",
"psr/log": "^3",
"webmozart/assert": "^1.11"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.8",
"nyholm/psr7": "^1.8",
"php-http/message-factory": "1.1.0",
"php-http/mock-client": "^1.6",
"php-http/vcr-plugin": "^1.2",
"phpro/grumphp-shim": "^2.1",
"symfony/http-client": "^5.4.26 || ^6.0 || ^7.0",
"symfony/mime": "^6.0 || ^7.0",
"symfony/property-access": "^5.4 || ^6.0 || ^7.0",
"symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
"symfony/serializer": "^5.4 || ^6.0 || ^7.0"
},
"suggest": {
"symfony/http-client": "If you want to use the built-in symfony/http-client tools.",
"symfony/serializer": "If you want to use symfony serializer to handle request serialization and response deserialization.",
"symfony/mime": "If you want to use symfony/mime to upload or download binary files.",
"guzzlehttp/guzzle": "If you want to use the built-in guzzlehttp/guzzle tools.",
"php-http/mock-client": "For testing HTTP clients through mocking Requests and responses.",
"php-http/vcr-plugin": "For testing HTTP clients through storing and replaying requests and responses."
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpro/grumphp-shim": true,
"php-http/discovery": true
}
},
"autoload": {
"psr-4": {
"Phpro\\HttpTools\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Phpro\\HttpTools\\Tests\\": "tests"
}
},
"scripts": {
"functional-testserver": [
"Composer\\Config::disableProcessTimeout",
"php -S 127.0.0.1:8000 -t tests/Fixtures/functional/server"
]
}
}