forked from gonzalo123/rest-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 748 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 748 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
30
{
"name": "gonzalo123/rest-proxy",
"description": "Simple rest proxy",
"authors": [
{
"name": "Gonzalo Ayuso",
"email": "gonzalo123@gmail.com",
"homepage": "http://gonzalo123.wordpress.com/"
}
],
"require-dev": {
"phpunit/phpunit": "dev-master",
"phpunit/php-code-coverage": "dev-master",
"phpunit/phpunit-mock-objects": "dev-master"
},
"require": {
"php": ">=5.5.0",
"ext-curl": "*",
"symfony/http-foundation": "dev-master",
"symfony/expression-language": "dev-master"
},
"autoload": {
"psr-0": {
"RestProxy": "lib/"
}
},
"config": {
"bin-dir": "bin/"
}
}