-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
73 lines (73 loc) · 1.85 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
{
"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"
},
"authors": [
{
"name": "Wolfy-J",
"email": "wolfy.jd@gmail.com"
}
],
"repositories": [
{
"type": "path",
"url": "../shared"
}
],
"require": {
"php": ">=8.1",
"ext-mbstring": "*",
"doctrine/collections": "^1.6",
"open-telemetry/exporter-otlp": "^0.0.17",
"open-telemetry/transport-grpc": "^0.0.17",
"spiral-packages/cqrs": "^2.0",
"spiral-packages/event-bus": "^2.2",
"spiral/framework": "^3.7",
"spiral/nyholm-bridge": "^1.2",
"spiral/otel-bridge": "^1.0",
"spiral/shared": "*",
"spiral/roadrunner-bridge": "^3.0"
},
"require-dev": {
"spiral/dumper": "^3.0",
"spiral/testing": "^2.3",
"spiral-packages/database-seeder": "^2.1",
"symfony/http-client": "^6.0"
},
"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"
]
},
"autoload": {
"psr-4": {
"App\\": "app/src"
},
"files": [
"app/src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Database\\": "app/database"
}
},
"extra": {
"publish-cmd": "php app.php publish"
},
"config": {
"sort-packages": true,
"allow-plugins": false
},
"minimum-stability": "dev",
"prefer-stable": true
}