diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c1bb115..834b758 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -19,8 +19,11 @@ jobs: strategy: fail-fast: true matrix: - php: [ 8.2, 8.3, 8.4, 8.5 ] - laravel: [ 11, 12 ] + php: [8.2, 8.3, 8.4, 8.5] + laravel: [11, 12, 13] + exclude: + - laravel: '13' + php: 8.2 steps: - name: Checkout Code diff --git a/composer.json b/composer.json index bfbf592..f902240 100644 --- a/composer.json +++ b/composer.json @@ -25,10 +25,10 @@ "require": { "php": "^8.2", "ext-json": "*", - "illuminate/auth": "^11.0|^12.0", - "illuminate/contracts": "^11.0|^12.0", - "illuminate/http": "^11.0|^12.0", - "illuminate/support": "^11.0|^12.0" + "illuminate/auth": "^11.0|^12.0|^13.0", + "illuminate/contracts": "^11.0|^12.0|^13.0", + "illuminate/http": "^11.0|^12.0|^13.0", + "illuminate/support": "^11.0|^12.0|^13.0" }, "require-dev": { "phpunit/phpunit": "^10.5"