diff --git a/.github/workflows/laravel.yml b/.github/workflows/laravel.yml index a6c6bdb1..679f036f 100644 --- a/.github/workflows/laravel.yml +++ b/.github/workflows/laravel.yml @@ -9,12 +9,17 @@ jobs: fail-fast: true matrix: os: [ ubuntu-latest ] - php: [ 8.1 ] - laravel: [ 10.* ] + php: [ 8.1, 8.2 ] + laravel: [ 10.*, 11.* ] stability: [ prefer-stable ] include: - laravel: 10.* testbench: ^8.0 + - laravel: 11.* + testbench: ^9.0 + exclude: + - laravel: 11.* + php: 8.1 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} steps: diff --git a/composer.json b/composer.json index aa1eec17..e1810d6d 100644 --- a/composer.json +++ b/composer.json @@ -19,18 +19,18 @@ "php": "^8.1.0", "ext-json": "*", "doctrine/dbal": "^3.1", - "illuminate/bus": "^9.0|^10.0", - "illuminate/console": "^9.0|^10.0", - "illuminate/contracts": "^9.0|^10.0", - "illuminate/database": "^9.0|^10.0", - "illuminate/events": "^9.0|^10.0", - "illuminate/notifications": "^9.0|^10.0", + "illuminate/bus": "^9.0|^10.0|^11.0", + "illuminate/console": "^9.0|^10.0|^11.0", + "illuminate/contracts": "^9.0|^10.0|^11.0", + "illuminate/database": "^9.0|^10.0|^11.0", + "illuminate/events": "^9.0|^10.0|^11.0", + "illuminate/notifications": "^9.0|^10.0|^11.0", "laravelcollective/html": "^6.0" }, "require-dev": { "mockery/mockery": "^1.0", - "orchestra/testbench" : "^8.0", - "phpunit/phpunit": "^9.0" + "orchestra/testbench" : "^8.0|^9.0", + "phpunit/phpunit": "^9.0|^10.0|^11.0" }, "suggest": { "nexmo/client": "Required for sms notifications."