diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9fba1ea..a2c69b8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,15 +12,17 @@ on: jobs: build: - runs-on: ubuntu-latest strategy: fail-fast: true matrix: php: [8.2, 8.3, 8.4] - laravel: [11, 12] + laravel: [11, 12, 13] phpunit: ['10.5', '11.0'] + exclude: + - laravel: '13' + php: 8.2 steps: - name: Checkout Code diff --git a/composer.json b/composer.json index 1889a3f..6be8e96 100644 --- a/composer.json +++ b/composer.json @@ -26,12 +26,12 @@ "php": "^8.2", "ext-json": "*", "cloudcreativity/json-api-testing": "^6.1", - "illuminate/http": "^11.0|^12.0", - "illuminate/support": "^11.0|^12.0", - "illuminate/testing": "^11.0|^12.0" + "illuminate/http": "^11.0|^12.0|^13.0", + "illuminate/support": "^11.0|^12.0|^13.0", + "illuminate/testing": "^11.0|^12.0|^13.0" }, "require-dev": { - "laravel/framework": "^11.0|^12.0", + "laravel/framework": "^11.0|^12.0|^13.0", "phpunit/phpunit": "^10.5|^11.0" }, "autoload": {