57 lines
1.8 KiB
JSON
57 lines
1.8 KiB
JSON
{
|
|
"name": "drutopia/drutopia_template",
|
|
"description": "Template for composer-based Drutopia projects.",
|
|
"type": "project",
|
|
"license": "GPL-2.0+",
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"require": {
|
|
"composer/installers": "^1.0",
|
|
"drupal-composer/drupal-scaffold": "^2.0.0",
|
|
"cweagans/composer-patches": "^1.0",
|
|
"drutopia/drutopia": "^1.0-beta2",
|
|
"drush/drush": "^9.0",
|
|
"drupal/migrate_plus": "^4.2",
|
|
"drupal/migrate_upgrade": "^3",
|
|
"drupal/migrate_tools": "^4.1"
|
|
},
|
|
"repositories": {
|
|
"drupal": {
|
|
"type": "composer",
|
|
"url": "https://packages.drupal.org/8"
|
|
},
|
|
"drutopia": {
|
|
"type": "vcs",
|
|
"url": "https://github.com/drutopia/drutopia"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"post-install-cmd": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
|
|
"post-update-cmd": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
|
|
"nuke": "rm -rf vendor web/core web/modules/contrib web/profiles/contrib drush/contrib",
|
|
"quick-start": [
|
|
"composer install",
|
|
"php docroot/core/scripts/drupal quick-start drutopia --no-interaction"
|
|
]
|
|
},
|
|
"extra": {
|
|
"installer-paths": {
|
|
"web/core": [
|
|
"drupal/core"
|
|
],
|
|
"web/modules/contrib/{$name}": [
|
|
"type:drupal-module"
|
|
],
|
|
"web/profiles/contrib/{$name}": [
|
|
"type:drupal-profile"
|
|
],
|
|
"web/themes/contrib/{$name}": [
|
|
"type:drupal-theme"
|
|
],
|
|
"drush/contrib/{$name}": [
|
|
"type:drupal-drush"
|
|
]
|
|
},
|
|
"enable-patching": true
|
|
}
|
|
}
|