From 20c7b4d75a5bad5295722322b70f64c14999f37a Mon Sep 17 00:00:00 2001 From: Lorand Gombos Date: Tue, 3 Mar 2020 22:02:04 +0200 Subject: [PATCH] Add support for Laravel 7 (#7) --- CHANGELOG.md | 4 ++++ composer.json | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 94f03f0..ad0418e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to `laravel-eloquent-model-uuid` will be documented in this file +## 2.1.0 - 2020-03-03 + +- add support for Laravel 7 + ## 2.0.1 - 2020-02-03 - Make public generate UUID diff --git a/composer.json b/composer.json index 1d93fce..503a850 100644 --- a/composer.json +++ b/composer.json @@ -20,12 +20,12 @@ ], "require": { "php": ">=7.1.3", - "illuminate/database": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0", - "illuminate/support": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0" + "illuminate/database": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0", + "illuminate/support": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0" }, "require-dev": { - "phpunit/phpunit": "^7.5|^8.0", - "orchestra/testbench": "~3.8.0|^4.0", + "phpunit/phpunit": "^7.5|^8.0|^9.0", + "orchestra/testbench": "~3.8.0|^4.0|^5.0", "friendsofphp/php-cs-fixer": "^2.16@dev" }, "autoload": {