Skip to content

Commit

Permalink
Recipes on Drupal 11 installation too.
Browse files Browse the repository at this point in the history
  • Loading branch information
juanjol committed Dec 11, 2024
1 parent e5ed2a0 commit f255948
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions kickstart/d11/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/woredeyonas/Drupal-Recipe-Unpack.git"
},
{
"type": "composer",
"url": "https://packages.drupal.org/8"
Expand All @@ -28,7 +32,8 @@
"metadrop/drupal-artifact-builder": "^1.4"
},
"require-dev": {
"metadrop/drupal-dev": "^2.0.0"
"metadrop/drupal-dev": "^2.6.0",
"ewcomposer/unpack": "dev-master"
},
"conflict": {
"drupal/drupal": "*"
Expand All @@ -50,18 +55,28 @@
"metadrop/composer-comments": true,
"php-http/discovery": true,
"tbachert/spi": true,
"ewcomposer/unpack": true,
"mxr576/ddqg-composer-audit": true
}
},
"scripts": {
"drupal-scaffold": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold"
},
"extra": {
"patches": {
"drupal/core": {
"Stream wrappers not registered when installing module's default config - https://www.drupal.org/project/drupal/issues/3416735": "https://git.drupalcode.org/project/drupal/-/merge_requests/10421.diff",
"Allow recipe command to write to the container ensuring that cache does not be cleared after a recipe installs a module - https://www.drupal.org/project/drupal/issues/3315694": "patches/drupal-core-3315694-1.patch"
}
},
"drupal-scaffold": {
"locations": {
"web-root": "./web"
}
},
"installer-types": [
"drupal-recipe"
],
"installer-paths": {
"web/core": ["type:drupal-core"],
"web/libraries/{$name}": ["type:drupal-library"],
Expand All @@ -71,7 +86,10 @@
"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"]
"web/themes/custom/{$name}": ["type:drupal-custom-theme"],
"web/recipes/{$name}": [
"type:drupal-recipe"
]
},
"dev-files": {
"bin": [
Expand Down

0 comments on commit f255948

Please sign in to comment.