Skip to content

Commit 40739d0

Browse files
BrentRobertshochdoerfer
authored andcommitted
Support for 2.4.4
1 parent bab5acd commit 40739d0

File tree

2 files changed

+31
-3
lines changed

2 files changed

+31
-3
lines changed

.github/workflows/ci.yml

Lines changed: 30 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,12 @@ jobs:
1111
strategy:
1212
matrix:
1313
operating-system: ['ubuntu-latest']
14-
php-versions: ['7.4', '7.4']
15-
coveralls: [false, true]
14+
php-versions: ['7.4']
15+
magento: ['2.3.7-p2', '2.4.0', '2.4.1', '2.4.2', '2.4.2-p1', '2.4.2-p2', '2.4.3', '2.4.3-p1']
16+
coveralls: [ false ]
17+
include:
18+
- php-versions: ['8.0', '8.1']
19+
magento: '2.4.4'
1620
steps:
1721
- name: Checkout repo
1822
uses: actions/checkout@v2
@@ -28,6 +32,30 @@ jobs:
2832
- name: Install Composer dependencies
2933
run: composer install
3034

35+
- name: Install Magento 2.3.7-p2
36+
if: matrix.magento == '2.3.7-p2'
37+
run: composer update --with-dependencies magento/framework:102.0.7-p2 magento/module-webapi:100.3.6-p2 infection/infection:0.22.0 n98/magerun2:4.5.0
38+
39+
- name: Install Magento 2.4.0
40+
if: matrix.magento == '2.4.0'
41+
run: composer update --with-dependencies magento/framework:103.0.0
42+
43+
- name: Install Magento 2.4.1
44+
if: matrix.magento == '2.4.1'
45+
run: composer update --with-dependencies magento/framework:103.0.1
46+
47+
- name: Install Magento 2.4.2
48+
if: matrix.magento == '2.4.2'
49+
run: composer update --with-dependencies magento/framework:103.0.2
50+
51+
- name: Install Magento 2.4.3
52+
if: matrix.magento == '2.4.3'
53+
run: composer update --with-dependencies magento/framework:103.0.3
54+
55+
- name: Install Magento 2.4.4
56+
if: matrix.magento == '2.4.4'
57+
run: composer update --with-dependencies magento/framework:103.0.4
58+
3159
- name: Composer license check
3260
run: composer check-license
3361

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"require": {
2222
"php": "^7.2.0 || ^8.0.0",
2323
"ext-dom": "*",
24-
"laminas/laminas-code": "~3.3.0 || ~3.4.1 || ~3.5.1",
24+
"laminas/laminas-code": "~3.3.0 || ~3.4.1 || ~3.5.1 || ~4.5.0",
2525
"phpstan/phpstan": "^1.5.0",
2626
"symfony/finder": "^3.0 || ^4.0 || ^5.0"
2727
},

0 commit comments

Comments
 (0)