forked from CircleOfNice/CiRestClientBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 814 Bytes
/
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
{
"name" : "ci/restclientbundle",
"description" : "Provides REST request methods. Mapper bundle for php internal curl library",
"type" : "symfony-bundle",
"authors" : [{
"name" : "Circle.ai",
"email" : "[email protected]"
}],
"keywords" : [
"REST client curl POST GET PUT DELETE OPTIONS CONNECT PATCH TRACE HEAD content-type payload library plugin"
],
"license" : [
"GPL"
],
"require" : {
"php": ">=5.4",
"ext-curl": "*",
"symfony/http-kernel": ">=2.1",
"symfony/dependency-injection": ">=2.1",
"symfony/config": ">=2.1",
"symfony/yaml": ">=2.1"
},
"autoload" : {
"psr-0" : {
"Circle\\RestClientBundle" : ""
}
},
"target-dir" : "Circle/RestClientBundle",
"extra" : {
"branch-alias" : {
"dev-master" : "1.0-dev"
}
}
}