forked from evaisse/SimpleHttpBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.4 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
{
"name": "evaisse/simple-http-bundle",
"description": "A very simple symfony http client bundle built on the httpfoundation component (instead of guzzle), using cURL and cURL multi.",
"keywords": [
"http",
"symfony",
"curl",
"curlmulti",
"httpfoundation",
"requests",
"simple",
"client"
],
"homepage": "https://github.com/evaisse/SimpleHttpBundle",
"require": {
"php": "^8.0",
"react/promise": "^2.2",
"symfony/http-foundation": "^5.4 || ^6.0",
"symfony/browser-kit": "^5.4 || ^6.0",
"symfony/event-dispatcher": "^5.4 || ^6.0",
"symfony/serializer": "^5.4 || ^6.0",
"symfony/http-kernel": "^5.4 || ^6.0",
"symfony/stopwatch": "^5.4 || ^6.0",
"symfony/config": "^5.4 || ^6.0",
"symfony/dependency-injection": "^5.4 || ^6.0",
"symfony/security-http": "^5.4 || ^6.0",
"symfony/twig-bundle": "^5.4 || ^6.0",
"symfony/mime": "^5.4 || ^6.0",
"sensio/framework-extra-bundle": "^5.5 || ^6.0",
"ext-dom": "*",
"ext-json": "*",
"ext-curl": "*"
},
"conflict": {
"symfony/serializer": "6.0.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^9.5"
},
"suggest": {
},
"license": "MIT",
"autoload": {
"psr-4": {
"evaisse\\SimpleHttpBundle\\": ""
}
},
"authors": [
{
"name": "Emmanuel VAÏSSE",
"email": "[email protected]"
}
]
}