-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
82 lines (82 loc) · 2.2 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": "sgrichards/drupal-startup",
"description": "Startup template for Drupal 8 projects.",
"type": "project",
"license": "GPL-2.0+",
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"bin-dir": "bin/",
"sort-packages": true
},
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
}
},
"require-dev": {
"webflo/drupal-core-require-dev": "^8",
"drupal/devel": "^1.2",
"drupal/drupal-extension": "^3.4",
"mikey179/vfsStream": "^1.0"
},
"require": {
"composer/installers": "^1.0",
"cweagans/composer-patches": "^1.5.0",
"drupal-composer/drupal-scaffold": "^2.0.0",
"drupal/admin_toolbar": "^1.0",
"drupal/console": "^1.0",
"drupal/core": "^8",
"drupal/ctools": "^3.0",
"drupal/environment_indicator": "^3.0",
"drupal/field_group": "^3.0@beta",
"drupal/hook_event_dispatcher": "^1.20",
"drupal/inline_entity_form": "^1.0-rc1",
"drupal/linkit": "^4.3.0",
"drupal/login_emailusername": "1.1",
"drupal/menu_admin_per_menu": "1.0",
"drupal/metatag": "1.7",
"drupal/pathauto": "1.3",
"drupal/redirect": "1.3",
"drupal/roleassign": "^1.0@alpha",
"drupal/seckit": "1.1",
"drupal/stage_file_proxy": "^1.0@alpha",
"drupal/taxonomy_access_fix": "2.6",
"drupal/token": "1.5",
"drupal/ultimate_cron": "^2.0@alpha",
"drush/drush": "^8",
"oomphinc/composer-installers-extender": "^1.1"
},
"scripts": {
"post-install-cmd": [
"@composer drupal-scaffold"
],
"drupal-scaffold": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold"
},
"extra": {
"enable-patching": true,
"composer-exit-on-patch-failure": true,
"patches": [],
"installer-paths": {
"docroot/core": [
"type:drupal-core"
],
"docroot/modules/contrib/{$name}": [
"type:drupal-module"
],
"docroot/profiles/contrib/{$name}": [
"type:drupal-profile"
],
"docroot/themes/contrib/{$name}": [
"type:drupal-theme"
],
"docroot/drush/contrib/{$name}": [
"type:drupal-drush"
],
"docroot/libraries/{$name}": [
"type:drupal-library"
]
}
}
}