-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.6 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
54
55
56
57
58
59
60
{
"name": "spiral/app",
"type": "project",
"license": "MIT",
"description": "Spiral Skeleton Application",
"homepage": "https://spiral.dev",
"support": {
"issues": "https://github.com/spiral/app/issues",
"source": "https://github.com/spiral/app"
},
"require": {
"php": ">=8.1",
"ext-mbstring": "*",
"doctrine/collections": "^1.8",
"spiral-packages/symfony-serializer": "^2.0",
"spiral/cycle-bridge": "^2.1",
"spiral/framework": "^3.7",
"spiral/nyholm-bridge": "^1.3",
"spiral/roadrunner-bridge": "^3.0",
"spiral/roadrunner-cli": "^2.0",
"spiral/temporal-bridge": "^2.2"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"spiral/testing": "^2.2",
"spiral-packages/yii-error-handler-bridge": "^1.1",
"symfony/var-dumper": "^6.1",
"vimeo/psalm": "^5.8"
},
"autoload": {
"psr-4": {
"App\\": "app/src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"extra": {
"publish-cmd": "php app.php publish"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"spiral/composer-publish-plugin": true
}
},
"scripts": {
"post-create-project-cmd": [
"php -r \"copy('.env.sample', '.env');\"",
"php app.php encrypt:key -m .env",
"php app.php configure -vv",
"rr get-binary"
],
"psalm": "psalm"
},
"minimum-stability": "dev",
"prefer-stable": true
}