-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
85 lines (85 loc) · 2.23 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
80
81
82
83
84
85
{
"name": "vaizard/glued-if",
"description": "Integrations manager.",
"license": "MIT",
"authors": [
{
"name": "Pavel Stratil",
"email": "[email protected]"
}
],
"require": {
"php": "^8.3",
"ext-apcu": "*",
"ext-bcmath": "*",
"ext-curl": "*",
"ext-gd": "*",
"ext-gmp": "*",
"ext-imap": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-mysqli": "*",
"ext-readline": "*",
"ext-soap": "*",
"ext-xml": "*",
"ext-pdo": "*",
"ext-pdo_pgsql": "*",
"nyholm/psr7": "^1",
"nyholm/psr7-server": "*",
"php-di/php-di": "^7",
"psr/http-message": "^1",
"ramsey/uuid": "^4",
"sabre/event": "^6",
"slim/http": "^1",
"slim/slim": "^4",
"vaizard/glued-lib": "dev-main",
"zeuxisoo/slim-whoops": "^0.7",
"league/openapi-psr7-validator": "^0.22.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2"
},
"suggest": {
"ext-xdebug": "For dev only"
},
"minimum-stability": "beta",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Glued\\": "glued/"
},
"files": []
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
},
"scripts": {
"post-install-cmd": [
"composer configure || echo \"[FAIL] Failed to configure glued. Please make sure all env variables are set. Rerun composer configure.\"",
"echo \"Run `composer nginx` manually to pick restart this microservice\"",
"composer migrate"
],
"post-update-cmd": [
"composer configure || echo \"[FAIL] Failed to configure glued. Please make sure all env variables are set. Rerun composer configure.\"",
"echo \"Run `composer nginx` manually to pick restart this microservice\"",
"composer migrate"
],
"backup": [
"vendor/vaizard/glued-lib/src/Scripts/backup.sh"
],
"configure": [
"vendor/vaizard/glued-lib/src/Scripts/initpaths.sh",
"vendor/vaizard/glued-lib/src/Scripts/rebuild-datacache.sh",
"Glued\\Lib\\ComposerHooks::configTool"
],
"migrate": [
"vendor/vaizard/glued-lib/src/Scripts/migrate.sh"
],
"nginx": [
"vendor/vaizard/glued-lib/src/Scripts/nginx.sh"
],
"start": "php -S localhost:8080 -t public"
}
}