diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 7656406..5e7767d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,6 +9,22 @@ jobs: fail-fast: false matrix: include: + - laravel: 11.* + php: 8.2 + testbench: ^9.0 + stability: prefer-stable + - laravel: 11.* + php: 8.2 + testbench: ^9.0 + stability: prefer-lowest + - laravel: 10.* + php: 8.1 + testbench: ^8.0 + stability: prefer-stable + - laravel: 10.* + php: 8.1 + testbench: ^8.0 + stability: prefer-lowest - laravel: 9.* php: 8.1 testbench: ^7.0 @@ -74,4 +90,4 @@ jobs: "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update composer update --${{ matrix.stability }} --prefer-dist --no-interaction - name: Execute tests - run: composer pest \ No newline at end of file + run: composer pest diff --git a/.gitignore b/.gitignore index 713b145..d910e05 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ vendor/ composer.lock testing.sh .DS_Store +.phpunit.cache diff --git a/composer.json b/composer.json index a1ca5af..51f77f9 100644 --- a/composer.json +++ b/composer.json @@ -11,7 +11,7 @@ "require": { "php": "^7.3|^8.0", "ext-zip": "*", - "laravel/framework": "^7.0|^8.0|^9.0|^10.0", + "laravel/framework": "^7.0|^8.0|^9.0|^10.0|^11.0", "staudenmeir/eloquent-has-many-deep": "^1.11" }, "require-dev": {