This repository has been archived by the owner on Nov 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
62 lines (62 loc) · 1.76 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
{
"name": "drupaldevdays/website",
"description": "Website for the Drupal Dev Days 2016 edition.",
"type": "project",
"license": "GPL-2.0+",
"require": {
"composer/installers": "^1.0.21",
"wikimedia/composer-merge-plugin": "^1.3.0",
"cweagans/composer-patches": "~1.0",
"drupal/core": "^8.0.5",
"drupal/migrate_plus": "8.1.0-beta1",
"drupal/migrate_tools": "8.1.0-beta1",
"drupal/migrate_source_csv": "8.1.*@dev",
"drupal/config_devel": "8.1.*@dev",
"drupal/contact_storage": "8.1.0-beta2",
"drupal/entity_reference_revisions": "8.1.0-rc4",
"drupal/paragraphs": "8.1.0-rc4",
"drupal/recaptcha": "8.2.0-rc1",
"drupal/captcha": "8.1.0-alpha0",
"drupal/restui": "8.1.11",
"drupal/google_analytics": "8.2.0-rc1",
"drupal/eu_cookie_compliance": "8.1.0-beta4",
"drupal/admin_toolbar": "8.1.11"
},
"require-dev": {
"drupal/devel": "8.1.*@dev",
"codegyre/robo": "0.6.0",
"boedah/robo-drush": "^2.2.1",
"codeception/codeception": "*",
"fzaninotto/faker": "^1.5"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"preferred-install": "source",
"autoloader-suffix": "Drupal8"
},
"extra": {
"merge-plugin": {
"include": [
],
"recurse": false,
"replace": false,
"merge-extra": false
},
"installer-paths": {
"web/core": ["type:drupal-core"],
"web/modules/contrib/{$name}": ["type:drupal-module"],
"web/profiles/contrib/{$name}": ["type:drupal-profile"],
"web/themes/contrib/{$name}": ["type:drupal-theme"],
"drush/contrib/{$name}": ["type:drupal-drush"]
},
"patches": {
}
},
"repositories": [
{
"type": "composer",
"url": "https://packagist.drupal-composer.org/"
}
]
}