diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ca94a6b..888db68 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,12 +15,18 @@ jobs: strategy: fail-fast: false matrix: - php: [ 8.0, 8.1, 8.2 ] - laravel: [ '^9.0', '^10.0' ] + php: [ 8.0, 8.1, 8.2, 8.3 ] + laravel: [ '^9.0', '^10.0', '^11.0' ] dependency-version: [prefer-lowest, prefer-stable] exclude: - - php: 8.0 - laravel: '^10.0' + - laravel: '^9.0' + php: 8.3 + - laravel: '^10.0' + php: 8.0 + - laravel: '^11.0' + php: 8.0 + - laravel: '^11.0' + php: 8.1 name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - ${{ matrix.dependency-version }} diff --git a/composer.json b/composer.json index ae0d23b..ca8d5ad 100644 --- a/composer.json +++ b/composer.json @@ -11,15 +11,15 @@ ], "require": { "php": "^8.0", - "illuminate/console": "^9.0 || ^10.0", - "illuminate/filesystem": "^9.0 || ^10.0", - "illuminate/support": "^9.0 || ^10.0", - "illuminate/translation": "^9.0 || ^10.0", - "illuminate/view": "^9.0 || ^10.0", + "illuminate/console": "^9.0 || ^10.0 || ^11.0", + "illuminate/filesystem": "^9.0 || ^10.0 || ^11.0", + "illuminate/support": "^9.0 || ^10.0 || ^11.0", + "illuminate/translation": "^9.0 || ^10.0 || ^11.0", + "illuminate/view": "^9.0 || ^10.0 || ^11.0", "nikic/php-parser": "^4.18 || ^5.0" }, "require-dev": { - "orchestra/testbench": "^7.3 || ^8.0", + "orchestra/testbench": "^7.3 || ^8.0 || ^9.0", "phpunit/phpunit": "^9.5" }, "autoload": {