From 3293ba69c7276a5488b5765d5da578cd0b460bdd Mon Sep 17 00:00:00 2001 From: "Barry vd. Heuvel" Date: Mon, 17 Feb 2025 14:54:13 +0100 Subject: [PATCH 1/2] Add back L9 --- .github/workflows/run-integration-tests.yml | 4 +++- .github/workflows/run-tests.yml | 4 +++- composer.json | 8 ++++---- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/workflows/run-integration-tests.yml b/.github/workflows/run-integration-tests.yml index 25fdf96e..2f78f954 100644 --- a/.github/workflows/run-integration-tests.yml +++ b/.github/workflows/run-integration-tests.yml @@ -20,12 +20,14 @@ jobs: fail-fast: false matrix: php: [8.4, 8.3, 8.2, 8.1] - laravel: [12.*, 11.*, 10.*] + laravel: [12.*, 11.*, 10.*, 9.*] exclude: - laravel: 12.* php: 8.1 - laravel: 11.* php: 8.1 + - laravel: 9.* + php: 8.4 name: P${{ matrix.php }} - Laravel${{ matrix.laravel }} steps: - name: Checkout code diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index f84de2ee..8cf1eff4 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -21,13 +21,15 @@ jobs: fail-fast: false matrix: php: [8.4, 8.3, 8.2, 8.1] - laravel: [^12, ^11, ^10] + laravel: [^12, ^11, ^10, ^9] dependency-version: [prefer-stable] exclude: - laravel: ^12 php: 8.1 - laravel: ^11 php: 8.1 + - laravel: ^9 + php: 8.4 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} diff --git a/composer.json b/composer.json index 6198c8c0..77ab46f5 100644 --- a/composer.json +++ b/composer.json @@ -19,14 +19,14 @@ "require": { "php": "^8.1", "php-debugbar/php-debugbar": "~2.1.1", - "illuminate/routing": "^10|^11|^12", - "illuminate/session": "^10|^11|^12", - "illuminate/support": "^10|^11|^12", + "illuminate/routing": "^9|^10|^11|^12", + "illuminate/session": "^9|^10|^11|^12", + "illuminate/support": "^9|^10|^11|^12", "symfony/finder": "^6|^7" }, "require-dev": { "mockery/mockery": "^1.3.3", - "orchestra/testbench-dusk": "^8|^9|^10", + "orchestra/testbench-dusk": "^7|^8|^9|^10", "phpunit/phpunit": "^10|^11", "squizlabs/php_codesniffer": "^3.5" }, From 31cfb32e4b8d4bacad37b7c01e9569039686a179 Mon Sep 17 00:00:00 2001 From: "Barry vd. Heuvel" Date: Mon, 17 Feb 2025 14:55:55 +0100 Subject: [PATCH 2/2] phpunit --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 77ab46f5..f2f01ea6 100644 --- a/composer.json +++ b/composer.json @@ -27,7 +27,7 @@ "require-dev": { "mockery/mockery": "^1.3.3", "orchestra/testbench-dusk": "^7|^8|^9|^10", - "phpunit/phpunit": "^10|^11", + "phpunit/phpunit": "^9.5.10|^10|^11", "squizlabs/php_codesniffer": "^3.5" }, "autoload": {