agaric-coop/composer.json
benjamin melançon 89f53a718a Add the Indieweb module
Ref #32
2018-12-18 19:33:26 -05:00

93 lines
3.2 KiB
JSON

{
"name": "drutopia/drutopia_template",
"description": "Template for composer-based Drutopia projects.",
"type": "project",
"license": "GPL-2.0-or-later",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"behat/behat": "^3.4",
"behat/mink": "^1.7",
"behat/mink-goutte-driver": "^1.2",
"composer/installers": "^1.0",
"cweagans/composer-patches": "^1.0",
"drupal-composer/drupal-scaffold": "^2.0.0",
"drupal/core": "^8.6.2",
"drutopia/drutopia": "^1.0-beta1",
"drupal/drutopia_core": "1.x-dev",
"drush/drush": "^9.0",
"drupal/migrate_tools": "^4.0",
"drupal/migrate_plus": "^4.0",
"drupal/webform": "^5.0@RC",
"drupal/wysiwyg_linebreaks": "^1.9",
"drupal/redirect": "^1.2",
"drupal/block_theme_sync": "^1.0@alpha",
"drupal/search404": "^1.0",
"drupal/coffee": "1.x-dev",
"drupal/twigsuggest": "1.x-dev",
"drupal/ckeditor_markdown": "^1.1",
"drupal/minimalhtml": "^1.0",
"drupal/ui_patterns": "^1.0@RC",
"drupal/viewsreference": "^1.2",
"drupal/allowed_formats": "^1.1",
"drupal/textarea_widget_for_text": "^1.1",
"drupal/customerror": "1.x-dev",
"drupal/http_client_error_status": "^1.0",
"drupal/regionincontent": "1.x-dev",
"drupal/indieweb": "^1.0@RC"
},
"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,
"patches": {
"drupal/search404": {
"Remove search module dependency": "https://www.drupal.org/files/issues/2018-07-09/search404-core-search-dependency-9.patch"
},
"drupal/coffee": {
"Allow user to specify keyboard shortcut.": "https://www.drupal.org/files/issues/2018-11-11/1734898-14.coffee-hotkeys-plus-g.patch"
},
"drupal/wysiwyg_linebreaks": {
"Excess line breaks keep getting added": "https://www.drupal.org/files/issues/2018-11-18/excess-line-breaks-keep-getting-added-3013853-5.patch"
}
}
}
}