-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
85 lines (85 loc) · 2.09 KB
/
composer.json
File metadata and controls
85 lines (85 loc) · 2.09 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
{
"name": "teamdeeson/headless-drupal",
"description": "The Deeson Headless Drupal with React framework",
"license": "MIT",
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"contentacms/contenta_jsonapi": "dev-8.x-3.x",
"drupal-composer/drupal-scaffold": "^2.5",
"cweagans/composer-patches": "^1.6",
"drush/drush": "^9.0.0",
"composer/installers": "^1.2",
"drupal/coffee": "^1.0@beta",
"drupal/paragraphs": "^1.10"
},
"require-dev": {
"drupal/core-dev": "^8.8",
"vijaycs85/drupal-quality-checker": "^1.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"installer-paths": {
"docroot/core": [
"type:drupal-core"
],
"docroot/libraries/{$name}": [
"type:drupal-library"
],
"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"
]
},
"drupal-scaffold": {
"source": "https://raw.githubusercontent.com/pantheon-systems/drops-8/{version}/{path}",
"includes": [
"sites/default/default.services.pantheon.preproduction.yml",
"sites/default/settings.pantheon.php"
],
"excludes": [
".csslintrc",
".editorconfig",
".eslintignore",
".eslintrc.json",
".htaccess",
"web.config"
]
},
"enable-patching": true,
"patches": {
}
},
"config": {
"preferred-install": {
"*": "auto"
}
},
"scripts": {
"drupal-scaffold": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
"pre-install-cmd": [
"DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
],
"post-install-cmd": [
"@drupal-scaffold",
"make composer--post-install-cmd"
],
"post-update-cmd": [
"@drupal-scaffold",
"make composer--post-update-cmd"
]
}
}