-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
43 lines (43 loc) · 1.35 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
{
"name": "farmos/project",
"description": "farmOS project template.",
"type": "project",
"license": "GPL-2.0-or-later",
"homepage": "https://farmOS.org",
"support": {
"docs": "https://farmOS.org/guide",
"forum": "https://farmOS.discourse.group",
"chat": "https://matrix.to/#/#farmOS:matrix.org"
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"farmos/farmos": "^3.0",
"oomphinc/composer-installers-extender": "^2.0",
"wikimedia/composer-merge-plugin": "^2.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"installer-paths": {
"web/core": ["type:drupal-core"],
"web/libraries/{$name}": ["type:drupal-library"],
"web/modules/{$name}": ["type:drupal-module"],
"web/profiles/farm": ["farmos/farmos"],
"web/themes/{$name}": ["type:drupal-theme"],
"drush/Commands/contrib/{$name}": ["type:drupal-drush"]
},
"merge-plugin": {
"require": [
"web/profiles/farm/composer.libraries.json",
"web/profiles/farm/composer.project.json"
],
"merge-extra": true,
"merge-extra-deep": true
}
}
}