forked from phase2/octane
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
98 lines (98 loc) · 3.59 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
{
"name": "drupal/octane",
"description": "Template for Drupal 8 sites built using the Octane distribution.",
"type": "drupal-profile",
"license": "GPL-2.0+",
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://packagist.drupal-composer.org"
}
],
"require-dev": {
"behat/mink": "~1.7",
"behat/mink-zombie-driver": "~1.2",
"behat/mink-goutte-driver": "~1.2",
"drupal/drupal-extension": "~3.0",
"jcalderonzumba/gastonjs": "~1.0.2",
"jcalderonzumba/mink-phantomjs-driver": "~0.3.1",
"mikey179/vfsStream": "~1.2",
"phpunit/phpunit": "~4.8",
"drush/drush": "^8",
"drupal/console": "~1.0.0",
"phpmd/phpmd": "~2.1",
"drupal/admin_toolbar": "~8.1",
"drupal/coder": "^8.2",
"drupal/devel": "dev-8.x-1.x",
"drupal/masquerade": "8.1.0-beta1"
},
"require": {
"roave/security-advisories": "dev-master",
"composer/installers": "^1.0",
"drupal-composer/drupal-scaffold": "^2.0.0",
"cweagans/composer-patches": "1.5.0",
"drupal/lightning": "~8.1",
"drupal/diff": "~8.1",
"drupal/field_group": "~8.1",
"drupal/paragraphs": "dev-8.x-1.x",
"drupal/restui": "~8.1",
"drupal/search_api": "~8.1",
"drupal/search_api_solr": "dev-8.x-1.x",
"drupal/search_api_page": "~8.1",
"drupal/facets": "dev-8.x-1.x",
"drupal/components": "~8.1"
},
"scripts": {
"drupal-scaffold": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold"
},
"extra": {
"enable-patching": true,
"patches": {
"drupal/core": {
"1356276 - Allow profiles to provide a base/parent profile and load them in the correct order":
"https://www.drupal.org/files/issues/1356276-239.patch",
"2655104 - List unmet dependencies instead of just failing (Committed to 8.3.x)":
"https://www.drupal.org/files/issues/2655104-56.patch",
"2699157 - Plugin Lazy loading can cause usort warning":
"https://www.drupal.org/files/issues/Iterating-through-array--2699157.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",
"2369119 - Fix error on exposed grouped filters on Views save":
"https://www.drupal.org/files/issues/2369119-120.patch"
},
"drupal/paragraphs": {
"2725141 - Widget form is not collapsible when adding new items":
"https://www.drupal.org/files/issues/paragraphs-collapse-new-items-2725141-2.patch",
"2788607 - Empty required fields not providing meaningful error messages":
"https://www.drupal.org/files/issues/empty-required-error-message-2788607-11.patch"
},
"drupal/entity_browser": {
"2696933 - Styling overflow issue (Committed to dev)":
"https://www.drupal.org/files/issues/content_overflow_issue-2696933-31.patch",
"2801163 - Missing preview image on widget (Committed to dev)":
"https://www.drupal.org/files/issues/2801163-25.patch"
}
},
"installer-paths": {
"core": [
"type:drupal-core"
],
"modules/contrib/{$name}": [
"type:drupal-module"
],
"profiles/contrib/{$name}": [
"type:drupal-profile"
],
"themes/contrib/{$name}": [
"type:drupal-theme"
],
"build/html/drush": [
"type:drupal-drush"
]
}
}
}