From 4a32ce51ecf0a8652866c9fcfdef131619ead421 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Tue, 11 Mar 2025 13:07:31 +0100 Subject: [PATCH] Laravel 12 support --- .github/workflows/ci.yml | 2 +- composer.json | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2148426..32f10b8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - laravel: [10, 11] + laravel: [10, 11, 12] steps: - uses: actions/checkout@v2 diff --git a/composer.json b/composer.json index fff9205..8350a9f 100644 --- a/composer.json +++ b/composer.json @@ -25,14 +25,14 @@ }, "require": { "php": "^8.2", - "illuminate/support": "^10.0|^11.0", + "illuminate/support": "^10.0|^11.0|^12.0", "archtechx/helpers": "^0.3.2" }, "require-dev": { - "orchestra/testbench": "^8.0|^9.0", - "pestphp/pest": "^2.0", - "phpstan/phpstan": "^1.9.8", - "pestphp/pest-plugin-laravel": "^2.0", + "orchestra/testbench": "^8.0|^9.0|^10.0", + "pestphp/pest": "^2.0|^3.7", + "phpstan/phpstan": "^1.9.8|^2.1", + "pestphp/pest-plugin-laravel": "^2.0|^3.1", "nunomaduro/larastan": "^2.4" }, "extra": {