From 19aa40e205620ed4d270eadb968878f0b0931a2d Mon Sep 17 00:00:00 2001 From: Bastien Philippe Date: Mon, 25 Nov 2024 17:24:51 +0100 Subject: [PATCH] Exclude lowest with php8.4 --- .github/workflows/run-tests.yml | 7 +++++-- composer.json | 8 ++++---- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 84cc91d..a9607f9 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -14,12 +14,15 @@ jobs: matrix: os: [ubuntu-latest] php: [8.3, 8.4] - laravel: [^11.33] + laravel: [^11.0] laravel-data: [^4.0] stability: [prefer-lowest, prefer-stable] include: - - laravel: ^11.33 + - laravel: ^11.0 testbench: ^9.0 + exclude: + - php: 8.4 + stability: prefer-lowest name: P${{ matrix.php }} - L${{ matrix.laravel }} - laraveldata${{ matrix.laravel-data }} - ${{ matrix.stability }} - ${{ matrix.os }} diff --git a/composer.json b/composer.json index d5e0d8b..5bc395f 100644 --- a/composer.json +++ b/composer.json @@ -19,10 +19,10 @@ "php": "^8.3", "composer-runtime-api": "^2.0", "composer/class-map-generator": "^1.4", - "illuminate/console": "^11.33", - "illuminate/contracts": "^11.33", - "illuminate/filesystem": "^11.33", - "illuminate/support": "^11.33", + "illuminate/console": "^11.0", + "illuminate/contracts": "^11.0", + "illuminate/filesystem": "^11.0", + "illuminate/support": "^11.0", "laravel/prompts": "^0.3.1", "phpstan/phpdoc-parser": "^2.0", "spatie/fork": "^1.1",