forked from afterlogic/webmail-pro-8
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 896 Bytes
/
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
{
"config": {
"minimum-stability": "dev"
},
"repositories": [
],
"require": {
"oomphinc/composer-installers-extender": "^1.1",
"wikimedia/composer-merge-plugin": "^1.3"
},
"scripts": {
"post-update-cmd": "@pre-config",
"pre-config": [
"[ -d data ] || mkdir data",
"Aurora\\Installer::preConfigSafe"
],
"force-config": [
"[ -d data ] || mkdir data",
"Aurora\\Installer::preConfigForce"
],
"update-configs": [
"Aurora\\Installer::updateConfigs"
]
},
"extra": {
"aurora-installer-pre-config": "pre-config.json",
"installer-types": ["aurora-module", "aurora-framework", "aurora-dev-tools"],
"installer-paths": {
"special/package/": ["my/package"],
"modules/{$name}/": ["type:aurora-module"],
"system/": ["type:aurora-framework"],
"dev/": ["type:aurora-dev-tools"]
},
"merge-plugin": {
"include": [
"modules.json"
]
}
}
}