diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 118d76981..899e9a224 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 590633633..0b08fd5fd 100644 --- a/composer.json +++ b/composer.json @@ -31,24 +31,24 @@ "require": { "php": "^8.3", "ext-intl": "*", - "laravel/framework": "^12.0", + "laravel/framework": "^12.0 || ^13.0", "mollie/mollie-api-php": "^2.30.0", "moneyphp/money": "^4.0", "paypal/paypal-checkout-sdk": "^1.0", "pixelfear/composer-dist-plugin": "^0.1.0", "spatie/ignition": "^1.13", - "statamic/cms": "^6.0.0", + "statamic/cms": "^6.5", "stillat/proteus": "^4.0", "stripe/stripe-php": "^13.0" }, "require-dev": { "laravel/pint": "dev-main", - "orchestra/testbench": "^10.8", + "orchestra/testbench": "^10.8 || ^11.0", "pestphp/pest": "^3.0 || ^4.1.4", "pestphp/pest-plugin-laravel": "^3.0 || ^4.0", "spatie/ray": "^1.17", "spatie/test-time": "^1.3", - "statamic-rad-pack/runway": "^9.0.0-alpha.5" + "statamic-rad-pack/runway": "^9.0" }, "config": { "optimize-autoloader": true, @@ -60,5 +60,7 @@ "pixelfear/composer-dist-plugin": true, "pestphp/pest-plugin": true } - } + }, + "minimum-stability": "dev", + "prefer-stable": true }