-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
76 lines (76 loc) · 1.99 KB
/
Copy pathcomposer.json
File metadata and controls
76 lines (76 loc) · 1.99 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "velox/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.3",
"ext-mbstring": "*",
"ext-sockets": "*",
"devium/toml": "^1.0",
"internal/dload": "^1.3",
"spiral/cycle-bridge": "^2.11",
"spiral/framework": "^3.15",
"spiral/http": "^3.15",
"spiral-packages/swagger-php": "^1.0",
"spiral/nyholm-bridge": "^1.3",
"spiral/roadrunner-bridge": "^4.0",
"spiral/roadrunner-cli": "^2.5",
"spiral/sentry-bridge": "^2.3",
"spiral/temporal-bridge": "^3.3",
"spiral/twig-bridge": "^2.0.1",
"spiral/validator": "^1.5"
},
"require-dev": {
"spiral/code-style": "^2.2",
"spiral/testing": "^2.3",
"vimeo/psalm": "^6.10",
"rector/rector": "^2.0",
"buggregator/trap": "^1.13"
},
"autoload": {
"psr-4": {
"App\\": "app/src",
"Database\\": "app/database"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"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",
"cs:fix": "php-cs-fixer fix -v",
"psalm": "psalm",
"psalm:baseline": "psalm --set-baseline=psalm-baseline.xml",
"test": "phpunit",
"test-coverage": "phpunit --coverage",
"refactor": "rector process --config=rector.php",
"refactor:ci": "rector process --config=rector.php --dry-run --ansi"
},
"minimum-stability": "dev",
"prefer-stable": true
}