diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c5632b4..2257e28 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,13 +13,21 @@ jobs: strategy: fail-fast: true matrix: - php: [7.3, 7.4, 8.0, 8.1] - laravel: [8.0, 9.0] + php: [7.3, 7.4, 8.0, 8.1, 8.2] + laravel: [8.0, 9.0, 10.0] exclude: - php: 7.3 laravel: 9.0 + - php: 7.3 + laravel: 10.0 - php: 7.4 laravel: 9.0 + - php: 7.4 + laravel: 10.0 + - php: 8.0 + laravel: 10.0 + - php: 8.2 + laravel: 8.0 name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} @@ -48,4 +56,4 @@ jobs: composer update --prefer-dist --no-interaction --no-progress - name: Execute test suite - run: vendor/bin/phpunit --verbose + run: vendor/bin/phpunit diff --git a/composer.json b/composer.json index ac492ad..612dfe5 100644 --- a/composer.json +++ b/composer.json @@ -12,19 +12,19 @@ } ], "require": { - "php": "^7.3|^8.0", - "illuminate/contracts": "^8.0|^9.0", - "illuminate/database": "^8.0|^9.0", - "illuminate/events": "^8.0|^9.0", - "illuminate/support": "^8.0|^9.0" + "php": "^7.3|^8.0|^8.1", + "illuminate/contracts": "^8.0|^9.0|^10.0", + "illuminate/database": "^8.0|^9.0|^10.0", + "illuminate/events": "^8.0|^9.0|^10.0", + "illuminate/support": "^8.0|^9.0|^10.0" }, "require-dev": { "mockery/mockery": "^1.4.4", "phpunit/phpunit": "^8.5.19|^9.5.8", "psy/psysh": "@stable", "squizlabs/php_codesniffer": "*", - "illuminate/console": "^8.0|^9.0", - "illuminate/filesystem": "^8.0|^9.0" + "illuminate/console": "^8.0|^9.0|^10.0", + "illuminate/filesystem": "^8.0|^9.0|^10.0" }, "autoload": { "psr-4": {