From e6e9d7f6f7ee382a6f83a28b32d2bad74e6620ce Mon Sep 17 00:00:00 2001 From: smajti1 Date: Sat, 25 Apr 2020 16:14:54 +0200 Subject: [PATCH] add support for laravel 7.* --- CHANGELOG.md | 5 +++++ README.md | 4 ++-- composer.json | 4 ++-- phpunit.xml | 1 - 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d005c7..9e8bad4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. 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.4.0] - 2020-04-25 +### Added +- support `laravel` version `^7.0` + ## [1.3.0] - 2020-02-18 ### Added - added docker container files @@ -46,3 +50,4 @@ And will be changed to non-static [1.1.0]: https://github.com/smajti1/laravel-wizard/compare/v1.0.0...v1.1.0 [1.2.0]: https://github.com/smajti1/laravel-wizard/compare/v1.1.0...v1.2.0 [1.3.0]: https://github.com/smajti1/laravel-wizard/compare/v1.2.0...v1.3.0 +[1.4.0]: https://github.com/smajti1/laravel-wizard/compare/v1.3.0...v1.4.0 diff --git a/README.md b/README.md index 2b0bf64..51634c2 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ simple laravel step-by-step wizard | Version | Laravel Version | Php Version | |---- |----|----| | 1.1 | 5.* | ^7.0 | -| 1.2 | 6.* | ^7.2 | +| ^1.4 | 6.* || 7.* | ^7.2 | ## Install @@ -149,4 +149,4 @@ $wizard variable is now automatic sheared with view ``` ## License -Laravel wizard is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT) \ No newline at end of file +Laravel wizard is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT) diff --git a/composer.json b/composer.json index d087cb3..74755e6 100644 --- a/composer.json +++ b/composer.json @@ -12,7 +12,7 @@ "homepage": "https://github.com/smajti1/laravel-wizard", "require": { "php": "^7.2", - "illuminate/http": "^6.0" + "illuminate/http": "^6.0 || ^7.0" }, "require-dev": { "phpunit/phpunit": "^8.0" @@ -22,4 +22,4 @@ "Smajti1\\Laravel\\": "src/" } } -} \ No newline at end of file +} diff --git a/phpunit.xml b/phpunit.xml index 2c1f382..1a58077 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -8,7 +8,6 @@ convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" - syntaxCheck="false" >