-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
51 lines (49 loc) · 1.19 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
48
49
50
51
{
"name": "contributte/api-router-skeleton",
"description": "Nette project example for contributte/api-router library by @f3l1x and @paveljanda",
"keywords": [
"php",
"nette",
"contributte",
"sandbox",
"project",
"skeleton",
"api"
],
"license": "MIT",
"type": "project",
"require": {
"php": ">=8.0",
"contributte/application": "^0.5.0",
"contributte/bootstrap": "^0.6.0",
"contributte/cache": "^0.6.0",
"contributte/di": "^0.5.0",
"contributte/http": "^0.5.0",
"contributte/security": "^0.5.0",
"contributte/utils": "^0.6.0",
"contributte/tracy": "^0.6.0",
"contributte/api-router": "^5.0.0"
},
"require-dev": {
"ninjify/qa": "^0.13",
"ninjify/nunjuck": "^0.4",
"contributte/code-rules": "^1.1",
"contributte/dev": "^0.4",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-nette": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0"
},
"autoload": {
"psr-4": {
"App\\": "app"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}