This repository has been archived by the owner on Sep 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
82 lines (82 loc) · 2.46 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
82
{
"name": "acquia/lightning-project",
"description": "Project template for Drupal 8 sites built with the Lightning distribution.",
"type": "project",
"license": "GPL-2.0+",
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"behat/behat": "^3.1",
"drupal/drupal-extension": "^3.1",
"behat/mink": "~1.6",
"behat/mink-goutte-driver": "~1.2",
"jcalderonzumba/gastonjs": "~1.0.2",
"jcalderonzumba/mink-phantomjs-driver": "~0.3.1",
"mikey179/vfsStream": "~1.2",
"phpunit/phpunit": "~4.8",
"symfony/css-selector": "2.7.*"
},
"require": {
"composer/installers": "^1.0",
"drupal-composer/drupal-scaffold": "^2.0.0",
"cweagans/composer-patches": "1.5.0",
"drupal/lightning": "^8.1.0",
"drupal/bootstrap": "8.*",
"balsama/lightningdemo": "dev-master",
"cebe/markdown": "^1.0.0"
},
"repositories": [
{
"type": "composer",
"url": "https://packagist.drupal-composer.org"
},
{
"type": "vcs",
"url": "https://github.com/balsama/lightningdemo"
}
],
"scripts": {
"post-install-cmd": [
"DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
"Acquia\\Lightning\\ScriptHandler::deployLibraries"
],
"post-update-cmd": [
"DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
"Acquia\\Lightning\\ScriptHandler::deployLibraries"
]
},
"config": {
"bin-dir": "bin/"
},
"autoload": {
"classmap": [
"scripts/ScriptHandler.php"
]
},
"extra": {
"installer-paths": {
"docroot/core": [
"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"
]
},
"enable-patching": true,
"patches": {
"drupal/lightning": {
"2775425 - Lightning Extender Redirect takes users to Already installed error page":
"https://www.drupal.org/files/issues/2775425-2-extender-regression.diff"
}
}
}
}