From 09a6d8a0457038e2d672ab57ed54e459103ba1f1 Mon Sep 17 00:00:00 2001 From: Mohd Saqueib Ansari Date: Mon, 14 Sep 2020 09:17:40 +0800 Subject: [PATCH] laravel 8 support (#18) * laravel 8 support * updated changelog --- .travis.yml | 2 +- CHANGELOG.md | 3 +++ composer.json | 4 ++-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index d99681c2..8f6ef5b4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ language: php php: - - 7.2 + - 7.3 before_script: - travis_retry composer self-update diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e3d2789..c64d8fa4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ All notable changes to `qcod/laravel-settings` will be documented in this file +## 1.0.9 - 2020-09-24 +- Laravel 8 support + ## 1.0.8 - 2020-03-22 - Laravel 7 support diff --git a/composer.json b/composer.json index fcfe5df2..2cea8eef 100644 --- a/composer.json +++ b/composer.json @@ -18,8 +18,8 @@ } ], "require": { - "php": "^7.2", - "laravel/framework": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0" + "php": "^7.3", + "laravel/framework": "~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0|^8.0" }, "require-dev": { "orchestra/testbench": "3.8.*|4.*|5.*",