From 2ae02eba0d796663961bc1d614ef714f4cf152be Mon Sep 17 00:00:00 2001 From: Rhys Lees <43909932+RhysLees@users.noreply.github.com> Date: Thu, 14 Mar 2024 21:45:57 +0000 Subject: [PATCH 1/3] WIP --- composer.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index 1b2e15a..b93fd76 100644 --- a/composer.json +++ b/composer.json @@ -17,10 +17,10 @@ } ], "require": { - "php": "^8.2", + "php": "^8.3", "codebar-ag/laravel-feature-policy": "^1.0", "guzzlehttp/guzzle": "^7.8", - "illuminate/contracts": "^10.0", + "illuminate/contracts": "^11.0", "spatie/laravel-csp": "^2.8", "spatie/laravel-enum": "^3.0", "spatie/laravel-health": "^1.23", @@ -30,9 +30,9 @@ }, "require-dev": { "laravel/pint": "^1.13", - "nunomaduro/collision": "^7.10", + "nunomaduro/collision": "^8.1", "nunomaduro/larastan": "^2.8", - "orchestra/testbench": "^8.20", + "orchestra/testbench": "^9.0", "pestphp/pest": "^2.30", "pestphp/pest-plugin-laravel": "^2.2", "phpstan/extension-installer": "^1.3", From 78d9cc0c50873481bfb0896bcd06fd05c18cda5e Mon Sep 17 00:00:00 2001 From: Rhys Lees <43909932+RhysLees@users.noreply.github.com> Date: Thu, 14 Mar 2024 21:57:03 +0000 Subject: [PATCH 2/3] WIP --- .github/workflows/run-tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index c7860f6..cfc9555 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -13,9 +13,9 @@ jobs: fail-fast: true matrix: os: [ ubuntu-latest ] - php: [ 8.2, 8.3 ] - laravel: [ 10.33.* ] - testbench: [ 8.* ] + php: [ 8.3 ] + laravel: [ 11.* ] + testbench: [ 9.* ] stability: [ prefer-lowest, prefer-stable ] name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} From e3e3877538ab519efedfeb00414b5c677b31bba9 Mon Sep 17 00:00:00 2001 From: Rhys Lees <43909932+RhysLees@users.noreply.github.com> Date: Fri, 15 Mar 2024 11:52:29 +0000 Subject: [PATCH 3/3] WIP --- .github/workflows/run-tests.yml | 5 ++--- composer.json | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index cfc9555..8fa15ad 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -13,9 +13,8 @@ jobs: fail-fast: true matrix: os: [ ubuntu-latest ] - php: [ 8.3 ] + php: [ 8.2, 8.3 ] laravel: [ 11.* ] - testbench: [ 9.* ] stability: [ prefer-lowest, prefer-stable ] name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} @@ -38,7 +37,7 @@ jobs: - name: Install dependencies run: | - composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update + composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update composer update --${{ matrix.stability }} --prefer-dist --no-interaction - name: Execute tests diff --git a/composer.json b/composer.json index b93fd76..348e583 100644 --- a/composer.json +++ b/composer.json @@ -17,7 +17,7 @@ } ], "require": { - "php": "^8.3", + "php": ">=8.2", "codebar-ag/laravel-feature-policy": "^1.0", "guzzlehttp/guzzle": "^7.8", "illuminate/contracts": "^11.0",