diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ae0b580..54a6d66 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,10 +11,12 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php: ['7.4', '8.0', '8.1'] - laravel: [ '8.*', '9.*' ] + php: ['7.4', '8.0', '8.1', '8.2'] + laravel: [ '8.*', '9.*', '10.*' ] stability: [ prefer-lowest, prefer-stable ] include: + - laravel: '10.*' + testbench: '8.*' - laravel: '9.*' testbench: '7.*' - laravel: '8.*' @@ -22,6 +24,10 @@ jobs: exclude: - laravel: 9.* php: 7.4 + - laravel: 10.* + php: 7.4 + - laravel: 10.* + php: 8.0 name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - ${{ matrix.stability }} diff --git a/composer.json b/composer.json index 14e14d7..f2d13a1 100644 --- a/composer.json +++ b/composer.json @@ -14,16 +14,16 @@ } }, "require": { - "php": "^7.4|^8.0|^8.1", - "illuminate/support": "^8.16|^9.0" + "php": "^7.4|~8.0|~8.1|~8.2", + "illuminate/support": "^8.16|^9.0|^10.0" }, "require-dev": { "ext-soap": "*", "mockery/mockery": "^1.4", - "orchestra/testbench": "^6.24|^7.0", + "orchestra/testbench": "^6.24|^7.0|^8.0", "pestphp/pest": "^1.11", "phpoption/phpoption": "^1.8.1", - "phpunit/phpunit": "^9.4", + "phpunit/phpunit": "^9.5", "spatie/ray": "^1.17" }, "prefer-stable": true, @@ -46,5 +46,10 @@ "Soap": "RicorocksDigitalAgency\\Soap\\Facades\\Soap" } } + }, + "config": { + "allow-plugins": { + "pestphp/pest-plugin": true + } } }