-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
44 lines (44 loc) · 922 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
43
44
{
"name": "contributte/api-skeleton",
"description": "API project skeleton based on Nette Framework (@nette) and Contributte (@contributte) libraries by @f3l1x",
"keywords": [
"nette",
"skeleton",
"project",
"api",
"rest",
"json"
],
"license": "MIT",
"type": "project",
"require": {
"php": ">=8.1",
"contributte/nella": "^0.2",
"contributte/api": "^0.5"
},
"require-dev": {
"contributte/qa": "^0.3",
"contributte/dev": "^0.5",
"contributte/tester": "^0.3",
"contributte/phpstan": "^0.1"
},
"autoload": {
"psr-4": {
"App\\": "app"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
}
}
}