-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
38 lines (38 loc) · 1.01 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
{
"name": "alexeyshockov/guzzle-dynamic-pool",
"type": "library",
"description": "A small helper to use dynamic request pools in Guzzle",
"keywords": ["http", "guzzle"],
"homepage": "https://github.com/alexeyshockov/guzzle-dynamic-pool",
"license": "MIT",
"support": {
"issues": "https://github.com/alexeyshockov/guzzle-dynamic-pool/issues"
},
"authors": [
{
"name": "Alexey Shokov",
"email": "[email protected]"
}
],
"require": {
"php": "~7.2 || ~8.0",
"guzzlehttp/guzzle": "~6.3 || ~7.0"
},
"require-dev": {
"symfony/dom-crawler": "~4 || ~5",
"danielstjules/stringy": "~3"
},
"autoload": {
"psr-4": {
"AlexS\\GuzzleDynamicPool\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"AlexS\\GuzzleDynamicPool\\Example\\": "example/src"
}
}
}