From 9ba8fde4272c4e149fe56f9fa0f42411942a8c5b Mon Sep 17 00:00:00 2001 From: freek Date: Wed, 12 Jan 2022 10:43:40 +0100 Subject: [PATCH] wip --- .github/workflows/run-tests.yml | 4 +++- composer.json | 8 ++++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 141e64c..bb9fc4d 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -10,9 +10,11 @@ jobs: matrix: os: [ubuntu-latest] php: [8.1, 8.0] - laravel: [8.*] + laravel: [9.*, 8.*] dependency-version: [prefer-stable] include: + - laravel: 9.* + testbench: 7.* - laravel: 8.* testbench: ^6.23 diff --git a/composer.json b/composer.json index 1da0ad7..38ae6fa 100644 --- a/composer.json +++ b/composer.json @@ -36,14 +36,14 @@ ], "require": { "php" : "^8.0", - "illuminate/support": "^8.0", - "illuminate/http": "^8.0", - "illuminate/contracts": "^8.0", + "illuminate/support": "^8.0|^9.0", + "illuminate/http": "^8.0|^9.0", + "illuminate/contracts": "^8.0|^9.0", "spatie/laravel-package-tools": "^1.9" }, "require-dev": { "phpunit/phpunit": "^9.5", - "orchestra/testbench": "^6.23", + "orchestra/testbench": "^6.23|^7.0", "spatie/phpunit-snapshot-assertions": "^4.2.7", "spatie/test-time": "^1.2" },