Last active
November 15, 2019 09:50
-
-
Save lexsoft00/8b782c84d562ba83f2173d3e31ced16a to your computer and use it in GitHub Desktop.
Drush8 and Business Rules Issue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "quick/starter", | |
| "description": "Drupal 8", | |
| "type": "drupal-profile", | |
| "license": "GPL-2.0-or-later", | |
| "minimum-stability": "dev", | |
| "prefer-stable": true, | |
| "authors": [ | |
| { | |
| "name": "lexsoft", | |
| "homepage": "https://drupalcoders.org", | |
| "role": "Maintainer" | |
| } | |
| ], | |
| "repositories": { | |
| "drupal": { | |
| "type": "composer", | |
| "url": "https://packages.drupal.org/8" | |
| }, | |
| "assets": { | |
| "type": "composer", | |
| "url": "https://asset-packagist.org" | |
| } | |
| }, | |
| "require": { | |
| "composer/installers": "^1.5.0", | |
| "oomphinc/composer-installers-extender": "^1.1.2", | |
| "cweagans/composer-patches": "^1.6.4", | |
| "zaporylie/composer-drupal-optimizations": "^1.0", | |
| "drupal-composer/drupal-security-advisories": "8.x-dev", | |
| "drupal-composer/drupal-scaffold": "^2.4.0", | |
| "drupal/drupal-library-installer-plugin": "^0.3", | |
| "drupal/core": "~8.7.0", | |
| "drupal/admin_toolbar": "~2.0.0", | |
| "drupal/adminimal_admin_toolbar": "~1.0", | |
| "drupal/business_rules": "1.x-dev#8322a36b2d992f64faefdfe37c0b8a11942dfa78" | |
| }, | |
| "require-dev": { | |
| "drush/drush": "8.x" | |
| }, | |
| "config": { | |
| "bin-dir": "bin/", | |
| "secure-http": false, | |
| "optimize-autoloader": true, | |
| "preferred-install": { | |
| "drupal/core": "dist" | |
| } | |
| }, | |
| "scripts": { | |
| "drupal-scaffold": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold", | |
| "pre-autoload-dump": "Drupal\\Core\\Composer\\Composer::preAutoloadDump", | |
| "post-autoload-dump": "Drupal\\Core\\Composer\\Composer::ensureHtaccess", | |
| "post-package-install": "Drupal\\Core\\Composer\\Composer::vendorTestCodeCleanup", | |
| "post-package-update": "Drupal\\Core\\Composer\\Composer::vendorTestCodeCleanup", | |
| "post-install-cmd": [ | |
| "cd vendor && find . -name \".git\" -type d -prune -exec rm -r \"{}\" \\; && cd .." | |
| ], | |
| "post-update-cmd": [ | |
| "@drupal-scaffold", | |
| "cd vendor && find . -name \".git\" -type d -prune -exec rm -r \"{}\" \\; && cd .." | |
| ] | |
| }, | |
| "extra": { | |
| "drupal-scaffold": { | |
| "excludes": [ | |
| "robots.txt" | |
| ] | |
| }, | |
| "installer-types": [ | |
| "bower-asset", | |
| "npm-asset" | |
| ], | |
| "installer-paths": { | |
| "docroot/core": ["drupal/core"], | |
| "docroot/profiles/{$name}": ["type:drupal-profile"], | |
| "docroot/modules/contrib/{$name}": ["type:drupal-module"], | |
| "docroot/themes/contrib/{$name}": ["type:drupal-theme"], | |
| "docroot/libraries/slick": ["npm-asset/slick-carousel"], | |
| "docroot/libraries/ace": ["npm-asset/ace-builds"], | |
| "docroot/libraries/chosen": ["npm-asset/chosen-js"], | |
| "docroot/libraries/{$name}": [ | |
| "type:drupal-library", | |
| "type:bower-asset", | |
| "type:npm-asset" | |
| ], | |
| "docroot/modules/custom/{$name}": ["type:drupal-custom-module"], | |
| "docroot/themes/custom/{$name}": ["type:drupal-custom-theme"], | |
| "drush/contrib/{$name}": ["type:drupal-drush"] | |
| }, | |
| "drupal-libraries": { | |
| "library-directory": "docroot/libraries", | |
| "libraries": [ | |
| {"name": "dropzone","package": "npm-asset/dropzone"}, | |
| {"name": "blazy", "package": "npm-asset/blazy"}, | |
| {"name": "slick", "package": "npm-asset/slick-carousel"}, | |
| {"name": "ace", "package": "npm-asset/ace-builds"} | |
| ] | |
| }, | |
| "enable-patching": true, | |
| "composer-exit-on-patch-failure": true, | |
| "patchLevel": { | |
| "drupal/core": "-p2" | |
| }, | |
| "patches": { | |
| "drupal/business_rules": { | |
| "Issue #3067844: Mail overwritten in busines_rules.module" : "https://www.drupal.org/files/issues/2019-07-15/mail-overwritten-3067844-2_0.patch", | |
| "Issue #3068553: Use site mail as sender value is never saved": "https://www.drupal.org/files/issues/2019-07-17/Use_site_mail_as_sender_value_is_never_saved-3068553-2.patch", | |
| "Issue #3093597: Actions Intermitently stop firing until cache is cleared again": "https://www.drupal.org/files/issues/2019-11-12/actions-intermitently-stop-firing-until-cache-is-cleared-3093597-4.patch" | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment