Skip to content

Instantly share code, notes, and snippets.

@homotechsual
Last active October 25, 2019 16:16
Show Gist options
  • Save homotechsual/68fe424ac41f4e82b1f3d2ca67b38d4c to your computer and use it in GitHub Desktop.
Save homotechsual/68fe424ac41f4e82b1f3d2ca67b38d4c to your computer and use it in GitHub Desktop.
composer.json w/civicrm entity
"name": "cheeky-monkey-media/drupal-project",
"description": "Project template for Drupal 8 projects with composer, with cheeky helpers.",
"type": "project",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "",
"role": ""
}
],
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
},
"zetacomponents-mail": {
"type": "vcs",
"url": "https://github.com/civicrm/zetacomponents-mail.git"
},
"civicrm-entity": {
"type": "package",
"package": {
"name": "drupal/civicrm_entity",
"version": "3.x-dev",
"type": "vcs",
"type": "drupal-module",
"source":
{
"url": "git@github.com:eileenmcnaughton/civicrm_entity.git",
"type": "git",
"reference": "8.x-3.x"
}
}
}
},
"require": {
"civicrm/civicrm-core": "5.18.3",
"civicrm/civicrm-drupal-8": "dev-master",
"composer/installers": "^1.2",
"cweagans/composer-patches": "^1.6",
"doctrine/lexer": "^1.0",
"drupal-composer/drupal-scaffold": "^2.2",
"drupal/admin_toolbar": "^1.22",
"drupal/adminimal_admin_toolbar": "^1.5",
"drupal/block_visibility_groups": "^1.3",
"drupal/civicrm_entity": "3.x-dev",
"drupal/commerce": "^2.14",
"drupal/commerce_migrate": "^2.0@RC",
"drupal/commerce_paypal": "^1.0@beta",
"drupal/conditional_fields": "^1.0@alpha",
"drupal/core": "~8.7.8",
"drupal/date_popup": "^1.0",
"drupal/diff": "^1.0@RC",
"drupal/easy_breadcrumb": "^1.12",
"drupal/entityqueue": "1.0.0-alpha7",
"drupal/environment_indicator": "^3.2",
"drupal/eu_cookie_compliance": "^1.8",
"drupal/field_group": "^1.0",
"drupal/field_permissions": "^1.0@RC",
"drupal/fixed_block_content": "^1.0",
"drupal/fullcalendar_view": "^2.2",
"drupal/google_tag": "^1.2",
"drupal/group": "^1.0@RC",
"drupal/link_attributes": "^1.5",
"drupal/link_class": "^1.3",
"drupal/linked_field": "^1.1",
"drupal/linkit": "^4.3",
"drupal/menu_block": "1.x-dev",
"drupal/metatag": "^1.4",
"drupal/migrate_tools": "^4.0",
"drupal/migrate_upgrade": "^2.0",
"drupal/oauth2_server": "^1.0@beta",
"drupal/openid_connect": "^1.0@beta",
"drupal/paragraphs": "^1.2",
"drupal/pathauto": "^1.0",
"drupal/permissions_by_term": "^2.10",
"drupal/search_api": "^1.14",
"drupal/search_api_solr": "^3.7",
"drupal/similarterms": "^1.3",
"drupal/simplesamlphp_auth": "^3.0",
"drupal/sitemap": "^1.5",
"drupal/superfish": "^1.3",
"drupal/term_condition": "^1.2",
"drupal/twig_field_value": "^1.2",
"drupal/video_embed_field": "^2.0",
"drupal/views_data_export": "^1.0",
"drupal/webform": "^5.1",
"drupal/xmlsitemap": "^1.0@alpha",
"drush/drush": "^9.7",
"league/csv": "^9.4",
"maennchen/zipstream-php": "^1.2",
"roundearth/civicrm-composer-plugin": "dev-master",
"webflo/drupal-finder": "^1.0.0",
"webmozart/path-util": "^2.3"
},
"require-dev": {
"behat/mink": "~1.7",
"behat/mink-goutte-driver": "~1.2",
"drupal/devel": "^1.2",
"drupal/devel_entity_updates": "^1.0",
"drupal/reroute_email": "^1.0",
"drupal/stage_file_proxy": "^1.0@alpha",
"drupal/styleguide": "^1.0@alpha",
"drupal/twig_xdebug": "^1.0",
"jcalderonzumba/gastonjs": "~1.0.2",
"jcalderonzumba/mink-phantomjs-driver": "~0.3.1",
"mikey179/vfsstream": "~1.2",
"phpunit/phpunit": ">=4.8.28 <5"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"scripts": {
"drupal-scaffold": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
"pre-install-cmd": [
"DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
],
"pre-update-cmd": [
"DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
],
"post-install-cmd": [
"DrupalProject\\composer\\ScriptHandler::postInstall",
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles",
"find ./vendor/ -type d -name .git | xargs rm -rf"
],
"post-update-cmd": [
"DrupalProject\\composer\\ScriptHandler::postInstall",
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles",
"find ./vendor/ -type d -name .git | xargs rm -rf",
"find ./web/ -type d -name .git | xargs rm -rf"
]
},
"extra": {
"installer-paths": {
"web/core": [
"type:drupal-core"
],
"web/libraries/{$name}": [
"type:drupal-library"
],
"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"
]
},
"patches": {
"drupal/core": {
"Array merge failure on line 153 LinkGenerator.php": "https://www.drupal.org/files/issues/array_merge_failure_on-2596937-65.patch"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment