Skip to content

Commit 607af58

Browse files
committed
php 8.3
1 parent 8f8fc49 commit 607af58

File tree

2 files changed

+16
-7
lines changed

2 files changed

+16
-7
lines changed

.github/workflows/code_quality.yml

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches: [master]
66

77
env:
8-
MAGENTO_CODING_STANDARD: "v25"
8+
MAGENTO_CODING_STANDARD: "v30"
99

1010
jobs:
1111
static_code_check:
@@ -66,10 +66,13 @@ jobs:
6666
matrix:
6767
# https://experienceleague.adobe.com/docs/commerce-operations/installation-guide/system-requirements.html
6868
include:
69-
- magento: "2.4.3"
70-
php: "7.4"
71-
composer: "v1"
72-
elasticsearch: "7.10.2"
69+
# Higher matching version 4.6.1 of magento/magento2-functional-testing-framework was found in public repository packagist.org
70+
# than 4.4.2 in private https://mirror.mage-os.org. Public package might've been taken over by a malicious entity,
71+
# please investigate and update package requirement to match the version from the private repository
72+
#- magento: "2.4.3-p3"
73+
# php: "7.4"
74+
# composer: "v1"
75+
# elasticsearch: "7.10.2"
7376

7477
- magento: "2.4.4"
7578
php: "8.1"
@@ -81,6 +84,11 @@ jobs:
8184
composer: "v2"
8285
elasticsearch: "7.17.5"
8386

87+
- magento: "2.4.6"
88+
php: "8.2"
89+
composer: "v2"
90+
elasticsearch: "7.17.5"
91+
8492
steps:
8593
- name: Setup PHP
8694
uses: shivammathur/setup-php@v2
@@ -144,4 +152,5 @@ jobs:
144152
run: echo "::add-matcher::${{ github.workspace }}/app/code/Fastly/Cdn/.github/tests/phpunit_matcher.json"
145153

146154
- name: Run tests
147-
run: vendor/bin/phpunit -c dev/tests/unit/phpunit.xml.dist --teamcity app/code/Fastly/Cdn/
155+
run: ../../../vendor/bin/phpunit -c ../unit/phpunit.xml.dist --teamcity ../../../app/code/Fastly/Cdn/
156+
working-directory: dev/tests/integration

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "fastly/magento2",
33
"description": "Fastly CDN Module for Magento 2.4.x",
44
"require": {
5-
"php": "~7.3.0|~7.4.0|~8.0.0|~8.1.0|~8.2.0",
5+
"php": "~7.3.0|~7.4.0|~8.0.0|~8.1.0|~8.2.0|~8.3.0",
66
"magento/module-config": ">=101.2.0",
77
"magento/module-store": ">=101.1.0",
88
"magento/module-page-cache": ">=100.4.0",

0 commit comments

Comments
 (0)