Skip to content

Commit

Permalink
php 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Domagoj Potkoc committed Dec 19, 2023
1 parent 8f8fc49 commit 607af58
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 7 deletions.
21 changes: 15 additions & 6 deletions .github/workflows/code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches: [master]

env:
MAGENTO_CODING_STANDARD: "v25"
MAGENTO_CODING_STANDARD: "v30"

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

- magento: "2.4.4"
php: "8.1"
Expand All @@ -81,6 +84,11 @@ jobs:
composer: "v2"
elasticsearch: "7.17.5"

- magento: "2.4.6"
php: "8.2"
composer: "v2"
elasticsearch: "7.17.5"

steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down Expand Up @@ -144,4 +152,5 @@ jobs:
run: echo "::add-matcher::${{ github.workspace }}/app/code/Fastly/Cdn/.github/tests/phpunit_matcher.json"

- name: Run tests
run: vendor/bin/phpunit -c dev/tests/unit/phpunit.xml.dist --teamcity app/code/Fastly/Cdn/
run: ../../../vendor/bin/phpunit -c ../unit/phpunit.xml.dist --teamcity ../../../app/code/Fastly/Cdn/
working-directory: dev/tests/integration
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "fastly/magento2",
"description": "Fastly CDN Module for Magento 2.4.x",
"require": {
"php": "~7.3.0|~7.4.0|~8.0.0|~8.1.0|~8.2.0",
"php": "~7.3.0|~7.4.0|~8.0.0|~8.1.0|~8.2.0|~8.3.0",
"magento/module-config": ">=101.2.0",
"magento/module-store": ">=101.1.0",
"magento/module-page-cache": ">=100.4.0",
Expand Down

0 comments on commit 607af58

Please sign in to comment.