diff --git a/.github/workflows/php-test.yaml b/.github/workflows/php-test.yaml index d680c38..ce52307 100644 --- a/.github/workflows/php-test.yaml +++ b/.github/workflows/php-test.yaml @@ -8,11 +8,14 @@ jobs: strategy: fail-fast: false matrix: - laravel: [10, 11, 12] + laravel: [10, 11, 12, 13] php: [8.2, 8.3, 8.4, 8.5] + exclude: + - laravel: 13 + php: 8.2 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: test against Laravel ${{ matrix.laravel }} on PHP ${{ matrix.php }} run: docker build . --build-arg PHP_VERSION=${{ matrix.php }} --build-arg LARAVEL=${{ matrix.laravel }} diff --git a/composer.json b/composer.json index e303622..245dfcc 100644 --- a/composer.json +++ b/composer.json @@ -24,7 +24,7 @@ }, "require-dev": { "larastan/larastan": "^2.0|^3.0", - "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0", + "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0|^11.0", "php-parallel-lint/php-parallel-lint": "^1.4", "phpstan/extension-installer": "^1.4", "phpunit/phpunit": "^9.0|^10.0|^11.0",