forked from bernard-williams/Restful
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.14 KB
/
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
47
48
{
"name": "drahak/restful",
"type": "library",
"description": "Nette REST API bundle",
"keywords": ["nette", "rest", "api", "drahak"],
"homepage": "http://www.drahak.eu",
"license": ["BSD-3-Clause", "GPL-2.0", "GPL-3.0"],
"authors": [
{
"name": "Drahomír Hanák",
"homepage": "http://www.drahak.eu"
}
],
"config": {
"vendor-dir": "libs"
},
"require": {
"php": ">= 5.3.0",
"nette/application": "~2.0",
"nette/bootstrap": "~2.0",
"nette/caching": "~2.0",
"nette/deprecated": "~2.0",
"nette/di": "~2.0",
"nette/http": "~2.0",
"nette/reflection": "~2.0",
"nette/robot-loader": "~2.0",
"nette/security": "~2.0",
"nette/utils": "~2.0"
},
"require-dev": {
"drahak/oauth2": "dev-master",
"nette/tester": "~1.3",
"janmarek/mockista": "dev-master",
"jakub-onderka/php-parallel-lint": "~0.8"
},
"autoload": {
"psr-0": {
"Drahak\\Restful": "src/"
},
"classmap": [
"src/Drahak/Restful/exceptions.php",
"src/Drahak/Restful/Application/exceptions.php",
"src/Drahak/Restful/Mapping/exceptions.php",
"src/Drahak/Restful/Security/exceptions.php",
"src/Drahak/Restful/Validation/exceptions.php"
]
}
}