From af19a09e63ad9ffe1c0b824355b0f7e7b9cf77d5 Mon Sep 17 00:00:00 2001 From: Thomas Spencer Date: Fri, 10 Feb 2023 19:18:15 +0800 Subject: [PATCH] Add support for Laravel 9 (#14) --- changelog.md | 2 ++ composer.json | 5 ++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/changelog.md b/changelog.md index 19aa862..2bd82c5 100644 --- a/changelog.md +++ b/changelog.md @@ -2,9 +2,11 @@ ## Unreleased +* Add support for Laravel 9. * Add support for PHP 8.1. * Drop support for PHP 7.4. * Drop support for Laravel 7. +* Remove `orchestra/testbench` from development dependencies. * Swap build provider from Travis CI to Circle CI. ## 1.0.5 - 2020-03-16 diff --git a/composer.json b/composer.json index e75a199..5767a89 100644 --- a/composer.json +++ b/composer.json @@ -15,8 +15,8 @@ ], "require": { "php": "~8.0.0 || ~8.1.0", - "illuminate/routing": "^8.74", - "illuminate/support": "^8.74", + "illuminate/routing": "^8.74 || ^9.0", + "illuminate/support": "^8.74 || ^9.0", "promphp/prometheus_client_php": "^2.0" }, "autoload": { @@ -37,7 +37,6 @@ }, "require-dev": { "mockery/mockery": "^1.5", - "orchestra/testbench": "^5.8 || ^6.23", "phpunit/phpunit": "^9.6" }, "config": {