forked from acquia/blt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
68 lines (68 loc) · 2.79 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
{
"license": "proprietary",
"type": "project",
"repositories": [
{
"type": "composer",
"url": "https://packagist.drupal-composer.org"
}
],
"require": {
"cweagans/composer-patches": "dev-master#5456199acdcc16b243814aa45259f4c56272a634 as 1.5.0",
"drupal/acquia_connector": "^8.1.5",
"drupal/acsf": "^8.1.32",
"drupal/cog": "^8.1.0",
"drupal/core": "~8",
"drupal/features": "^8.3.0",
"drupal/lightning": "^8.1.12",
"drupal/memcache" : "^8.2.0-alpha2",
"drupal/search_api": "8.1.0-alpha14",
"drupal/search_api_solr": "8.1.0-alpha3",
"drupal/seckit": "^8.1.0-alpha2",
"drupal/security_review": "8.*",
"drupal-composer/drupal-security-advisories": "8.0.x-dev",
"drush/drush": "^9.0"
},
"require-dev": {
"behat/behat": "^3.1",
"behat/mink": "~1.7",
"behat/mink-selenium2-driver": "^1.3.1",
"drupal/devel": "^8.1.0-alpha1",
"drupal/drupal-extension": "^3.2",
"drupal-composer/drupal-scaffold": "^2.1.0",
"jarnaiz/behat-junit-formatter": "^1.3.2",
"se/selenium-server-standalone": "^2.53"
},
"autoload-dev": {
"psr-4": {
"Drupal\\Tests\\PHPUnit\\": "tests/phpunit/src/"
}
},
"extra": {
"blt": {
"update": true
},
"installer-paths": {
"docroot/core": ["type:drupal-core"],
"docroot/modules/contrib/{$name}": ["type:drupal-module"],
"docroot/profiles/contrib/{$name}": ["type:drupal-profile"],
"docroot/themes/contrib/{$name}": ["type:drupal-theme"],
"drush/contrib/{$name}": ["type:drupal-drush"]
},
"patches": {
"drupal/core": {
"Ignore front end vendor folders to improve directory search performance": "https://www.drupal.org/files/issues/ignore_front_end_vendor-2329453-116.patch"
}
}
},
"scripts": {
"blt-alias": "blt install-alias -Dcreate_alias=true",
"nuke": [
"rm -rf vendor composer.lock",
"@composer clearcache",
"@composer install"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}