diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 3231da3..ce982ea 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -22,15 +22,16 @@ jobs: - name: Install dependencies uses: shivammathur/setup-php@master with: - php-version: '7.3' + php-version: '7.4' extension: intl, mbstring, json, bcmath, sodium, zip coverage: xdebug - tools: composer, php-cs-fixer, phpunit:7.5.19, phpcpd, phpmd + tools: composer, phpcs, phpunit:7.5.19, phpcpd, phpmd - name: Install tools run: | cd $GITHUB_WORKSPACE/m2-payments composer global require squizlabs/php_codesniffer + composer global require phpcompatibility/php-compatibility composer global require magento/magento-coding-standard composer global require phpmd/phpmd composer global require sebastian/phpcpd @@ -38,9 +39,7 @@ jobs: - name: Run PHPCS inspection run: | cd $GITHUB_WORKSPACE/m2-payments - php ~/.composer/vendor/bin/phpcs --config-set installed_paths ~/.composer/vendor/magento/magento-coding-standard/Magento2 - #php ~/.composer/vendor/bin/phpcpd ./ + php ~/.composer/vendor/bin/phpcs --config-set installed_paths ~/.composer/vendor/phpcompatibility/php-compatibility/PHPCompatibility #php ~/.composer/vendor/bin/phpmd ./ text cleancode,codesize,controversial,design,naming,unusedcode --exclude vendor/ - #php ~/.composer/vendor/bin/phpcs --standard=PSR1 ./ --ignore=./vendor/* php ~/.composer/vendor/bin/phpcs --runtime-set ignore_warnings_on_exit 1 --standard=PSR2 ./ --ignore=./vendor/* - php ~/.composer/vendor/bin/phpcs --runtime-set ignore_warnings_on_exit 1 --standard=~/.composer/vendor/magento/magento-coding-standard/Magento2/ruleset.xml --extensions=php,phtml ./ --ignore=./vendor/* \ No newline at end of file + php ~/.composer/vendor/bin/phpcs --runtime-set ignore_warnings_on_exit 1 --standard=~/.composer/vendor/magento/magento-coding-standard/Magento2/ruleset.xml --extensions=php,phtml ./ --ignore=./vendor/* diff --git a/CHANGELOG.md b/CHANGELOG.md index f5298de..f70f09c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [2.11.0] - 2022-04-13 +## Changed +- Fixed Store ID Magento problem +- Fix Webhook URL in multistore configuration + ## [2.10.0] - 2021-11-14 ## Changed - Fixed: Undefined class constant 'CORE_CODE' diff --git a/composer.json b/composer.json index f4cf673..4e79b25 100644 --- a/composer.json +++ b/composer.json @@ -6,10 +6,10 @@ "league/iso3166": "~2.1", "graylog2/gelf-php": "~1.5", "symfony/translation": ">=4.2", - "ingenico/ogone-client": "^6.0.0" + "ingenico/ogone-client": "^7.1.0" }, "type": "magento2-module", - "version": "2.10.0", + "version": "2.11.0", "license": [ "OSL-3.0" ], @@ -42,6 +42,6 @@ } }, "require-dev": { - "magento/magento-coding-standard": "^5.0" + "magento/magento-coding-standard": "^6.0" } }