diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index c54fd5f..7249e10 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -16,13 +16,15 @@ jobs: fail-fast: true matrix: os: [ ubuntu-latest ] - php: [ 8.0, 8.1 ] - laravel: [ "^9.0" ] + php: [ 8.0, 8.1, 8.2 ] + laravel: [ "^9.0", "^10.0" ] enum: [ "^5.0", "^6.0" ] stability: [ prefer-lowest, prefer-stable ] include: - laravel: "^9.0" testbench: "^7.0" + - laravel: "^10.0" + testbench: "^8.0" name: P${{ matrix.php }} - L${{ matrix.laravel }} - E${{ matrix.enum }} - ${{ matrix.stability }} - ${{ matrix.os }} diff --git a/composer.json b/composer.json index 90330da..f7004d3 100644 --- a/composer.json +++ b/composer.json @@ -28,15 +28,15 @@ "require": { "php": "^8.0", "bensampo/laravel-enum": "^5.0|^6.0", - "illuminate/support": "^9.0", + "illuminate/support": "^9.0|^10.0", "laravel/nova": "^4.0" }, "require-dev": { "joshgaber/novaunit": "^3.0", "laravel/pint": "^1.2", "mockery/mockery": "^1.3.3", - "nunomaduro/collision": "^6.1", - "orchestra/testbench": "^7.0", + "nunomaduro/collision": "^6.1|^7.0", + "orchestra/testbench": "^7.0|^8.0", "phpunit/phpunit": "^9.3.3", "symfony/var-dumper": "^6.0" },