-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
executable file
·82 lines (82 loc) · 2.69 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
{
"name": "drupal/recommended-project",
"description": "Project template for Drupal 9 projects with a relocated document root",
"type": "project",
"license": "GPL-2.0-or-later",
"homepage": "https://www.drupal.org/project/drupal",
"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": "^2.2",
"drupal/admin_toolbar": "^3.11",
"drupal/core-composer-scaffold": "^9",
"drupal/core-project-message": "^9",
"drupal/core-recommended": "^9",
"drush/drush": "^11.2",
"vlucas/phpdotenv": "^5.0"
},
"require-dev": {
"behat/behat": "^3.11",
"bex/behat-screenshot": "^2.1",
"drupal/core-dev": "^9",
"drupal/devel": "^5.0",
"emuse/behat-html-formatter": "^0.2.0",
"php-parallel-lint/php-console-highlighter": "^1.0.0",
"php-parallel-lint/php-parallel-lint": "^1.3.2",
"jarnaiz/behat-junit-formatter": "^1.3"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"classmap": [
"scripts/composer/ScriptHandler.php"
]
},
"extra": {
"drupal-scaffold": {
"locations": {
"web-root": "webroot/"
}
},
"installer-paths": {
"webroot/core": ["type:drupal-core"],
"webroot/libraries/{$name}": ["type:drupal-library"],
"webroot/modules/contrib/{$name}": ["type:drupal-module"],
"webroot/profiles/contrib/{$name}": ["type:drupal-profile"],
"webroot/themes/contrib/{$name}": ["type:drupal-theme"],
"drush/Commands/contrib/{$name}": ["type:drupal-drush"],
"webroot/modules/custom/{$name}": ["type:drupal-custom-module"],
"webroot/themes/custom/{$name}": ["type:drupal-custom-theme"]
}
},
"config": {
"platform": {
"php": "8.1",
"ext-gd": "1",
"ext-xmlrpc": "1",
"ext-memcached": "1",
"ext-opcache": "1",
"ext-xsl": "1",
"ext-zip": "1",
"ext-mysqli": "1"
},
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"drupal/core-composer-scaffold": true,
"drupal/core-project-message": true
}
}
}