diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index e860d16..63bf8b9 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -9,10 +9,12 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest] - php: [8.2, 8.1 8.0] - laravel: [10.*, 9.*, 8.*] + php: [8.3, 8.2, 8.1, 8.0] + laravel: [11.*, 10.*, 9.*, 8.*] stability: [prefer-stable] include: + - laravel: 11.* + testbench: 9.* - laravel: 10.* testbench: 8.* - laravel: 9.* @@ -20,8 +22,12 @@ jobs: - laravel: 8.* testbench: 6.23 exclude: - - laravel: 10.* - php: 8.0 + - laravel: 11.* + php: 8.1 + - laravel: 11.* + php: 8.0 + - laravel: 10.* + php: 8.0 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} diff --git a/composer.json b/composer.json index e1d0954..f55e2d7 100644 --- a/composer.json +++ b/composer.json @@ -17,12 +17,12 @@ "homepage": "https://github.com/spatie/laravel-sluggable", "require": { "php": "^8.0", - "illuminate/database": "^8.0|^9.0|^10.0", - "illuminate/support": "^8.0|^9.0|^10.0" + "illuminate/database": "^8.0|^9.0|^10.0|^11.0", + "illuminate/support": "^8.0|^9.0|^10.0|^11.0" }, "require-dev": { - "orchestra/testbench": "^6.23|^7.0|^8.0", - "pestphp/pest": "^1.20", + "orchestra/testbench": "^6.23|^7.0|^8.0|^9.0", + "pestphp/pest": "^1.20|^2.0", "spatie/laravel-translatable": "^5.0|^6.0" }, "minimum-stability": "dev",