From 6ebaa36ca8fd8fe096f2384ac9c6580ae8b4ef07 Mon Sep 17 00:00:00 2001 From: SuperDJ <6484766+SuperDJ@users.noreply.github.com> Date: Tue, 25 Feb 2025 11:08:16 +0000 Subject: [PATCH] Add Laravel 12 and PHP 8.3 support --- .github/workflows/ci.yml | 4 ++++ composer.json | 12 ++++++------ 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ef40e072..7ff87167 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,11 @@ jobs: strategy: matrix: include: + - laravel: "^10.0" + php: "8.3" - laravel: "^11.0" + php: "8.3" + - laravel: "^12.0" php: "8.4" steps: diff --git a/composer.json b/composer.json index 18326bac..dcb33ef3 100644 --- a/composer.json +++ b/composer.json @@ -16,9 +16,9 @@ } ], "require": { - "php": "^8.4", + "php": "^8.3|^8.4", "ext-json": "*", - "illuminate/support": "^10.1|^11.3", + "illuminate/support": "^10.1|^11.3|^12.0", "laravel/tinker": "^2.0", "facade/ignition-contracts": "^1.0.2", "spatie/ignition": "^1.4", @@ -29,13 +29,13 @@ "laravel/prompts": "0.*" }, "require-dev": { - "laravel/framework": "^10.1|^11.3", - "orchestra/testbench": "^8.0|^9.0", + "laravel/framework": "^10.1|^11.3|^12.0", + "orchestra/testbench": "^8.0|^9.0|^10.0", "league/flysystem-aws-s3-v3": "^3.12.2", "doctrine/dbal": "^3.6.0", "spatie/valuestore": "^1.2.5", - "pestphp/pest": "^2.0", - "larastan/larastan": "^3.0", + "pestphp/pest": "^2.0|^3.0", + "larastan/larastan": "^2.9|^3.0", "aws/aws-sdk-php-laravel": "~3.0" }, "autoload": {