-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 993 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
35
36
37
38
39
{
"name": "lavary/rest-proxy-manager",
"description": "Restful Remote Object Proxies",
"type": "library",
"keywords": [
"ProxyManager",
"RESTful proxy",
"RESTful Remote Object Proxy",
"RESTful ProxyManager Adapter"
],
"homepage": "https://github.com/lavary/rest-remote-proxy",
"license": "MIT",
"authors": [
{
"name": "Reza M. Lavaryan",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/lavary/rest-remote-proxy/issues"
},
"require": {
"php": ">=5.5",
"ocramius/proxy-manager": "^1.0",
"guzzlehttp/guzzle": "^6.2",
"doctrine/common": "^2.6"
},
"require-dev": {
"phpunit/phpunit": "^4.8 || ^5.0"
},
"autoload": {
"psr-4": {
"RemoteProxy\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}