From 99430311c4f4d29528f072be73ae19d3888523df Mon Sep 17 00:00:00 2001 From: Bart Kuenen Date: Tue, 7 Nov 2023 14:21:23 +0100 Subject: [PATCH 1/2] add support for php 8.3 --- .github/workflows/run-linting.yml | 2 +- .github/workflows/run-tests.yml | 9 ++++++++- composer.json | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run-linting.yml b/.github/workflows/run-linting.yml index c9c3fa6..e1941e5 100644 --- a/.github/workflows/run-linting.yml +++ b/.github/workflows/run-linting.yml @@ -15,7 +15,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: 8.2 + php-version: 8.3 - name: Get Composer cache cirectory id: composer-cache diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 3d7215e..e0f071a 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -10,10 +10,17 @@ jobs: strategy: fail-fast: false matrix: - php: [7.3, 7.4, 8.0, 8.1, 8.2] + php: [7.3, 7.4, 8.0, 8.1, 8.2, 8.3] laravel: [7.*, 8.*, 9.*, 10.*] dependency-version: [prefer-lowest, prefer-stable] exclude: + - php: 8.3 + laravel: 9.* + dependency-version: prefer-lowest + - php: 8.3 + laravel: 8.* + - php: 8.3 + laravel: 7.* - php: 8.2 laravel: 9.* dependency-version: prefer-lowest diff --git a/composer.json b/composer.json index 3fa2ca0..fe3461e 100644 --- a/composer.json +++ b/composer.json @@ -17,7 +17,7 @@ } ], "require": { - "php": "^7.3|^7.4|^8.0|^8.1|^8.2", + "php": "^7.3|^7.4|^8.0|^8.1|^8.2|^8.3", "guzzlehttp/guzzle": "^6.5|^7.0", "illuminate/filesystem": "^7.0|^8.0|^9.0|^10.0", "illuminate/support": "^7.0|^8.0|^9.0|^10.0", From ca8c9eaabff1cc072195a82fb8fa99fdffd81eb9 Mon Sep 17 00:00:00 2001 From: Bart Kuenen Date: Wed, 13 Dec 2023 12:00:52 +0100 Subject: [PATCH 2/2] remove linter ignore env flag --- .github/workflows/run-linting.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-linting.yml b/.github/workflows/run-linting.yml index e1941e5..6ae6106 100644 --- a/.github/workflows/run-linting.yml +++ b/.github/workflows/run-linting.yml @@ -35,5 +35,5 @@ jobs: - name: Execute linting run: | - PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix --dry-run + vendor/bin/php-cs-fixer fix --dry-run vendor/bin/phpcs --colors --report-full