-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
88 lines (88 loc) · 2.58 KB
/
composer.json
File metadata and controls
88 lines (88 loc) · 2.58 KB
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
{
"name": "oddhill/drupal-starter-kit",
"description": "Starter kit when creating a new site based on Drupal 11.",
"type": "project",
"license": "MIT",
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "8.3"
},
"allow-plugins": {
"composer/installers": true,
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"drupal/core-composer-scaffold": true,
"drupal/core-project-message": true,
"php-http/discovery": true,
"phpstan/extension-installer": true,
"tbachert/spi": true
}
},
"require": {
"composer/installers": "^2.3",
"drupal/core-composer-scaffold": "^11",
"drupal/core-project-message": "^11",
"drupal/core-recommended": "^11",
"drush/drush": "^13",
"oddhill/oddprofile": "^4.1.2",
"vlucas/phpdotenv": "^5.5"
},
"require-dev": {
"cweagans/composer-patches": "^1.7",
"drupal/coder": "^8.3",
"drupal/core-dev": "^11",
"mglaman/phpstan-drupal": "^1.1",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.9",
"slevomat/coding-standard": "^8.13"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {},
"extra": {
"drupal-scaffold": {
"locations": {
"web-root": "public/"
}
},
"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/contrib/{$name}": [
"type:drupal-drush"
],
"public/modules/custom/{$name}": [
"type:drupal-custom-module"
],
"public/themes/custom/{$name}": [
"type:drupal-custom-theme"
]
}
}
}