forked from drupal-composer/drupal-project
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
146 lines (146 loc) · 4.59 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "nickveenhof/mautic-project",
"description": "Project template for Mautic 3 projects with composer",
"type": "project",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "",
"role": ""
}
],
"require": {
"php": ">=7.3 <7.5",
"mautic/core": "^3.3",
"nickveenhof/mautic-core-composer-scaffold": "^0.1",
"nickveenhof/mautic-finder": "^0.1",
"composer/installers": "^1.9",
"cweagans/composer-patches": "^1.6.5",
"webmozart/path-util": "^2.3",
"vlucas/phpdotenv": "^4.0",
"wikimedia/composer-merge-plugin": "^1.4"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"autoload": {
"classmap": [
"scripts/composer/ScriptHandler.php"
],
"files": [
"load.environment.php"
]
},
"scripts": {
"pre-install-cmd": [
"MauticProject\\composer\\ScriptHandler::checkComposerVersion"
],
"pre-update-cmd": [
"MauticProject\\composer\\ScriptHandler::checkComposerVersion"
],
"post-install-cmd": [
"MauticProject\\composer\\ScriptHandler::createRequiredFiles",
"MauticProject\\composer\\ScriptHandler::moveFilesToProjectRoot",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache"
],
"post-update-cmd": [
"MauticProject\\composer\\ScriptHandler::createRequiredFiles",
"MauticProject\\composer\\ScriptHandler::moveFilesToProjectRoot",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache"
]
},
"repositories": {
"willdurand/oauth-server-bundle": {
"type": "git",
"url": "https://github.com/mautic/BazingaOAuthServerBundle.git"
},
"symfony/intl": {
"type": "git",
"url": "https://github.com/mautic/intl.git"
},
"mautic/grapejs-builder": {
"type": "package",
"package": {
"name": "mautic/grapejs-builder",
"version": "1.0-RC4",
"type": "mautic-plugin",
"source": {
"url": "https://github.com/mautic/plugin-grapesjs-builder.git",
"type": "git",
"reference": "1.0-RC4"
},
"require": {
"composer/installers": "~1.0"
},
"extra": {
"installer-name": "GrapesJsBuilderBundle"
}
}
}
},
"extra": {
"_readme": [
"By default Mautic loads the autoloader from ./vendor/autoload.php.",
"To change the autoloader you can edit ./autoload.php."
],
"composer-exit-on-patch-failure": true,
"patchLevel": {
"mautic/core": "-p1"
},
"mautic-scaffold": {
"locations": {
"web-root": "public/"
},
"file-mapping": {
"[project-root]/.env.dist": "public/.env.dist",
"[project-root]/.php_cs": "public/.php_cs",
"[project-root]/.travis.yml": "public/.travis.yml",
"[project-root]/codeception.yml": "public/codeception.yml",
"[project-root]/LICENSE.txt": "public/LICENSE.txt",
"[project-root]/rector.yaml": "public/rector.yaml",
"[project-root]/phpstan.neon": "public/phpstan.neon",
"[web-root]/app/config/config_override.php": "scaffold-assets/config_override.php",
"[web-root]/app/autoload.php": "scaffold-assets/autoload.php",
"[web-root]/index_dev.php": "scaffold-assets/index_dev.php"
}
},
"installer-paths": {
"public": [
"type:mautic-core"
],
"public/plugins/{$name}": [
"type:mautic-plugin"
],
"public/themes/{$name}": [
"type:mautic-theme"
]
},
"merge-plugin": {
"recurse": true,
"replace": false,
"ignore-duplicates": false,
"merge-dev": true,
"merge-extra": false,
"merge-extra-deep": false,
"merge-scripts": false
},
"patches": {
"mautic/core": {
"Allow composer to live one level higher": "https://patch-diff.githubusercontent.com/raw/nickveenhof/mautic/pull/1.patch",
"Allow vendor for saml credentialsstore to also live one level higher": "https://patch-diff.githubusercontent.com/raw/nickveenhof/mautic/pull/3.patch"
},
"composer/installers": {
"Allow placement of mautic/core": "https://patch-diff.githubusercontent.com/raw/composer/installers/pull/454.patch"
}
},
"symfony-app-dir": "public/app",
"symfony-bin-dir": "public/bin",
"symfony-web-dir": "../",
"symfony-var-dir": "var",
"symfony-assets-install": "relative"
}
}