diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e8db2e3..bd19ae9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: php_version: [7.2] - laravel_version: [5.5.*,6.*, 7.*] + laravel_version: [5.5.*,6.*, 7.*, 8.*] steps: - name: Checkout commit @@ -33,4 +33,4 @@ jobs: run: composer update --no-interaction illuminate/database:^${{ matrix.laravel_version }} - name: Run PHPUnit - run: ./vendor/bin/phpunit \ No newline at end of file + run: ./vendor/bin/phpunit diff --git a/composer.json b/composer.json index 3960166..1987022 100644 --- a/composer.json +++ b/composer.json @@ -23,7 +23,7 @@ } ], "require": { - "illuminate/database": "^5.5|^6.0|^7.0" + "illuminate/database": "^5.5|^6.0|^7.0|^8.0" }, "require-dev": { "orchestra/testbench": "*",