-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathcomposer.json
47 lines (47 loc) · 1.06 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
{
"name": "contributte/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": "https://github.com/contributte/api-router",
"license": ["MIT"],
"support": {
"issues": "https://github.com/contributte/api-router/issues"
},
"authors": [
{
"name": "Pavel Janda",
"homepage": "http://paveljanda.com"
}
],
"autoload": {
"psr-4": {
"Contributte\\ApiRouter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Contributte\\ApiRouter\\Tests\\": "tests"
}
},
"require": {
"php": ">= 7.1.0",
"nette/http" : "^3.0",
"nette/utils": "^3.0",
"nette/application": "^3.0",
"nette/di": "^3.0",
"nette/reflection": "^2.4",
"doctrine/cache": "^1.6",
"doctrine/annotations": "~1.3"
},
"require-dev": {
"nette/tester": "^2.2",
"mockery/mockery": "~0.9",
"tracy/tracy": "^2.6"
},
"extra": {
"branch-alias": {
"dev-master": "2.1.x-dev"
}
}
}