From 7cab6e4c0683e66c6f71060e4a5f2dc1327eff18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Novotn=C3=BD?= Date: Wed, 25 Mar 2020 14:48:39 +0100 Subject: [PATCH] Allow Laravel ^7.0 --- CHANGELOG.md | 5 +++++ composer.json | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f3c03c..cfff37d 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [1.1.0] - 2020-03-25 +### Added +- Added support for Laravel ^7.0 + + ## [1.0.1] - 2020-01-16 ### Changed - Changed support for Laravel ^5.3|^6.0 diff --git a/composer.json b/composer.json index 4c69055..1349553 100755 --- a/composer.json +++ b/composer.json @@ -22,9 +22,9 @@ "require": { "ext-memcached": "*", "php": ">=7.1.3", - "illuminate/cache": "^5.3|^6.0", - "illuminate/session": "^5.3|^6.0", - "illuminate/support": "^5.3|^6.0" + "illuminate/cache": "^5.3|^6.0|^7.0", + "illuminate/session": "^5.3|^6.0|^7.0", + "illuminate/support": "^5.3|^6.0|^7.0" }, "require-dev": { "phpunit/phpunit": "^7.0|^8.0",