-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
140 lines (140 loc) · 4.53 KB
/
composer.json
File metadata and controls
140 lines (140 loc) · 4.53 KB
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
{
"name": "drupal-au/drupal-org-au",
"description": "Drupal 8 website for Drupal.org.au",
"type": "project",
"license": "GPL-2.0-or-later",
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
},
"asset-packagist": {
"type": "composer",
"url": "https://asset-packagist.org"
}
},
"require": {
"bower-asset/chosen": "1.8.0",
"composer/installers": "^1.2",
"cweagans/composer-patches": "^1.6.0",
"drupal-composer/drupal-scaffold": "^2.5",
"drupal/admin_toolbar": "^1.19",
"drupal/adminimal_admin_toolbar": "^1.8",
"drupal/adminimal_theme": "^1.3",
"drupal/allowed_formats": "~1",
"drupal/auto_entitylabel": "^2",
"drupal/chosen": "^2",
"drupal/components": "~1",
"drupal/conditional_fields": "~1",
"drupal/console": "^1.0.2",
"drupal/core": "~8.6.0",
"drupal/diff": "^1",
"drupal/editor_advanced_link": "^1.4",
"drupal/entity": "^1.0",
"drupal/entity_browser": "^2.0",
"drupal/entity_embed": "^1.0",
"drupal/entity_reference_revisions": "^1.6",
"drupal/field_group": "dev-3.x",
"drupal/fieldblock": "~2",
"drupal/google_tag": "~1",
"drupal/inline_entity_form": "~1.0",
"drupal/jsonapi": "^2.0",
"drupal/linkit": "~5",
"drupal/memcache": "^2.0",
"drupal/menu_item_extras": "^2.2",
"drupal/metatag": "^1.7",
"drupal/paragraphs": "^1.5",
"drupal/paragraphs_edit": "^2",
"drupal/pathauto": "^1.0",
"drupal/redirect": "^1.3",
"drupal/restui": "^1.16",
"drupal/schemata": "^1.0@alpha",
"drupal/simple_sitemap": "~3",
"drupal/svg_formatter": "^1.8",
"drupal/twig_tweak": "^2.1",
"drupal/webform": "^5.0",
"drush/drush": "~9",
"oomphinc/composer-installers-extender": "^1.1",
"vlucas/phpdotenv": "^2.4",
"webflo/drupal-core-strict": "8.5.6",
"webflo/drupal-finder": "^1.0.0",
"webmozart/path-util": "^2.3"
},
"require-dev": {
"drupal/coder": "^8.2",
"drupal/config_installer": "^1.8",
"drupal/devel": "~1",
"drupal/drupal-extension": "master-dev",
"mockery/mockery": "~1",
"webflo/drupal-core-require-dev": "~8.6.0",
"weitzman/drupal-test-traits": "~1",
"symfony/phpunit-bridge": "*",
"dmore/chrome-mink-driver": "^2.6"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"autoload": {
"classmap": [
"scripts/composer/ScriptHandler.php"
],
"files": [
"load.environment.php"
]
},
"extra": {
"enable-patching": true,
"installer-types": [
"npm-asset",
"bower-asset"
],
"installer-paths": {
"web/core": [
"type:drupal-core"
],
"web/libraries/{$name}": [
"type:bower-asset",
"type:npm-asset",
"type:drupal-library"
],
"web/modules/contrib/{$name}": [
"type:drupal-module"
],
"web/profiles/contrib/{$name}": [
"type:drupal-profile"
],
"web/themes/contrib/{$name}": [
"type:drupal-theme"
],
"drush/Commands/{$name}": [
"type:drupal-drush"
]
},
"drupal-scaffold": {
"source": "http://cgit.drupalcode.org/drupal/plain/{path}?h={version}",
"excludes": [
"sites/default/default.services.yml",
"sites/default/default.settings.php",
"sites/development.services.yml",
"sites/example.settings.local.php",
"sites/example.sites.php"
],
"omit-defaults": false
},
"patches": {}
},
"replace": {
"drupal/drupal": "*"
},
"suggest": {
"hirak/prestissimo": "^0.3"
},
"scripts": {
"pre-install-cmd": "DrupalProject\\composer\\ScriptHandler::checkComposerVersion",
"pre-update-cmd": "DrupalProject\\composer\\ScriptHandler::checkComposerVersion",
"post-install-cmd": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
"post-update-cmd": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold"
}
}