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
65 lines (65 loc) · 1.36 KB
/
composer.json
File metadata and controls
65 lines (65 loc) · 1.36 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"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"
],
"authors": [
{
"name": "Pavel Janda",
"homepage": "http://paveljanda.com"
}
],
"autoload": {
"psr-4": {
"Contributte\\ApiRouter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"require": {
"php": ">=8.0",
"nette/http": "^3.2.0",
"nette/application": "^3.1.0",
"nette/di": "^3.1.0",
"contributte/utils": "^0.5.2",
"doctrine/cache": "^1.13.0",
"doctrine/annotations": "^1.14.0"
},
"require-dev": {
"nette/tester": "^2.3.2",
"mockery/mockery": "^1.3",
"ninjify/qa": "^0.12",
"tracy/tracy": "^2.6",
"phpstan/phpstan": "^1.9.4",
"phpstan/phpstan-deprecation-rules": "^1.1.0",
"phpstan/phpstan-nette": "^1.2.0",
"phpstan/phpstan-strict-rules": "^1.4.0"
},
"extra": {
"branch-alias": {
"dev-master": "5.0.x-dev"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}