Last active
May 25, 2017 02:21
-
-
Save steveoliver/3dadc04ceac1b5260d92cfea8f52871b to your computer and use it in GitHub Desktop.
drupal commerce composer patched project cannot composer install
This file contains 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": "drupalcommerce/project-base", | |
"description": "Commerce 2.x project template", | |
"type": "project", | |
"license": "GPL-2.0+", | |
"authors": [ | |
{ | |
"name": "", | |
"role": "" | |
} | |
], | |
"repositories": { | |
"drupal": { | |
"type": "composer", | |
"url": "https://packages.drupal.org/8" | |
} | |
}, | |
"config": { | |
"bin-dir": "bin" | |
}, | |
"require": { | |
"ext-curl": "*", | |
"composer/installers": "^1.2", | |
"drupal-composer/drupal-scaffold": "^2.2", | |
"cweagans/composer-patches": "~1.0", | |
"drupal/core": "~8.3.0", | |
"drupal/console": "~1.0", | |
"drupal/commerce": "2.x-dev", | |
"drupal/swiftmailer": "1.x-dev", | |
"drupalcommerce/commerce_base": "dev-8.x-1.x", | |
"drupal/commerce_shipping": "2.x-dev" | |
}, | |
"require-dev": { | |
"behat/mink": "~1.7", | |
"behat/mink-goutte-driver": "~1.2", | |
"jcalderonzumba/gastonjs": "~1.0.2", | |
"jcalderonzumba/mink-phantomjs-driver": "~0.3.1", | |
"mikey179/vfsStream": "~1.2", | |
"phpunit/phpunit": "~4.8", | |
"symfony/css-selector": "~2.8" | |
}, | |
"conflict": { | |
"drupal/drupal": "*" | |
}, | |
"minimum-stability": "dev", | |
"prefer-stable": true, | |
"autoload": { | |
"classmap": [ | |
"scripts/composer/ScriptHandler.php" | |
] | |
}, | |
"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::createRequiredFiles" | |
], | |
"post-update-cmd": [ | |
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles" | |
] | |
}, | |
"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/commerce": { | |
"Order balance": "https://github.com/drupalcommerce/commerce/compare/8.x-2.x...steveoliver:913b912c2d62c.diff" | |
} | |
} | |
} | |
} |
This file contains 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": "drupalcommerce/project-base", | |
"description": "Commerce 2.x project template", | |
"type": "project", | |
"license": "GPL-2.0+", | |
"authors": [ | |
{ | |
"name": "", | |
"role": "" | |
} | |
], | |
"repositories": { | |
"drupal": { | |
"type": "composer", | |
"url": "https://packages.drupal.org/8" | |
} | |
}, | |
"config": { | |
"bin-dir": "bin" | |
}, | |
"require": { | |
"ext-curl": "*", | |
"composer/installers": "^1.2", | |
"drupal-composer/drupal-scaffold": "^2.2", | |
"cweagans/composer-patches": "~1.0", | |
"drupal/core": "~8.3.0", | |
"drupal/console": "~1.0", | |
"drupal/commerce": "2.x-dev", | |
"drupal/swiftmailer": "1.x-dev", | |
"drupalcommerce/commerce_base": "dev-8.x-1.x", | |
"drupal/commerce_shipping": "2.x-dev" | |
}, | |
"require-dev": { | |
"behat/mink": "~1.7", | |
"behat/mink-goutte-driver": "~1.2", | |
"jcalderonzumba/gastonjs": "~1.0.2", | |
"jcalderonzumba/mink-phantomjs-driver": "~0.3.1", | |
"mikey179/vfsStream": "~1.2", | |
"phpunit/phpunit": "~4.8", | |
"symfony/css-selector": "~2.8" | |
}, | |
"conflict": { | |
"drupal/drupal": "*" | |
}, | |
"minimum-stability": "dev", | |
"prefer-stable": true, | |
"autoload": { | |
"classmap": [ | |
"scripts/composer/ScriptHandler.php" | |
] | |
}, | |
"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::createRequiredFiles" | |
], | |
"post-update-cmd": [ | |
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles" | |
] | |
}, | |
"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/commerce": { | |
"Order balance": "https://patch-diff.githubusercontent.com/raw/drupalcommerce/commerce/pull/508.diff" | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment