-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 903 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 903 Bytes
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
{
"name": "evaisse/simple-http-bundle",
"description": "A very simple symfony2 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": {
"symfony/symfony": ">=3.2",
"react/promise": "2.2.*"
},
"require-dev": {
"satooshi/php-coveralls": "dev-master",
"phpunit/phpunit": ">=5"
},
"suggest": {
},
"license": "MIT",
"autoload": {
"psr-4": {
"evaisse\\SimpleHttpBundle\\Tests\\": "tests/",
"evaisse\\SimpleHttpBundle\\": "src/"
}
},
"authors": [
{
"name": "Emmanuel VAÏSSE",
"email": "evaisse@gmail.com"
}
]
}