-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
112 lines (112 loc) · 3.29 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
{
"name": "dennisdigital/polaris-drupal-project",
"description": "Project template for Polaris projects with composer",
"type": "project",
"license": "GPL-2.0-or-later",
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://repo.packagist.com/dennisdigital/"
},
{
"packagist.org": false
}
],
"require": {
"php": ">=7.3",
"behat/mink-selenium2-driver": "^1.6.0",
"composer/installers": "^2.1.1",
"cweagans/composer-patches": "^1.7.2",
"dennisdigital/polaris": "~3.16.0",
"drupal/core-composer-scaffold": "^9.3.14",
"oomphinc/composer-installers-extender": "^2.0.1"
},
"conflict": {
"drupal/drupal": "*"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"drupal/console-extend-plugin": true,
"oomphinc/composer-installers-extender": true,
"zaporylie/composer-drupal-optimizations": true,
"wikimedia/composer-merge-plugin": true,
"drupal/core-composer-scaffold": true
}
},
"autoload": {
"classmap": [
"scripts/composer/ScriptHandler.php"
],
"files": [
"load.environment.php"
]
},
"scripts": {
"pre-install-cmd": [
"DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
],
"pre-update-cmd": [
"DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
],
"post-install-cmd": [
"@drupal-scaffold",
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
],
"post-update-cmd": [
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles",
"echo # drush cim -y",
"echo # drush updb -y",
"echo # drush cex -y",
"echo # git status"
]
},
"extra": {
"composer-exit-on-patch-failure": true,
"installer-types": [
"bower-asset"
],
"installer-paths": {
"web/core": [
"type:drupal-core"
],
"web/libraries/{$name}": [
"type:drupal-library",
"type:bower-asset"
],
"web/modules/contrib/{$name}": [
"type:drupal-module"
],
"web/profiles/{$name}": [
"type:drupal-profile"
],
"web/themes/contrib/{$name}": [
"type:drupal-theme"
],
"drush/Commands/{$name}": [
"type:drupal-drush"
]
},
"enable-patching": true,
"patchLevel": {
"drupal/core": "-p2"
},
"drupal-scaffold": {
"locations": {
"web-root": "./web"
},
"initial": {
".editorconfig": "../.editorconfig",
".gitattributes": "../.gitattributes"
},
"excludes": [
"web.config"
]
}
}
}