-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
101 lines (101 loc) · 3.88 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
{
"name": "palantirnet/drupal-skeleton",
"description": "A Drupal 10 project template.",
"type": "project",
"license": "proprietary",
"authors": [
{
"name": "Palantir.net",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"composer/installers": "^2.0",
"drupal/admin_toolbar": "^3",
"drupal/config_ignore": "2.x-dev",
"drupal/config_split": "^1",
"drupal/core-composer-scaffold": "^10",
"drupal/core-recommended": "^10",
"drupal/devel": "^5",
"drupal/workbench": "^1",
"drupal/workbench_tabs": "^1",
"drush/drush": ">=11"
},
"require-dev": {
"behat/behat": "^3.12",
"behat/mink-goutte-driver": "^2.0",
"dmore/behat-chrome-extension": "^1.4",
"drupal/core-dev": "^10",
"drupal/drupal-extension": "^5@alpha",
"palantirnet/the-build": "^4@beta"
},
"suggest": {
"acquia/memcache-settings": "If your acquia project uses Cloud Platform (and not Cloud Next), add this package and update acquia settings file based on: https://docs.acquia.com/cloud-platform/performance/memcached/enable/#configuration-for-drupal-9-or-later .",
"cweagans/composer-patches": "Try ^1.7. Apply patches to packages, especially Drupal.org contrib.",
"drupal/admin_toolbar": "Transforms the default Drupal Toolbar into a drop-down menu.",
"drupal/environment_indicator": "Adds a configurable color bar to each one of your environments to help identify which environment you are currently working in.",
"drupal/config_ignore": "Exclude configuration to be exported to the configuration set.",
"drupal/stage_file_proxy": "A solution for getting production files on a development server on demand (add to your development config_split).",
"drupal/twig_xdebug": "Enables use of Xdebug breakpoints with Twig templates (add to your development config_split)."
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/installers": true,
"drupal/core-composer-scaffold": true,
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"php-http/discovery": true
},
"platform": {
"php": "8.3"
},
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"extra": {
"drupal-scaffold": {
"locations": {
"web-root": "docroot/"
},
"allowed-packages": [
"drupal/core"
],
"file-mapping": {
"[web-root]/.htaccess": {
"mode": "replace",
"path": "docroot/core/assets/scaffold/files/htaccess",
"overwrite": false
}
}
},
"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/Commands/contrib/{$name}": ["type:drupal-drush"],
"docroot/modules/custom/{$name}": ["type:drupal-custom-module"],
"docroot/themes/custom/{$name}": ["type:drupal-custom-theme"]
},
"enable-patching": true,
"composer-exit-on-patch-failure": true,
"patchLevel": {
"drupal/core": "-p2"
}
}
}