Skip to content

Commit

Permalink
Merge pull request #60 from shochdoerfer/feature/magento-2.4.4
Browse files Browse the repository at this point in the history
Make module compatible with Magento 2.4.4
  • Loading branch information
shochdoerfer authored Apr 23, 2022
2 parents 00b4696 + 7b53630 commit 14061c9
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 12,792 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
coveralls: [ false ]
include:
- operating-system: 'ubuntu-latest'
php-versions: '7.4'
magento: '2.4.3'
php-versions: '8.1'
magento: '2.4.4'
coveralls: true

steps:
Expand Down Expand Up @@ -55,6 +55,10 @@ jobs:
if: matrix.magento == '2.4.3'
run: composer update --with-dependencies magento/framework:103.0.3 magento/module-webapi:100.4.2

- name: Install Magento 2.4.4
if: matrix.magento == '2.4.4'
run: composer update --with-dependencies magento/framework:103.0.4 magento/module-webapi:100.4.3

- name: Install Magerun
if: matrix.coveralls == false
run: |
Expand Down
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
.idea/
vendor/
rootCA.pem
.phpunit.result.cache
clover.xml
composer.lock
composer.phar
infection.log
rootCA.pem
vendor/
2 changes: 1 addition & 1 deletion bin/download
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
set -o errexit

VERSION=${1:-2.4.3-p1}
VERSION=${1:-2.4.4}
EDITION=${2:-community}

bin/stop
Expand Down
32 changes: 18 additions & 14 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,23 +21,22 @@
}
],
"require": {
"php": "~7.4.0|~8.0.0",
"magento/module-webapi": "~100.3.6-p2|~100.4.0|~100.4.1|~100.4.2",
"magento/framework": "~102.0.7-p2|~103.0.0|~103.0.1|~103.0.2|~103.0.3"
"php": "~7.4.0|~8.0.0|~8.1.0",
"magento/module-webapi": "~100.3.6-p2|~100.4.0|~100.4.1|~100.4.2|~100.4.3",
"magento/framework": "~102.0.7-p2|~103.0.0|~103.0.1|~103.0.2|~103.0.3|~103.0.4"
},
"require-dev": {
"bitexpert/captainhook-infection": "^0.5.0",
"bitexpert/phpstan-magento": "^0.19.0",
"captainhook/captainhook": "^5.10.4",
"captainhook/plugin-composer": "^5.3.2",
"infection/infection": "0.22.0|^0.26.1",
"n98/magerun2": "^4.5.0|^4.9.1",
"bitexpert/captainhook-infection": "^0.6.0",
"bitexpert/phpstan-magento": "^0.20.0",
"captainhook/captainhook": "^5.10.8",
"captainhook/plugin-composer": "^5.3.3",
"infection/infection": "0.22.0|^0.26.6",
"n98/magerun2": "^4.5.0|^4.9.1|^5.0.1",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.4",
"phpstan/phpstan": "^1.5.4",
"phpstan/phpstan-strict-rules": "^1.1",
"phpunit/phpunit": "^9.5.10",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.6.1"
"phpunit/phpunit": "^9.5.20",
"squizlabs/php_codesniffer": "^3.6.2"
},
"conflict": {
"bitexpert/magerun2-list-api-endpoints": "*"
Expand Down Expand Up @@ -71,6 +70,11 @@
"coverage": "vendor/bin/phpunit --coverage-clover clover.xml"
},
"config": {
"sort-packages": true
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true,
"captainhook/plugin-composer": true,
"phpstan/extension-installer": true
}
}
}
Loading

0 comments on commit 14061c9

Please # to comment.