-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.33 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
{
"name": "spiral/app-grpc",
"type": "project",
"license": "MIT",
"description": "Spiral Skeleton GRPC Application",
"homepage": "https://spiral.dev",
"support": {
"issues": "https://github.com/spiral/app-grpc/issues",
"source": "https://github.com/spiral/app-grpc"
},
"authors": [
{
"name": "Wolfy-J",
"email": "wolfy.jd@gmail.com"
}
],
"require": {
"php": ">=7.2",
"spiral/framework": "^2.8",
"spiral/jobs": "^2.0",
"spiral/php-grpc": "^1.0",
"spiral/roadrunner": "^1.4",
"spiral/database": "^2.3",
"spiral/migrations": "^2.0",
"cycle/orm": "^1.0",
"cycle/proxy-factory": "^1.0",
"cycle/annotated": "^2.0",
"cycle/migrations": "^1.0"
},
"scripts": {
"post-create-project-cmd": [
"php -r \"copy('.env.sample', '.env');\"",
"php app.php encrypt:key -m .env",
"php app.php configure -vv",
"spiral get-binary"
]
},
"autoload": {
"psr-4": {
"App\\": "app/src"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.3.x-dev"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}