Skip to content

Commit

Permalink
2.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrii-fediuk committed Feb 21, 2019
1 parent 973b9f8 commit aab4d5d
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mage2pro/stripe"
,"version": "2.6.3"
,"version": "2.7.0"
,"description": "Stripe integration with Magento 2"
,"type": "magento2-module"
,"homepage": "https://mage2.pro/c/stripe"
Expand All @@ -11,7 +11,7 @@
"homepage": "https://mage2.pro/users/dmitry_fedyuk",
"role": "Developer"
}]
,"require": {"mage2pro/core": ">=3.11.0", "mage2pro/phone": ">=1.0.11", "stripe/stripe-php": ">=5.3"}
,"require": {"mage2pro/core": ">=4.0.7", "mage2pro/phone": ">=1.0.11", "stripe/stripe-php": ">=5.3"}
,"autoload": {"files": ["registration.php"], "psr-4": {"Dfe\\Stripe\\": ""}}
,"keywords": [
"3D Secure"
Expand Down
7 changes: 7 additions & 0 deletions view/frontend/requirejs-config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
// 2019-02-22
var config = {config: {mixins: {
// 2019-02-22
// It would solve compatibility problems with third-party checkout modules.
// Similar to: https://github.com/mage2pro/vantiv/issues/3
'Magento_Checkout/js/view/payment/list': {'Dfe_Stripe/payment-list': true}
}}};
4 changes: 4 additions & 0 deletions view/frontend/web/payment-list.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// 2019-02-22
// It would solve compatibility problems with third-party checkout modules.
// Similar to: https://github.com/mage2pro/vantiv/issues/3
define(['Dfe_Stripe/loader'], function() {return function(sb) {return sb;};});

0 comments on commit aab4d5d

Please sign in to comment.