Skip to content

Commit

Permalink
Bump v2.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
olegisk committed Mar 13, 2022
1 parent 78ebd34 commit ed5406e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,25 +22,24 @@ 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
- 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/*
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/*
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
],
Expand Down Expand Up @@ -42,6 +42,6 @@
}
},
"require-dev": {
"magento/magento-coding-standard": "^5.0"
"magento/magento-coding-standard": "^6.0"
}
}

0 comments on commit ed5406e

Please sign in to comment.