geo-coop/composer.json

82 lines
2.8 KiB
JSON
Raw Normal View History

2019-07-12 14:27:04 -04:00
{
"name": "drutopia/drutopia_template",
"description": "Template for composer-based Drutopia projects.",
"type": "project",
"license": "GPL-2.0+",
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
2019-07-12 14:27:04 -04:00
"require": {
"composer/installers": "^1.0",
"drupal-composer/drupal-scaffold": "^2.0.0",
"cweagans/composer-patches": "^1.0",
"drutopia/drutopia": "^1.0-beta2",
2019-07-17 14:47:01 -05:00
"drush/drush": "^9.0",
"drupal/migrate_plus": "^4.2",
"drupal/migrate_upgrade": "^3",
"drupal/migrate_tools": "^4.1",
"drupal/config_actions": "1.x-dev",
2019-07-29 13:26:07 -04:00
"drupal/convert_bundles": "^1.0@alpha",
"drupal/drutopia_collection": "^1.0@alpha",
"drupal/field_token_value": "^1.0",
2019-08-30 12:04:54 -04:00
"drupal/link_attributes": "^1.9",
"drupal/claro": "^1.0@alpha",
"drupal/cshs": "^1.0@beta"
2019-07-12 14:27:04 -04:00
},
"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,
2019-07-18 15:40:57 -05:00
"patches": {
"drupal/core": {
"Allow an install hook in profiles installing from configuration": "https://www.drupal.org/files/issues/2018-11-27/2982052-22.patch"
},
2019-07-18 15:40:57 -05:00
"drutopia/drutopia": {
"Remove default content": "patches/drutopia-remove-default-content.patch"
},
"drupal/drutopia_core": {
"Remove default content": "patches/drutopia-core-remove-default-content.patch"
},
"drupal/migrate_tools": {
"The limit option does not accept a value": "https://www.drupal.org/files/issues/2019-02-05/migrate-tools_fix-drush-options_3024399-23.patch"
2019-07-18 15:40:57 -05:00
}
}
2019-07-12 14:27:04 -04:00
}
}