forked from contributte/api-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 993 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
{
"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": "https://ublaboo.org/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": {
"php": ">= 7.1.0",
"nette/http" : "^2.3",
"nette/utils": "^2.3",
"nette/application": "^2.3",
"nette/di": "^2.3",
"nette/reflection": "^2.3",
"doctrine/cache": "^1.6",
"doctrine/annotations": "~1.3"
},
"require-dev": {
"nette/tester": "~1.6.1",
"mockery/mockery": "~0.9",
"tracy/tracy": "^2.3"
}
}