-
Notifications
You must be signed in to change notification settings - Fork 32
/
composer.json
128 lines (128 loc) · 3.42 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "skilld-labs/sdc",
"description": "Project template for Drupal 9 projects with composer",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "",
"role": ""
}
],
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"composer/installers": "^1.9 || ^2.0",
"cweagans/composer-patches": "^1.7",
"drupal/ckeditor": "^1.0",
"drupal/color": "^1.0",
"drupal/core-composer-scaffold": "^10.3.1",
"drupal/core-vendor-hardening": "^10.3.1",
"drupal/default_content": "^2",
"drupal/imagemagick": "^4.0",
"drupal/migrate_generator": "^2.0",
"drupal/seven": "^1.0",
"drush/drush": "^13.2",
"skilldlabs/drupal-cleanup": "^1",
"skilldlabs/druxxy": "^1.1",
"webflo/drupal-finder": "^1.3"
},
"require-dev": {
"dmore/behat-chrome-extension": "^1.3",
"drupal/config_inspector": "^2.1",
"drupal/devel": "^5.2",
"drupal/drupal-extension": "^5.0",
"drupal/upgrade_status": "^4.3",
"espend/behat-placeholder-extension": "^1.1",
"genesis/behat-fail-aid": "^3.7",
"palantirnet/drupal-rector": "^0.20.3",
"phpspec/prophecy-phpunit": "^2",
"phpunit/phpunit": "^9"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": {
"*": "dist"
},
"allow-plugins": {
"composer/installers": true,
"cweagans/composer-patches": true,
"drupal/core-composer-scaffold": true,
"drupal/core-project-message": true,
"drupal/core-vendor-hardening": true,
"skilldlabs/drupal-cleanup": true
}
},
"autoload": {
"classmap": [
"scripts/composer/ScriptHandler.php"
]
},
"scripts": {
"create-required-files": "SkilldDrupal\\composer\\ScriptHandler::createRequiredFiles",
"list-scaffold-files": [
"SkilldDrupal\\composer\\ScriptHandler::listScaffoldFiles"
],
"pre-install-cmd": [
"SkilldDrupal\\composer\\ScriptHandler::checkComposerVersion"
],
"pre-update-cmd": [
"SkilldDrupal\\composer\\ScriptHandler::checkComposerVersion"
]
},
"extra": {
"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"]
},
"drupal-scaffold": {
"locations": {
"web-root": "web/"
},
"file-mapping": {
"[web-root]/web.config": false
}
},
"composer-exit-on-patch-failure": true,
"patchLevel": {
"drupal/core": "-p2"
},
"drupal-cleanup": {
"drupal-core": [
"modules/*/tests",
"modules/*/src/Tests",
"profiles/demo_umami",
"profiles/*/tests",
"profiles/*testing*",
"lib/Drupal/Core/Test",
"scripts/test",
"tests"
],
"drupal-module": [
"tests",
"src/Tests"
],
"exclude": [
"web/core/tests"
]
},
"patches": {
"drupal/default_content": {
"Do not reimport existing entities": "https://www.drupal.org/files/issues/2022-07-29/default_content-fix-uuid-duplicate-entry-2698425.patch"
}
}
}
}