From ff18638902bb8806d9883f7ba9a827901bbf7668 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Nikolaou?= Date: Sat, 17 Feb 2018 19:34:43 +0200 Subject: [PATCH] Add support for Laravel 5.6 Closes #11 --- .travis.yml | 1 + CHANGELOG.md | 4 ++++ README.md | 2 +- composer.json | 6 +++--- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index b577ed6..13b24f9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,7 @@ php: - 5.6 - 7.0 - 7.1 + - 7.2 before_script: - travis_retry composer self-update diff --git a/CHANGELOG.md b/CHANGELOG.md index 6210d13..d3f411d 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All Notable changes to `laravel-state-machine` will be documented in this file +## 1.2.4 - 2018-02-17 + +- Add support for Laravel 5.6 + ## 1.2.3 - 2017-09-28 - Don't merge default configuration diff --git a/README.md b/README.md index 7c4ed9f..2f3cf09 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ You can install the package via composer. This package requires Laravel 5.1 or h composer require sebdesign/laravel-state-machine ``` -Laravel 5.5 uses package auto-discovery, so doesn't require you to manually add the ServiceProvider and the facade. If you don't use auto-discovery or you are using an older version, add the service provider and the facade in config/app.php. +Since version 5.5, Laravel uses package auto-discovery, so you don't need to manually add the ServiceProvider and the facade. If you don't use auto-discovery or you are using an older version, add the service provider and the facade in config/app.php. ``` php