diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ffa6010c..cb8289b8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,7 +14,10 @@ jobs: fail-fast: true matrix: php: [7.2, 7.3, 7.4] - laravel: [^6.0, ^7.0] + laravel: [^6.0, ^7.0, ^8.0] + exclude: + - php: 7.2 + laravel: ^8.0 name: P${{ matrix.php }} - L${{ matrix.laravel }} diff --git a/composer.json b/composer.json index 22322791..d23ca7d5 100644 --- a/composer.json +++ b/composer.json @@ -16,13 +16,13 @@ "require": { "php": "^7.2", "ext-json": "*", - "illuminate/contracts": "^6.9|^7.0", - "illuminate/database": "^6.9|^7.0", - "illuminate/support": "^6.9|^7.0" + "illuminate/contracts": "^6.9|^7.0|^8.0", + "illuminate/database": "^6.9|^7.0|^8.0", + "illuminate/support": "^6.9|^7.0|^8.0" }, "require-dev": { "mockery/mockery": "^1.0", - "orchestra/testbench": "^4.0|^5.0", + "orchestra/testbench": "^4.0|^5.0|^6.0", "phpunit/phpunit": "^8.0" }, "autoload": {