forked from drupal-composer/drupal-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
136 lines (136 loc) · 4.39 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "ubccs/drupal-project",
"description": "Project template for CS Drupal 9 projects with Composer",
"type": "project",
"license": "GPL-2.0-or-later",
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"composer/installers": "^2.0",
"cweagans/composer-patches": "^1.0",
"drupal/admin_toolbar": "^3.0",
"drupal/backup_migrate": "^5.0",
"drupal/config_split": "^2.0@RC",
"drupal/core-composer-scaffold": "^9.0",
"drupal/core-recommended": "^9.0",
"drupal/core-vendor-hardening": "^9.0",
"drupal/environment_indicator": "^4.0",
"drupal/masquerade": "^2.0@beta",
"drupal/monolog": "^2.0",
"drupal/pathauto": "^1.0",
"drush/drush": "^11.0",
"ubc-web-services/galactus": "^1.0",
"vlucas/phpdotenv": "^5.0"
},
"require-dev": {
"deployer/deployer": "^7.0",
"drupal-composer/drupal-security-advisories": "9.x-dev",
"drupal/coder": "^8.0",
"drupal/core-dev": "^9.0",
"drupal/devel": "^4.0",
"drupal/stage_file_proxy": "^1.0",
"drupal/upgrade_status": "^3.0",
"joachim-n/composer-manifest": "^1.0",
"mglaman/phpstan-drupal": "^1.1",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.0",
"ubc-cpsc/deployer-recipes": "^2.0"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"discard-changes": true,
"platform": {
"php": "7.4.9"
},
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"drupal/core-composer-scaffold": true,
"drupal/core-vendor-hardening": true,
"joachim-n/composer-manifest": true,
"phpstan/extension-installer": 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": [
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
],
"post-update-cmd": [
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
]
},
"extra": {
"drupal-scaffold": {
"gitignore": false,
"locations": {
"web-root": "public/"
},
"file-mapping": {
"[web-root]/.csslintrc": false,
"[web-root]/.eslintignore": false,
"[web-root]/.eslintrc.json": false,
"[web-root]/.ht.router.php": false,
"[web-root]/INSTALL.txt": false,
"[web-root]/README.txt": false,
"[web-root]/README.md": false,
"[web-root]/example.gitignore": false,
"[web-root]/sites/development.services.yml": false,
"[web-root]/web.config": false
}
},
"installer-paths": {
"public/core": [
"type:drupal-core"
],
"public/libraries/{$name}": [
"type:drupal-library"
],
"public/modules/contrib/{$name}": [
"type:drupal-module"
],
"public/profiles/contrib/{$name}": [
"type:drupal-profile"
],
"public/themes/contrib/{$name}": [
"type:drupal-theme"
],
"drush/Commands/contrib/{$name}": [
"type:drupal-drush"
]
},
"composer-exit-on-patch-failure": true,
"patchLevel": {
"drupal/core": "-p2"
},
"patches-file": "composer.patches.json"
}
}