-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
71 lines (71 loc) · 1.83 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
{
"name": "davidwbarratt/drupal8",
"description": "Drupal is an open source content management platform powering millions of websites and applications.",
"type": "project",
"license": "GPL-2.0+",
"require": {
"davidbarratt/custom-installer": "~1.0",
"composer/installers": "^1.0.20",
"drupal/core": "~8.0",
"drupal/config_installer": "8.1.*",
"netresearch/composer-patches-plugin": "^1.0.2",
"davidwbarratt/patches": "~1.0",
"davidbarratt/davidwbarratt": "dev-develop"
},
"require-dev": {
"drupal/devel": "8.1.*"
},
"replace": {
"drupal/drupal": "~8.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "vcs",
"url": "[email protected]:netresearch/composer-patches-plugin.git"
},
{
"type": "composer",
"url": "http://packagist.drupal-composer.org"
},
{
"type": "vcs",
"url": "[email protected]:davidbarratt/davidwbarratt.git"
},
{
"type": "package",
"package": {
"name": "davidwbarratt/patches",
"version": "1.0.7",
"type": "patches",
"extra": {
"patches": {
"drupal/core": {
"8.0.0-beta12": [
{
"title": "Issue #2464055: Installation Failure on case insensitive file systems",
"url": "https://www.drupal.org/files/issues/redeclare_conf_path-2464055-5.patch",
"args": "-d ../"
}
]
}
}
}
}
}
],
"config": {
"autoloader-suffix": "Drupal8"
},
"extra": {
"installer-paths": {
"web/core": ["type:drupal-core"],
"web/profiles/{$name}": ["type:drupal-profile"],
"web/modules/{$name}": ["type:drupal-module"]
},
"custom-installer": {
"drupal-site": "web/sites/{$name}"
}
}
}