-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·103 lines (103 loc) · 3.57 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
{
"name": "robertoperuzzo/drupal-starter",
"description": "Project template for Drupal 9 projects with a relocated document root",
"keywords": ["drupal", "gitpod", "drupalpod"],
"type": "project",
"license": "GPL-2.0-or-later",
"homepage": "https://github.com/robertoperuzzo/drupal-starter",
"support": {
"docs": "https://www.drupal.org/docs/user_guide/en/index.html",
"chat": "https://www.drupal.org/node/314178"
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"composer/installers": "^1.9",
"cweagans/composer-patches": "^1.7",
"drupal/admin_toolbar": "^3.4",
"drupal/captcha": "^1.4",
"drupal/config_split": "^1.9",
"drupal/core-composer-scaffold": "^10",
"drupal/core-project-message": "^10",
"drupal/core-recommended": "^10",
"drupal/ctools": "^4.0",
"drupal/easy_breadcrumb": "^2.0",
"drupal/gin": "^3.0@beta",
"drupal/gin_login": "^1.3",
"drupal/gin_toolbar": "^1.0@RC",
"drupal/metatag": "^1.21",
"drupal/monolog": "^2.0",
"drupal/paragraphs": "^1.15",
"drupal/pathauto": "^1.11",
"drupal/permissions_filter": "^1.3",
"drupal/redirect": "^1.7",
"drupal/redis": "^1.5",
"drupal/schema_metatag": "^2.3",
"drupal/simple_sitemap": "^4.1",
"drupal/twig_tweak": "^3.1",
"drush/drush": "^11",
"lucacracco/robo-drupal": "^4.1",
"platformsh/config-reader": "^2.4"
},
"require-dev": {
"composer/composer": "^2.0.2",
"drupal/devel": "^5.1",
"drupal/upgrade_status": "^4.0",
"edgedesign/phpqa": "^1.26",
"mglaman/phpstan-drupal": "^1.1",
"phpspec/prophecy-phpunit": "^2",
"phpunit/phpunit": "^8.5.14 || ^9",
"vimeo/psalm": "^4.26"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"cweagans/composer-patches": true,
"composer/installers": true,
"drupal/core-composer-scaffold": true,
"drupal/console-extend-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"drupal/core-project-message": true
}
},
"scripts": {
"nuke": [
"rm -rf vendor web/core web/modules/contrib web/profiles/contrib web/themes/contrib",
"@composer clearcache --ansi",
"@composer install --ansi --no-interaction --prefer-dist"
]
},
"extra": {
"drupal-scaffold": {
"locations": {
"web-root": "web/"
}
},
"installer-paths": {
"web/core": ["type:drupal-core"],
"web/libraries/{$name}": ["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/contrib/{$name}": ["type:drupal-drush"],
"web/modules/custom/{$name}": ["type:drupal-custom-module"],
"web/profiles/custom/{$name}": ["type:drupal-custom-profile"],
"web/themes/custom/{$name}": ["type:drupal-custom-theme"]
},
"composer-exit-on-patch-failure": true,
"patchLevel": {
"drupal/core": "-p2"
},
"patches": {
}
}
}