forked from ucdavis/sitefarm-distro-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·100 lines (100 loc) · 2.94 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
{
"name": "ucdavis/sitefarm-distro-template",
"description": "Drupal 8 SiteFarm distribution template.",
"type": "project",
"license": "proprietary",
"authors": [
{
"name": "Regents of the University of California",
"email": "[email protected]",
"role": "Copyright Owner"
},
{
"name": "Shawn DeArmond",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Mark Miller",
"email": "[email protected]",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"behat/behat": "^3.1",
"drupal/drupal-extension": "^3.1",
"drush/drush": "8.*",
"behat/mink": "~1.6",
"behat/mink-goutte-driver": "~1.2",
"behat/mink-extension": "*",
"behat/mink-selenium2-driver": "*",
"jcalderonzumba/gastonjs": "~1.0.2",
"jcalderonzumba/mink-phantomjs-driver": "~0.3.1",
"mikey179/vfsStream": "~1.2",
"phpunit/phpunit": "^6.5",
"drupal/console": "~1.0"
},
"require": {
"oomphinc/composer-installers-extender": "^1.1",
"drupal-composer/drupal-scaffold": "^2.2",
"zendframework/zend-stdlib": "~3.0.1",
"cweagans/composer-patches": "^1.5",
"ucdavis/sitefarm_seed": "dev-8.x-1.x"
},
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
}
},
"scripts": {
"post-install-cmd": [
"DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
"cp -a web/profiles/sitefarm_seed/libraries/. web/libraries/"
],
"post-update-cmd": [
"DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
"cp -a web/profiles/sitefarm_seed/libraries/. web/libraries/"
]
},
"config": {
"preferred-install": {
"drupal/*": "dist"
}
},
"extra": {
"installer-types": [
"drupal-custom-module",
"drupal-custom-theme"
],
"installer-paths": {
"web/core": [
"drupal/core"
],
"web/modules/contrib/{$name}": [
"type:drupal-module"
],
"web/modules/custom/{$name}": [
"type:drupal-custom-module"
],
"web/profiles/{$name}": [
"type:drupal-profile"
],
"web/libraries/{$name}": [
"type:drupal-library"
],
"web/themes/contrib/{$name}": [
"type:drupal-theme"
],
"web/themes/custom/{$name}": [
"type:drupal-custom-theme"
],
"drush/contrib/{$name}": [
"type:drupal-drush"
]
},
"enable-patching": true
}
}