From 0dcccb0edc686eb4f93952c44507af4f9d5f0a03 Mon Sep 17 00:00:00 2001 From: atymic Date: Sun, 26 Apr 2020 19:01:15 +1000 Subject: [PATCH] fix: support laravel 7 (#14) --- .travis.yml | 3 +-- composer.json | 6 +++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index d6b215b..ccc471a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,10 +6,9 @@ php: - 7.4 env: - - LARAVEL_VERSION=5.6.* - - LARAVEL_VERSION=5.7.* - LARAVEL_VERSION=5.8.* - LARAVEL_VERSION=^6.0 + - LARAVEL_VERSION=^7.0 install: - composer require laravel/laravel:${LARAVEL_VERSION} diff --git a/composer.json b/composer.json index aacc372..29c4fa9 100644 --- a/composer.json +++ b/composer.json @@ -22,9 +22,9 @@ "require": { "php": "^7.2.0", "guzzlehttp/guzzle": "^6.2", - "illuminate/notifications": "^5.6|^6.0", - "illuminate/queue": "^5.6|^6.0", - "illuminate/support": "^5.6|^6.0" + "illuminate/notifications": "^5.6|^6.0|^7.0", + "illuminate/queue": "^5.6|^6.0|^7.0", + "illuminate/support": "^5.6|^6.0|^7.0" }, "require-dev": { "mockery/mockery": "^1.3",