forked from evaisse/SimpleHttpBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
26 lines (26 loc) · 819 Bytes
/
composer.json
File metadata and controls
26 lines (26 loc) · 819 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
{
"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\\": "" }
},
"authors": [
{
"name": "Emmanuel VAÏSSE",
"email": "evaisse@gmail.com"
}
]
}