diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 49b2291..af94b9b 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.*,8.*] + laravel_version: [5.5.*,6.*,7.*,8.*,9.*] 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 e495d59..be8f154 100644 --- a/composer.json +++ b/composer.json @@ -23,7 +23,7 @@ } ], "require": { - "illuminate/database": "^5.5|^6.0|^7.0|^8.0", + "illuminate/database": "^5.5|^6.0|^7.0|^8.0|^9.0", "venturecraft/revisionable": "1.*" }, "require-dev": { @@ -42,4 +42,4 @@ }, "minimum-stability": "dev", "prefer-stable": true -} \ No newline at end of file +}