forked from acquia/blt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.required.json
67 lines (67 loc) · 1.86 KB
/
composer.required.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
{
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
}
},
"require": {
"drupal/core": "^8.5.0",
"drupal/config_split": "^1.0.0"
},
"require-dev": {
"behat/behat": ">=3.1 <3.4",
"behat/mink": "~1.7",
"behat/mink-selenium2-driver": "^1.3.1",
"bex/behat-screenshot": "^1.2",
"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",
"jakoch/phantomjs-installer": "2.1.1-p07",
"dmore/behat-chrome-extension": "^1.0.0",
"mikey179/vfsStream": "~1.2",
"sensiolabs-de/deprecation-detector": "dev-master"
},
"autoload-dev": {
"psr-4": {
"Drupal\\Tests\\PHPUnit\\": "tests/phpunit/src/"
}
},
"autoload": {
"psr-4": {
"Acquia\\Blt\\Custom\\": "src/"
}
},
"extra": {
"composer-exit-on-patch-failure": true,
"drupal-scaffold": {
"initial": {
"sites/default/default.services.yml": "sites/default/services.yml",
"sites/default/default.settings.php": "sites/default/settings.php"
}
},
"enable-patching": true,
"patchLevel": {
"drupal/core": "-p2"
},
"patches": {
"drupal/core": {
"Clear Twig caches on deploys": "https://www.drupal.org/files/issues/2752961-130.patch"
}
}
},
"scripts": {
"blt-alias": "blt blt:init:shell-alias -y --ansi",
"drupal-scaffold": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
"nuke": [
"rm -rf vendor composer.lock docroot/core docroot/modules/contrib docroot/profiles/contrib docroot/themes/contrib",
"@composer clearcache --ansi",
"@composer install --ansi"
],
"install-phantomjs": [
"rm -rf vendor/bin/phantomjs",
"PhantomInstaller\\Installer::installPhantomJS"
]
}
}