-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·72 lines (72 loc) · 2.1 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "spiral/app",
"type": "project",
"license": "MIT",
"description": "Spiral Application installer",
"homepage": "https://spiral.dev",
"support": {
"issues": "https://github.com/spiral/app/issues",
"source": "https://github.com/spiral/app"
},
"require": {
"php": ">=8.1",
"ext-mbstring": "*",
"ext-sockets": "*",
"doctrine/collections": "^1.8",
"spiral-packages/league-event": "^1.0.1",
"spiral-packages/scheduler": "^2.1",
"spiral-packages/yii-error-handler-bridge": "^1.1",
"spiral/cycle-bridge": "^2.5",
"spiral/framework": "^3.8",
"spiral/http": "^3.8",
"spiral/nyholm-bridge": "^1.3",
"spiral/roadrunner-bridge": "^3.0",
"spiral/roadrunner-cli": "^2.5",
"spiral/sentry-bridge": "^2.2",
"spiral/validator": "^1.3",
"spiral/views": "^3.8"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.49",
"spiral-packages/database-seeder": "^3.2",
"spiral/dumper": "^3.2.1",
"spiral/testing": "^2.3",
"vimeo/psalm": "^5.9"
},
"autoload": {
"psr-4": {
"App\\": "app/src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests",
"Database\\": "app/database"
}
},
"extra": {
"publish-cmd": "php app.php publish"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"spiral/composer-publish-plugin": true,
"php-http/discovery": true
}
},
"scripts": {
"post-create-project-cmd": [
"php app.php encrypt:key -m .env",
"php app.php configure --quiet",
"rr get-binary --quiet",
"composer dump-autoload"
],
"rr:download": "rr get-binary",
"rr:download-protoc": "rr download-protoc-binary",
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage",
"psalm:config": "psalm"
},
"minimum-stability": "dev",
"prefer-stable": true
}