-
Notifications
You must be signed in to change notification settings - Fork 77
/
composer.json
39 lines (38 loc) · 876 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": "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/nette": "@dev"
},
"require-dev": {
"drahak/oauth2": "dev-master",
"nette/tester": "dev-master",
"janmarek/mockista": "dev-master"
},
"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"
]
}
}