diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3bbc47e1..e9bebba3 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,14 +16,14 @@ jobs: strategy: matrix: - php: [8.3, 8.4] - laravel: [12.*] + php: [8.3, 8.4, 8.5] + laravel: [13.*, 12.*] stability: [prefer-lowest, prefer-stable] os: [ubuntu-latest] include: - os: windows-latest - php: 8.4 - laravel: 12.* + php: 8.5 + laravel: 13.* stability: prefer-stable name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} diff --git a/composer.json b/composer.json index 90679cdd..f06b0b0c 100644 --- a/composer.json +++ b/composer.json @@ -28,18 +28,20 @@ } }, "require": { - "statamic/cms": "^6.4.1", + "statamic/cms": "^6.5", "pixelfear/composer-dist-plugin": "^0.1.6" }, "require-dev": { - "orchestra/testbench": "^10.0", - "phpunit/phpunit": "^11.5.3", + "orchestra/testbench": "^10.0 || ^11.0", + "phpunit/phpunit": "^11.5.3 || ^12.0", "laravel/pint": "^1.17", - "spatie/laravel-ray": "^1.40" + "spatie/laravel-ray": "^1.43.6" }, "config": { "allow-plugins": { "pixelfear/composer-dist-plugin": true } - } + }, + "minimum-stability": "dev", + "prefer-stable": true }