-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.29 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.29 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
{
"type": "project",
"name": "sunrise/awesome-skeleton",
"homepage": "https://github.com/sunrise-php/awesome-skeleton",
"description": "An awesome skeleton for modern PHP development.",
"keywords": [
"fenric",
"sunrise",
"skeleton",
"php-skeleton",
"api-skeleton",
"api-platform"
],
"require": {
"php": ">=8.1",
"monolog/monolog": "^3.8",
"php-di/php-di": "^7.0",
"sunrise/coder": "^1.1",
"sunrise/http-message": "^3.4",
"sunrise/http-router": "^3.0",
"sunrise/hydrator": "^3.16",
"sunrise/translator": "^1.0",
"symfony/cache": "^6.4",
"symfony/console": "^6.4",
"symfony/dotenv": "^6.4"
},
"require-dev": {
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^10.5",
"squizlabs/php_codesniffer": "^3.11",
"vimeo/psalm": "^6.7"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"scripts": {
"phpcs": "@php phpcs --colors",
"psalm": "@php psalm --no-cache",
"phpstan": "@php phpstan analyse src --level=9 --memory-limit=-1",
"phpunit": "@php phpunit --colors=always",
"test": [
"@phpcs",
"@psalm",
"@phpstan",
"@phpunit"
]
},
"config": {
"sort-packages": true
}
}