-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 937 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
40
41
42
43
44
45
46
{
"name" : "php-platform/restful",
"type" : "library",
"keywords" : [
"restful",
"php restful",
"REST APIs",
"Web Services",
"REST Services"
],
"homepage" : "https://github.com/PHPPlatform/restful",
"authors" : [{
"name" : "Raghavendra K R",
"email" : "krraghavendra@yahoo.co.in",
"homepage" : "http://krraghavendra.in",
"role" : "Software Developer"
}
],
"bin" : [
"bin/build-restful"
],
"require" : {
"php" : ">=5.5",
"php-platform/config" : "~0.1",
"php-platform/session" : "~0.1",
"php-platform/annotations" : "~0.1"
},
"require-dev" : {
"phpunit/phpunit" : "~4.8",
"php-platform/restful-unit" : "~0.1",
"guzzlehttp/guzzle" : "~3.8",
"php-platform/mock-config" : "~0.1"
},
"autoload" : {
"psr-4" : {
"PhpPlatform\\" : "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"PhpPlatform\\Tests\\" : "tests/"
}
},
"minimum-stability" : "stable",
"license" : "Apache-2.0"
}