diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index ba16765..02c3e9e 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: php: [8.1, 8.2, 8.3, 8.4] - laravel: [10.*, 11.*, 12.*] + laravel: [10.*, 11.*, 12.*, 13.*] dependency-version: [prefer-stable] os: [ubuntu-latest] include: @@ -18,11 +18,17 @@ jobs: testbench: ^9.0 - laravel: 12.* testbench: ^10.0 + - laravel: 13.* + testbench: ^11.0 exclude: + - php: 8.1 + laravel: 11.* - php: 8.1 laravel: 12.* - php: 8.1 - laravel: 11.* + laravel: 13.* + - php: 8.2 + laravel: 13.* - php: 8.4 laravel: 10.* diff --git a/composer.json b/composer.json index 70c4bc3..855193f 100644 --- a/composer.json +++ b/composer.json @@ -11,15 +11,15 @@ ], "require": { "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0", - "laravel/framework": "^10.0 || ^11.0 || ^12.0", + "laravel/framework": "^10.0 || ^11.0 || ^12.0 || ^13.0", "roach-php/core": "^2.0 || ^3.0 || dev-main", "spatie/laravel-package-tools": "^1.11" }, "require-dev": { "ergebnis/composer-normalize": "^2.15", "ergebnis/php-cs-fixer-config": "^6.19", - "orchestra/testbench": "^7.0 || ^8.0 || ^9.0 || ^10.0", - "phpunit/phpunit": "^10.0 || ^11.0", + "orchestra/testbench": "^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0", + "phpunit/phpunit": "^10.0 || ^11.0 || ^12.0", "roave/security-advisories": "dev-latest", "spatie/phpunit-snapshot-assertions": "^5.0" },