diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 9a883a7..4e50088 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -16,7 +16,7 @@ jobs: strategy: matrix: php: [8.3, 8.4, 8.5] - laravel: [12.*] + laravel: [12.*, 13.*] stability: [prefer-lowest, prefer-stable] os: [ubuntu-latest] diff --git a/composer.json b/composer.json index 015d800..3f01208 100644 --- a/composer.json +++ b/composer.json @@ -30,14 +30,14 @@ "require": { "php": "^8.3", "pixelfear/composer-dist-plugin": "^0.1.5", - "statamic/cms": "^6.4" + "statamic/cms": "^6.5" }, "require-dev": { "laravel/pint": "dev-main", - "orchestra/testbench": "^10.8", + "orchestra/testbench": "^10.8 || ^11.0", "pestphp/pest": "^3.0 || ^4.1", "pestphp/pest-plugin-laravel": "^3.0 || ^4.0", - "spatie/laravel-ray": "^1.43" + "spatie/laravel-ray": "^1.43.6" }, "config": { "optimize-autoloader": true, @@ -47,5 +47,7 @@ "pixelfear/composer-dist-plugin": true, "pestphp/pest-plugin": true } - } + }, + "minimum-stability": "dev", + "prefer-stable": true }