diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d944612..2d11a8c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,8 +10,11 @@ jobs: strategy: fail-fast: true matrix: - php: [ 8.1, 8.2 ] - laravel: [ ^10.0 ] + php: [ 8.1, 8.2, 8.3 ] + laravel: [ ^10.0, ^11.0 ] + exclude: + - php: 8.1 + laravel: ^11.0 name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} diff --git a/composer.json b/composer.json index 54878a6..b16f98a 100644 --- a/composer.json +++ b/composer.json @@ -10,13 +10,13 @@ } ], "require": { - "php": "^8.1|^8.2", - "blade-ui-kit/blade-icons": "^1.5", - "illuminate/support": "^10.0" + "php": "^8.1|^8.2|^8.3", + "blade-ui-kit/blade-icons": "^1.6", + "illuminate/support": "^10.0|^11.0" }, "require-dev": { - "phpunit/phpunit": "^10.0", - "orchestra/testbench": "^8.0" + "phpunit/phpunit": "^10.0|^11.0", + "orchestra/testbench": "^8.0|^9.0" }, "autoload": { "psr-4": {