diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index fa24b86..31759a6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -20,15 +20,20 @@ jobs: strategy: fail-fast: true matrix: - os: [ ubuntu-latest, windows-latest ] - php: [ 8.2, 8.3, 8.4, 8.5 ] - laravel: [ '11.*', '12.*' ] - stability: [ prefer-lowest, prefer-stable ] + os: [ubuntu-latest, windows-latest] + php: [8.2, 8.3, 8.4, 8.5] + laravel: ['11.*', '12.*', '13.*'] + stability: [prefer-lowest, prefer-stable] include: - laravel: 11.* testbench: 9.* - laravel: 12.* testbench: 10.* + - laravel: 13.* + testbench: 11.* + exclude: + - laravel: 13.* + php: 8.2 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} diff --git a/composer.json b/composer.json index d2853ca..1ae34c5 100644 --- a/composer.json +++ b/composer.json @@ -20,8 +20,8 @@ "homepage": "https://github.com/saloonphp/laravel-plugin", "require": { "php": "^8.2", - "illuminate/console": "^11.0 || ^v12.39.0", - "illuminate/support": "^11.0 || ^12.39.0", + "illuminate/console": "^11.0 || ^v12.39.0 || ^13.0", + "illuminate/support": "^11.0 || ^12.39.0 || ^13.0", "saloonphp/saloon": "^3.5", "symfony/finder": "^6.4 || ^7.0" }, @@ -29,7 +29,7 @@ "friendsofphp/php-cs-fixer": "^3.48", "laravel/pulse": "^1.4", "laravel/telescope": "^5.16", - "orchestra/testbench": "^9.15 || ^10.7", + "orchestra/testbench": "^9.15 || ^10.7 || ^11.0", "pestphp/pest": "^3.0|^4.0", "phpstan/phpstan": "^1.10.57|^2.0.2" },