From cfd1189390c5e9f36ec570e556075a86832bee6e Mon Sep 17 00:00:00 2001 From: Lazarus Odhiambo Date: Mon, 8 Sep 2025 17:47:39 +0300 Subject: [PATCH] chore: add Laravel 12 support - Update illuminate/http and illuminate/support to support ^11.0|^12.0 - Update orchestra/testbench to support ^9.8|^10.0 - Maintains backward compatibility with Laravel 11 - Enables forward compatibility with Laravel 12 - Update php to support ^8.2.0 onwards --- composer.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index b173dbd..f3a1db3 100644 --- a/composer.json +++ b/composer.json @@ -17,14 +17,14 @@ } ], "require": { - "php": "^8.3.0", + "php": "^8.2.0", "ext-zlib": "*", - "illuminate/http": "^11.0", - "illuminate/support": "^11.0" + "illuminate/http": "^11.0|^12.0", + "illuminate/support": "^11.0|^12.0" }, "require-dev": { "laravel/pint": "^1.18.1", - "orchestra/testbench": "^9.8", + "orchestra/testbench": "^9.8|^10.0", "pestphp/pest": "^3.7", "pestphp/pest-plugin-type-coverage": "^3.1", "phpstan/phpstan": "^1.12.7", @@ -71,4 +71,4 @@ }, "minimum-stability": "dev", "prefer-stable": true -} +} \ No newline at end of file