-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
86 lines (86 loc) · 2.71 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
{
"name": "druidfi/spell",
"description": "Spell to create a new Drupal project",
"type": "project",
"license": "MIT",
"homepage": "https://github.com/druidfi/spell",
"authors": [
{
"name": "Druid.fi",
"homepage": "https://github.com/druidfi"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.3",
"composer-runtime-api": "^2",
"composer/installers": "^2.3.0",
"cweagans/composer-patches": "^1.7.3",
"druidfi/omen": "^0.9.0",
"drupal/core-composer-scaffold": "^11.0",
"drupal/core-recommended": "^11.0",
"drush/drush": "^13.3.3",
"oomphinc/composer-installers-extender": "^2.0.1"
},
"require-dev": {
"drupal/core-dev-pinned": "^11.0"
},
"conflict": {
"drupal/drupal": "*"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"cweagans/composer-patches": true,
"drupal/core-composer-scaffold": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"oomphinc/composer-installers-extender": true,
"php-http/discovery": true
}
},
"extra": {
"composer-exit-on-patch-failure": true,
"drupal-scaffold": {
"allowed-packages": [
"drupal/core"
],
"locations": {
"web-root": "./public"
},
"file-mapping": {
"[project-root]/.editorconfig": false
}
},
"enable-patching": true,
"installer-types": ["bower-asset", "npm-asset"],
"installer-paths": {
"public/core": ["type:drupal-core"],
"public/libraries/{$name}": ["type:drupal-library", "type:bower-asset", "type:npm-asset"],
"public/modules/contrib/{$name}": ["type:drupal-module"],
"public/modules/custom/{$name}": ["type:drupal-module-custom"],
"public/profiles/{$name}": ["type:drupal-profile"],
"public/themes/contrib/{$name}": ["type:drupal-theme"],
"public/themes/custom/{$name}": ["type:drupal-theme-custom"],
"drush/Commands/{$name}": ["type:drupal-drush"]
}
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"scripts": {
"post-create-project-cmd": [
"make cast-spell"
]
}
}