-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.17 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
52
53
{
"name": "esthetio/skeleton",
"description": "The PHP project boilerplate based on Esthetio framework",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Sergei Aleinik",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/esthetio/framework.git"
}
],
"require": {
"php": "^8.1",
"esthetio/framework": "dev-master",
"laminas/laminas-config-aggregator": "^1.7",
"m1/env": "^2.2",
"nyholm/psr7": "^1.4",
"php-di/php-di": "^6.3",
"spiral/roadrunner": "^2.7",
"symfony/config": "^6.0",
"symfony/property-access": "^6.0",
"symfony/psr-http-message-bridge": "^2.1",
"symfony/routing": "^6.0",
"symfony/yaml": "^6.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6",
"phpstan/phpstan": "^1.2",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"App\\": "src"
}
},
"scripts": {
"check": [
"phpcs --standard=PSR12 src",
"phpstan analyse src --level=8"
]
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}