diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 4accda4..3b39eae 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -9,10 +9,12 @@ jobs: fail-fast: false matrix: os: [ ubuntu-latest ] - php: [ 7.4, 8.0, 8.1, 8.2 ] - laravel: [ 6.*, 7.*, 8.*, 9.*, 10.* ] + php: [ 7.4, 8.0, 8.1, 8.2, 8.3 ] + laravel: [ 6.*, 7.*, 8.*, 9.*, 10.*, 11.* ] dependency-version: [ prefer-stable ] include: + - testbench: 9.* + laravel: 11.* - testbench: 8.* laravel: 10.* - testbench: 7.* @@ -36,8 +38,12 @@ jobs: laravel: 9.* - php: 7.4 laravel: 10.* + - php: 7.4 + laravel: 11.* - php: 8.0 laravel: 10.* + - php: 8.0 + laravel: 11.* name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }} diff --git a/composer.json b/composer.json index b82fc65..9e317eb 100644 --- a/composer.json +++ b/composer.json @@ -21,15 +21,15 @@ ], "require": { "php": "^7.4|^8.0", - "illuminate/broadcasting": "~6.0|~7.0|~8.0|~9.0|~10.0", + "illuminate/broadcasting": "~6.0|~7.0|~8.0|~9.0|~10.0|~11.0", "lcobucci/jwt": "~4.0", "symfony/mercure": "~0.4" }, "require-dev": { "larapack/dd": "^1.0", - "orchestra/testbench": "~4.0|~5.0|~6.0|~7.0|~8.0", + "orchestra/testbench": "~4.0|~5.0|~6.0|~7.0|~8.0|~9.0", "phpunit/phpunit": "^9.3", - "symfony/process": "~4.4|~5.0|~6.0" + "symfony/process": "~4.4|~5.0|~6.0|~7.0" }, "minimum-stability": "dev", "prefer-stable": true,