forked from acquia/blt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
81 lines (81 loc) · 2.97 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
{
"license": "proprietary",
"type": "project",
"repositories": [
{
"type": "composer",
"url": "https://packagist.drupal-composer.org"
}
],
"require": {
"composer/installers": "^1.0.20",
"cweagans/composer-patches": "^1.5.0",
"drupal/acquia_connector": "8.1.*",
"drupal/acsf": "~8.1",
"drupal/cog": "~8",
"drupal/console": "1.0.0-beta5",
"drupal/core": "~8",
"drupal/features": "~8.3.0-beta9",
"drupal/lightning": "~8",
"drupal/memcache" : "8.*",
"drupal/search_api": "8.1.0-alpha14",
"drupal/search_api_solr": "8.1.0-alpha3",
"drupal/security_review": "8.*",
"drupal-composer/drupal-security-advisories": "8.0.x-dev",
"roave/security-advisories": "dev-master"
},
"require-dev": {
"behat/behat": "3.0.*",
"behat/mink": "~1.7",
"behat/mink-browserkit-driver": "*",
"behat/mink-extension": "*",
"behat/mink-goutte-driver": "*",
"behat/mink-selenium2-driver": "*",
"drupal/coder": "~8.2",
"drupal/drupal-extension": "~3.0",
"drush/drush": "^9.0",
"drupal-composer/drupal-scaffold": "^2.0.0",
"jakoch/phantomjs-installer": "dev-master as 1.9.8",
"jarnaiz/behat-junit-formatter": "^1.2",
"phing/phing": "~2",
"phpunit/phpunit": "~5.4",
"squizlabs/php_codesniffer": "2.*"
},
"autoload-dev": {
"psr-4": {
"Drupal\\Tests\\PHPUnit\\": "tests/phpunit/src/"
}
},
"extra": {
"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"
},
"drupal/features": {
"Bundle support": "https://www.drupal.org/files/issues/features-2808303-2.patch"
}
}
},
"scripts": {
"blt-alias": "blt install-alias -Dcreate_alias=true",
"install-phantomjs": [
"rm -rf vendor/bin/phantomjs",
"PhantomInstaller\\Installer::installPhantomJS"
],
"post-install-cmd": [
"PhantomInstaller\\Installer::installPhantomJS"
],
"post-update-cmd": [
"PhantomInstaller\\Installer::installPhantomJS"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}