Skip to content

Commit ef4f046

Browse files
author
Rik Willems
committed
Update supported Magento & PHP versions
1 parent 0443d63 commit ef4f046

2 files changed

Lines changed: 27 additions & 25 deletions

File tree

.github/workflows/ci.yml

Lines changed: 20 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,25 @@ jobs:
1111
strategy:
1212
matrix:
1313
operating-system: ['ubuntu-latest']
14-
php-versions: ['8.1', '8.2']
15-
magento: ['2.4.4', '2.4.5', '2.4.6']
14+
php-versions: ['8.3', '8.4']
15+
magento: ['2.4.7', '2.4.8']
1616
coveralls: [ true ]
1717
include:
1818
- operating-system: 'ubuntu-latest'
19-
php-versions: '8.1'
20-
magento: '2.4.4'
19+
php-versions: '8.3'
20+
magento: '2.4.7'
2121
coveralls: false
2222
- operating-system: 'ubuntu-latest'
23-
php-versions: '8.1'
24-
magento: '2.4.5'
23+
php-versions: '8.4'
24+
magento: '2.4.7'
25+
coveralls: false
26+
- operating-system: 'ubuntu-latest'
27+
php-versions: '8.3'
28+
magento: '2.4.8'
29+
coveralls: false
30+
- operating-system: 'ubuntu-latest'
31+
php-versions: '8.4'
32+
magento: '2.4.8'
2533
steps:
2634
- name: Checkout repo
2735
uses: actions/checkout@v2
@@ -37,23 +45,17 @@ jobs:
3745
- name: Install Composer dependencies
3846
run: composer install
3947

40-
- name: Install Magento 2.4.4
41-
if: matrix.magento-versions == '2.4.4'
42-
run: |
43-
composer remove --no-update magento/framework magento/module-backend magento/module-customer magento/module-store magento/module-ui
44-
composer require magento/framework:103.0.4 magento/module-backend:102.0.4 magento/module-customer:103.0.4 magento/module-store:101.1.4 magento/module-ui:101.2.4
45-
46-
- name: Install Magento 2.4.5
47-
if: matrix.magento-versions == '2.4.5'
48+
- name: Install Magento 2.4.7
49+
if: matrix.magento == '2.4.7'
4850
run: |
4951
composer remove --no-update magento/framework magento/module-backend magento/module-customer magento/module-store magento/module-ui
50-
composer require magento/framework:103.0.5 magento/module-backend:102.0.5 magento/module-customer:103.0.5 magento/module-store:101.1.5 magento/module-ui:101.2.5
52+
composer require magento/framework:103.0.7 magento/module-backend:102.0.7 magento/module-customer:103.0.7 magento/module-store:101.1.7 magento/module-ui:101.2.7
5153
52-
- name: Install Magento 2.4.6
53-
if: matrix.magento-versions == '2.4.6'
54+
- name: Install Magento 2.4.8
55+
if: matrix.magento == '2.4.8'
5456
run: |
5557
composer remove --no-update magento/framework magento/module-backend magento/module-customer magento/module-store magento/module-ui
56-
composer require magento/framework:103.0.6 magento/module-backend:102.0.6 magento/module-customer:103.0.6 magento/module-store:101.1.6 magento/module-ui:101.2.6
58+
composer require magento/framework:103.0.8 magento/module-backend:102.0.8 magento/module-customer:103.0.8 magento/module-store:101.1.8 magento/module-ui:101.2.8
5759
5860
- name: Codesniffer
5961
run: composer cs-check

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
}
1919
],
2020
"require": {
21-
"php": "~8.1.0|~8.2.0",
22-
"magento/framework": "^103.0.4",
23-
"magento/module-backend": "^102.0.4",
24-
"magento/module-customer": "^103.0.4",
25-
"magento/module-store": "^101.1.4",
26-
"magento/module-ui": "^101.2.4"
21+
"php": "~8.3.0|~8.4.0",
22+
"magento/framework": "103.0.7",
23+
"magento/module-backend": "102.0.7",
24+
"magento/module-customer": "103.0.7",
25+
"magento/module-store": "101.1.7",
26+
"magento/module-ui": "101.2.7"
2727
},
2828
"require-dev": {
2929
"phpunit/phpunit": "^9.5.2",
@@ -33,7 +33,7 @@
3333
"phpstan/phpstan": "^1.10.33",
3434
"bitexpert/phpstan-magento": "^0.30.0",
3535
"magento/magento-coding-standard": "^31"
36-
},
36+
},
3737
"autoload": {
3838
"files": [
3939
"registration.php"

0 commit comments

Comments
 (0)