-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
79 lines (79 loc) · 2.34 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
73
74
75
76
77
78
79
{
"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-sockets": "*",
"cuyz/valinor": "^1.3",
"google/protobuf": "^3.7",
"illuminate/container": "^10.4",
"illuminate/support": "^10.1",
"laravel/serializable-closure": "^1.3",
"league/container": "^4.2",
"opis/closure": "^3.6",
"php-di/php-di": "^7.0",
"spiral/framework": "dev-master",
"spiral/roadrunner-cli": "^2.4",
"symfony/dependency-injection": "^6.2",
"symfony/property-access": "^6.2",
"symfony/serializer": "^6.2",
"yiisoft/arrays": "^3.0",
"yiisoft/di": "^1.2",
"yiisoft/factory": "^1.1"
},
"require-dev": {
"dragon-code/benchmark": "^2.2",
"phpbench/phpbench": "^1.2",
"phpunit/phpunit": "^9.5",
"qossmic/deptrac-shim": "^1.0",
"spiral-packages/yii-error-handler-bridge": "^1.0",
"spiral/testing": "^2.2",
"symfony/var-dumper": "^6.1",
"vimeo/psalm": "dev-master"
},
"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 app.php encrypt:key -m .env",
"php app.php configure --quiet",
"rr get-binary --quiet",
"composer dump-autoload"
],
"build": "protoc --proto_path=proto --php_out=app/src proto/user.proto",
"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",
"deptrack": [
"deptrac analyze --report-uncovered"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}