forked from contributte/api-router
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.05 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.05 KB
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
{
"name": "ublaboo/api-router",
"type": "library",
"description": "RESTful Router for your Apis in Nette Framework - created either directly or via annotation",
"keywords": ["rest", "api", "routes", "nette", "router", "restapi", "restrouter", "routing", "route"],
"homepage": "http://ublaboo.paveljanda.com/api-router",
"license": ["MIT"],
"support": {
"issues": "https://github.com/ublaboo/api-router/issues"
},
"authors": [
{
"name": "Pavel Janda",
"homepage": "http://paveljanda.com"
}
],
"autoload": {
"psr-4": {
"Ublaboo\\ApiRouter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ublaboo\\ApiRouter\\Tests\\": "tests"
}
},
"require": {
"nette/http" : "^2.3|^2.4",
"nette/utils" : "^2.3|^2.4",
"nette/application" : "^2.3|^2.4",
"nette/di" : "^2.3|^2.4",
"nette/reflection" : "^2.3|^2.4",
"doctrine/cache" : "~1.6.0",
"doctrine/annotations" : "~1.2.0"
},
"require-dev": {
"nette/tester" : "~1.6.1",
"mockery/mockery" : "~0.9",
"tracy/tracy" : "^2.3|^2.4"
}
}