From 50cb551eb9142998dcc668f36d8031ccbf622da0 Mon Sep 17 00:00:00 2001 From: Zacharias Creutznacher Date: Thu, 7 Mar 2024 21:09:14 +0100 Subject: [PATCH] laravel 11 support 4.0 --- .github/workflows/run-tests.yml | 4 +--- .gitignore | 1 + composer.json | 6 +++--- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 5ea0807..4265da9 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -14,7 +14,7 @@ jobs: matrix: os: [ubuntu-latest, windows-latest] php: [8.3, 8.2, 8.1] - laravel: [11.*, 10.*, 9.*, 8.*] + laravel: [11.*, 10.*, 9.*] stability: [prefer-lowest, prefer-stable] include: - laravel: 11.* @@ -23,8 +23,6 @@ jobs: testbench: 8.* - laravel: 9.* testbench: 7.* - - laravel: 8.* - testbench: 6.27 exclude: - php: 8.1 laravel: 11.* diff --git a/.gitignore b/.gitignore index 83c9b9f..ffbe1ac 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ phpstan.neon testbench.yaml vendor node_modules +.phpunit.cache diff --git a/composer.json b/composer.json index f204d57..4e24480 100644 --- a/composer.json +++ b/composer.json @@ -18,14 +18,14 @@ "require": { "php": "^8.1", "doctrine/dbal": "^3.6", - "illuminate/database": "^8.0 || ^9.0 || ^10.0 || ^11.0", - "illuminate/support": "^8.0 || ^9.0 || ^10.0 || ^11.0", + "illuminate/database": "^9.0 || ^10.0 || ^11.0", + "illuminate/support": "^9.0 || ^10.0 || ^11.0", "spatie/laravel-package-tools": "^1.12 || ^1.14" }, "require-dev": { "laravel/pint": "^1.7", "nunomaduro/larastan": "^1.0 || ^2.5", - "orchestra/testbench": "^6.27 || ^7.0 || ^8.0 || ^9.0", + "orchestra/testbench": "^7.0 || ^8.0 || ^9.0", "pestphp/pest": "^1.22 || ^2.0", "pestphp/pest-plugin-laravel": "^1.22 || ^2.0", "phpstan/extension-installer": "^1.2",