-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
141 lines (141 loc) · 5.15 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "phase2/octane",
"description": "Template for Drupal 8 sites built using the Octane distribution.",
"type": "project",
"license": "GPL-2.0+",
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
},
"assets": {
"type": "composer",
"url": "https://asset-packagist.org"
},
"dev": {
"type": "github",
"url": "https://github.com/phase2/octane-dev"
}
},
"require-dev": {
"behat/behat": "^3.0",
"behat/mink": "1.7.x-dev",
"behat/mink-goutte-driver": "^1.2",
"behat/mink-selenium2-driver": "1.3.x-dev",
"behat/mink-zombie-driver": "^1.2",
"dmore/behat-chrome-extension": "^1.1",
"drupal/coder": "^8.2.12",
"drupal/console": "^1.8",
"drupal/devel": "^1.0",
"drupal/drupal-extension": "^3.4.0",
"drush/drush": "^9",
"jcalderonzumba/gastonjs": "^1.0.2",
"jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
"mikey179/vfsStream": "^1.2",
"phpunit/phpunit": "^6.5",
"phpmd/phpmd": "^2.1",
"phpspec/prophecy": "^1.4",
"se/selenium-server-standalone": "^2.53",
"symfony/css-selector": "^3.4.0",
"symfony/phpunit-bridge": "^3.4.3",
"symfony/debug": "^3.4.0",
"weitzman/drupal-test-traits": "~1.0"
},
"require": {
"acquia/lightning": "^4.0@alpha",
"composer/installers": "^1.0",
"cweagans/composer-patches": "^1.6",
"drupal-composer/drupal-scaffold": "^2.0.0",
"drupal/chosen": "^2.4",
"drupal/components": "^1.0",
"drupal/config_split": "^1.1",
"drupal/field_group": "^1.0",
"drupal/paragraphs": "^1.2",
"drupal/redirect": "^1.0@beta",
"drupal/restui": "^1.0",
"drupal/search_api_solr": "^2.1",
"drupal/twig_extender": "^2.0",
"drupal/twig_field_value": "^1.1",
"drupal/twig_tweak": "^1.9",
"harvesthq/chosen": "^1.7",
"kporras07/composer-symlinks": "^0.1.0@dev",
"roave/security-advisories": "dev-master"
},
"autoload-dev": {
"psr-4": { "Octane\\Tests\\": "test/src/" }
},
"scripts": {
"drupal-scaffold": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
"project-scaffold": [
"Kporras07\\ComposerSymlinks\\ScriptHandler::createSymlinks"
],
"post-install-cmd": [
"@project-scaffold",
"@drupal-scaffold"
],
"post-update-cmd": [
"@project-scaffold",
"@drupal-scaffold"
],
"test:unit": "phpunit --printer '\\Drupal\\Tests\\Listeners\\HtmlOutputPrinter'",
"test": [
"@test:unit"
]
},
"extra": {
"enable-patching": true,
"patchLevel": {
"drupal/core": "-p2"
},
"patches": {
"drupal/core": {
"2699157 - Plugin Lazy loading can cause usort warning": "https://www.drupal.org/files/issues/2699157-23.drupal.Plugin-Lazy-loading-can-cause-usort-warning.patch",
"2759397 - Patch EntityReferenceItemNormalizer to prevent recursion": "https://www.drupal.org/files/issues/2759397-1-entity_reference_recursion.patch",
"2679775 - Fixes float issue with inline label fields (entity references on most cases).": "https://www.drupal.org/files/issues/2679775-11-inline-labels.patch"
}
},
"installer-types": [
"bower-asset",
"npm-asset"
],
"installer-paths": {
"build/html/core": [
"type:drupal-core"
],
"build/html/modules/contrib/{$name}": [
"type:drupal-module"
],
"build/html/libraries/contrib/{$name}": [
"type:drupal-library"
],
"build/html/profiles/contrib/{$name}": [
"type:drupal-profile"
],
"build/html/libraries/contrib/{$name}": [
"type:drupal-library"
],
"build/html/themes/contrib/{$name}": [
"type:drupal-theme"
],
"src/themes/{$name}": [
"type:drupal-custom-theme"
],
"build/html/drush/contrib/{$name}": [
"type:drupal-drush"
]
},
"symlinks": {
"src/modules": "build/html/modules/custom",
"src/themes": "build/html/themes/custom",
"src/profiles": "build/html/profiles/custom",
"src/libraries": "build/html/libraries/custom",
"src/sites/default": "build/html/sites/default",
"src/sites/settings.common.php": "build/html/sites/settings.common.php",
"src/sites/settings.common-client.php": "build/html/sites/settings.common-client.php",
"src/sites/settings.common-local.php": "build/html/sites/settings.common-local.php",
"src/sites/settings.memcache.php": "build/html/sites/settings.memcache.php"
}
}
}