diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 4f935dd..ce1e584 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -13,12 +13,14 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest, windows-latest] - php: [8.1, 8.2] - laravel: [10.*] + php: [8.2] + laravel: [10.*, 11.*] stability: [prefer-lowest, prefer-stable] include: - laravel: 10.* testbench: ^8.0 + - laravel: 11.* + testbench: ^9.0 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} diff --git a/.gitignore b/.gitignore index 96e3979..32208be 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ vendor node_modules .php-cs-fixer.cache phpunit.xml.dist.bak +.phpunit.cache diff --git a/composer.json b/composer.json index afb287d..e42898b 100644 --- a/composer.json +++ b/composer.json @@ -21,7 +21,7 @@ }, "require-dev": { "nunomaduro/collision": "^6.3||^7.0||^8.1.1", - "orchestra/testbench": "^7.7||^8.0||^9.0.0", + "orchestra/testbench": "^7.7||^8.0||^9.0", "phpunit/phpunit": "^9.5.24||^10.0||^11.0", "rector/rector": "^1.0", "spatie/laravel-ray": "^1.30", @@ -40,7 +40,7 @@ }, "scripts": { "psalm": "vendor/bin/psalm", - "test": "./vendor/bin/testbench package:test --parallel --no-coverage", + "test": "./vendor/bin/testbench package:test --no-coverage", "test-coverage": "vendor/bin/phpunit --coverage-html coverage" }, "config": {