-
- Downloads
Initial commit
parents
No related branches found
No related tags found
.gitattributes
0 → 100644
.gitignore
0 → 100644
.gitlab-ci.yml
0 → 100644
composer.json
0 → 100644
{ | ||
"name": "lakedrops/d10-project", | ||
"description": "Drupal 10 project template for a composer based workflow", | ||
"type": "project", | ||
"keywords": [ | ||
"Drupal", | ||
"Development", | ||
"Install", | ||
"Update" | ||
], | ||
"homepage": "https://gitlab.lakedrops.com/composer/project/drupal-10", | ||
"license": "GPL-2.0-or-later", | ||
"authors": [ | ||
{ | ||
"name": "Jürgen Haas", | ||
"email": "juergen.haas@lakedrops.com", | ||
"homepage": "https://www.lakedrops.com", | ||
"role": "Drupal Expert" | ||
}, | ||
{ | ||
"name": "Daniel Speicher", | ||
"email": "daniel.speicher@lakedrops.com", | ||
"homepage": "https://www.lakedrops.com", | ||
"role": "Drupal Expert" | ||
}, | ||
{ | ||
"name": "Richard Papp", | ||
"email": "richard.papp@lakedrops.com", | ||
"homepage": "http://www.lakedrops.com", | ||
"role": "Drupal Expert" | ||
} | ||
], | ||
"support": { | ||
"issues": "https://gitlab.lakedrops.com/composer/project/drupal-10/issues", | ||
"source": "https://gitlab.lakedrops.com/composer/project/drupal-10/tree/main", | ||
"docs": "https://devops-tools.docs.lakedrops.com/composer/project/d10/" | ||
}, | ||
"repositories": [ | ||
{ | ||
"type": "composer", | ||
"url": "https://packages.drupal.org/8" | ||
} | ||
], | ||
"require": { | ||
"php": ">=8.1", | ||
"lakedrops/d10-project-scaffold": "^1.0||dev-develop" | ||
}, | ||
"require-dev": { | ||
"lakedrops/drupal-development-environment": "^3.2||dev-develop" | ||
}, | ||
"conflict": { | ||
"drupal/drupal": "*" | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
"config": { | ||
"preferred-install": { | ||
"*": "dist" | ||
}, | ||
"sort-packages": true, | ||
"discard-changes": true, | ||
"allow-plugins": { | ||
"composer/installers": true, | ||
"dealerdirect/phpcodesniffer-composer-installer": true, | ||
"cweagans/composer-patches": true, | ||
"drupal/core-composer-scaffold": true, | ||
"lakedrops/*": true | ||
} | ||
}, | ||
"extra": { | ||
"patches-file": "https://gitlab.lakedrops.com/composer/plugin/drupal-environment/-/raw/main/patches/d10.json", | ||
"drupal-scaffold": { | ||
"allowed-packages": [ | ||
"drupal/core" | ||
], | ||
"locations": { | ||
"web-root": "./web" | ||
}, | ||
"file-mapping": { | ||
"[project-root]/.editorconfig": false, | ||
"[project-root]/.gitattributes": false, | ||
"[web-root]/example.gitignore": false, | ||
"[web-root]/INSTALL.txt": false, | ||
"[web-root]/README.txt": false, | ||
"[web-root]/sites/README.txt": false, | ||
"[web-root]/sites/development.services.yml": false, | ||
"[web-root]/sites/example.settings.local.php": false, | ||
"[web-root]/sites/example.sites.php": false, | ||
"[web-root]/sites/default/default.services.yml": false, | ||
"[web-root]/sites/default/default.settings.php": false, | ||
"[web-root]/modules/README.txt": false, | ||
"[web-root]/profiles/README.txt": false, | ||
"[web-root]/themes/README.txt": false | ||
} | ||
}, | ||
"installer-paths": { | ||
"web/core": [ | ||
"type:drupal-core" | ||
], | ||
"web/modules/contrib/{$name}": [ | ||
"type:drupal-module" | ||
], | ||
"web/profiles/contrib/{$name}": [ | ||
"type:drupal-profile" | ||
], | ||
"web/themes/contrib/{$name}": [ | ||
"type:drupal-theme" | ||
], | ||
"web/themes/custom/{$name}": [ | ||
"type:drupal-custom-theme" | ||
], | ||
"web/libraries/{$name}": [ | ||
"type:drupal-library" | ||
], | ||
"drush/Commands/{$name}": [ | ||
"type:drupal-drush" | ||
] | ||
} | ||
} | ||
} |
Please register or sign in to comment