forked from acquia/blt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
68 lines (68 loc) · 2.41 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
{
"name": "acquia/${project.acquia_subname}",
"license": "proprietary",
"type": "project",
"repositories": [
{
"type": "composer",
"url": "https://packagist.drupal-composer.org"
}
],
"require": {
"composer/installers": "^1.0.20",
"drupal/acquia_connector": "8.1.*",
"drupal/acsf": "~8.1",
"drupal/core": "~8",
"drupal/console": "~0.10",
"drupal/memcache" : "8.*",
"drupal/security_review" : "8.*",
"roave/security-advisories": "dev-master",
"drupal-composer/drupal-security-advisories": "8.0.x-dev",
"drupal/lightning": "8.1.00-rc4"
},
"require-dev": {
"behat/behat": "3.0.*",
"behat/mink": "1.6@stable",
"behat/mink-extension": "*",
"behat/mink-goutte-driver": "*",
"behat/mink-selenium2-driver": "*",
"behat/mink-browserkit-driver": "*",
"drush/drush": "dev-master",
"drupal/drupal-extension": "~3.0",
"drupal/coder": "~8.2",
"phpunit/phpunit": "4.6.*",
"squizlabs/php_codesniffer": "2.*",
"phing/phing": "dev-master#0ef30e55bb5871cb38903cc0ee9d76074118a22c",
"jakoch/phantomjs-installer": "1.9.8",
"jarnaiz/behat-junit-formatter": "^1.2"
},
"autoload-dev": {
"psr-4": {
"Drupal\\Tests\\PHPUnit\\": "tests/phpunit/src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"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"
}
}
},
"scripts": {
"post-install-cmd": [
"PhantomInstaller\\Installer::installPhantomJS"
],
"post-update-cmd": [
"PhantomInstaller\\Installer::installPhantomJS"
]
}
}