forked from vejle-idraetshoejskole/web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
124 lines (124 loc) · 4.34 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
{
"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": {
"jcalderonzumba/mink-phantomjs-driver": "~0.3.1",
"drupal/drupal-extension": "~3.3.0",
"behat/mink": "~1.7",
"behat/mink-goutte-driver": "~1.2",
"jcalderonzumba/gastonjs": "~1.0.2",
"drupal/coder": "8.*",
"mikey179/vfsStream": "~1.2",
"phpunit/phpunit": "~4.8",
"symfony/css-selector": "~2.8",
"behat/behat": "^3.0",
"se/selenium-server-standalone": "^2.53",
"composer/composer": "^1.3",
"drush/drush": "^8.1.15",
"drupal/console": "1.0.1",
"drupal/twig_xdebug": "^1.0"
},
"require": {
"drupal-composer/drupal-scaffold": "^2.0.0",
"cweagans/composer-patches": "^1.6",
"drupal/bootstrap": "3.11",
"drupal/devel": "^1.2",
"drupal/paragraphs": "1.x-dev",
"drupal/linkit": "^4.0",
"acquia/lightning": "~2.2.6",
"drupal/admin_toolbar": "^1.20",
"drupal/twig_tweak": "2.x-dev",
"drupal/eva": "^1.0@RC",
"drupal/stage_file_proxy": "^1.0@alpha",
"drupal/viewsreference": "^1.0@alpha",
"drupal/mailchimp": "^1.3",
"drupal/search_api": "^1.3",
"lsolesen/edbbrugs-php-sdk": "^0.2.0",
"quickpay/quickpay-php-client": "^1.0",
"drupal/webform": "^5.0@beta",
"drupal/examples": "1.x-dev",
"drupal/layout_plugin": "^1.0@alpha",
"drupal/page_manager": "^4.0@beta",
"drupal/entity_clone": "1.x-dev",
"drupal/coffee": "1.x-dev",
"drupal/field_group": "3.x-dev",
"drupal/photoswipe": "1.0-beta4",
"drupal/context": "4.0-beta2",
"drupal/media_entity_facebook": "2.0-alpha1",
"drupal/url_embed": "1.x-dev",
"drupal/advagg": "^3.4",
"drupal/focal_point": "^1.0@beta",
"drupal/schema_metatag": "^1.0",
"drupal/warden": "^1.1",
"drupal/views_send": "^1.3",
"drupal/recreate_block_content": "^2.0"
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"scripts": {
"post-install-cmd": [
"DrupalComposer\\DrupalScaffold\\Plugin::scaffold"
],
"post-update-cmd": [
"DrupalComposer\\DrupalScaffold\\Plugin::scaffold"
]
},
"config": {
"bin-dir": "bin/"
},
"extra": {
"installer-types": [
"bower-asset",
"npm-asset",
"bower-asset",
"npm-asset"
],
"installer-paths": {
"docroot/core": [
"type:drupal-core"
],
"docroot/libraries/{$name}": [
"type:drupal-library",
"type:bower-asset",
"type:npm-asset",
"type:bower-asset",
"type:npm-asset"
],
"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/core": {
"2868294 - Call to a member function getThirdPartySetting() on null in ContentTranslationManager": "https://www.drupal.org/files/issues/2868294-12.patch",
"2449895 - Imported PO files have no public URL but have a link at admin/content/files" : "https://www.drupal.org/files/issues/2449895-20.patch"
},
"drupal/photoswipe": {
"2921487 - Load PhotoSwipe on all non-admin pages" : "https://www.drupal.org/files/issues/edit_load_photoswipe_on-2921487-2.patch",
"2894797 - Multiple galleries: opens the wrong image" : "https://www.drupal.org/files/issues/fix-image-index-2894797.patch"
}
}
}
}