Merge pull request #627 from Adyen/develop
Release 5.2.0
Showing
.github/stale.yml
0 → 100644
.travis.yml
0 → 100644
CODE_OF_CONDUCT.md
0 → 100644
SECURITY.md
0 → 100644
... | @@ -2,7 +2,7 @@ | ... | @@ -2,7 +2,7 @@ |
"name": "adyen/module-payment", | "name": "adyen/module-payment", | ||
"description": "Official Magento2 Plugin to connect to Payment Service Provider Adyen.", | "description": "Official Magento2 Plugin to connect to Payment Service Provider Adyen.", | ||
"type": "magento2-module", | "type": "magento2-module", | ||
"version": "5.1.0", | "version": "5.2.0", | ||
"license": [ | "license": [ | ||
"OSL-3.0", | "OSL-3.0", | ||
"AFL-3.0" | "AFL-3.0" | ||
... | @@ -16,10 +16,13 @@ | ... | @@ -16,10 +16,13 @@ |
"require": { | "require": { | ||
"adyen/php-api-library": "~4.1", | "adyen/php-api-library": "~4.1", | ||
"magento/framework": ">=101.0.8 <102 || >=102.0.1", | "magento/framework": ">=101.0.8 <102 || >=102.0.1", | ||
"magento/module-vault": "101.*" | "magento/module-vault": "101.*", | ||
"magento/module-paypal": "*" | |||
}, | }, | ||
"require-dev": { | "require-dev": { | ||
"phpunit/phpunit": "~6.5.0" | "phpunit/phpunit": "~6.5.0", | ||
"magento/magento-coding-standard": "*", | |||
"squizlabs/php_codesniffer": "~3.5.3" | |||
}, | }, | ||
"autoload": { | "autoload": { | ||
"files": [ | "files": [ | ||
... | @@ -38,6 +41,12 @@ | ... | @@ -38,6 +41,12 @@ |
"test": [ | "test": [ | ||
"Composer\\Config::disableProcessTimeout", | "Composer\\Config::disableProcessTimeout", | ||
"vendor/bin/phpunit -c Test/phpunit.xml" | "vendor/bin/phpunit -c Test/phpunit.xml" | ||
], | |||
"post-install-cmd": [ | |||
"([ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard/)" | |||
], | |||
"post-update-cmd": [ | |||
"([ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard/)" | |||
] | ] | ||
} | } | ||
} | } |
phpcs.xml
0 → 100644
Please register or sign in to comment