diff --git a/.travis.yml b/.travis.yml index 769f7ae..571a216 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,6 +10,14 @@ matrix: env: ILLUMINATE_VERSION=5.7.* - php: 7.2 env: ILLUMINATE_VERSION=5.7.* + - php: 7.3 + env: ILLUMINATE_VERSION=5.7.* + - php: 7.1 + env: ILLUMINATE_VERSION=5.8.* + - php: 7.2 + env: ILLUMINATE_VERSION=5.8.* + - php: 7.3 + env: ILLUMINATE_VERSION=5.8.* before_install: travis_retry composer require "illuminate/database:${ILLUMINATE_VERSION}" "illuminate/events:${ILLUMINATE_VERSION}" --no-update -v diff --git a/README.md b/README.md index 3829129..02bf7c4 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Laravel Make User -## v4.0.0 +## v4.1.0 [![Build Status](https://travis-ci.org/michaeldyrynda/laravel-make-user.svg?branch=master)](https://travis-ci.org/michaeldyrynda/laravel-make-user) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/michaeldyrynda/laravel-make-user/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/michaeldyrynda/laravel-make-user/?branch=master) @@ -11,7 +11,7 @@ ## Introduction -Out of the box, Laravel makes it really simple to scaffold out with its [authentication quickstart](https://laravel.com/docs/5.7/authentication#authentication-quickstart). Whilst this makes it really easy to register and authenticate users, for many of the applications I find myself building, we usually remove the ability for visitors to register themselves. +Out of the box, Laravel makes it really simple to scaffold out with its [authentication quickstart](https://laravel.com/docs/5.8/authentication#authentication-quickstart). Whilst this makes it really easy to register and authenticate users, for many of the applications I find myself building, we usually remove the ability for visitors to register themselves. I still need a way to get users into those applications, however, and whilst they're in early development this usually involves firing up Laravel Tinker. This can be a tedious process, and one that I repeat many times over. @@ -25,6 +25,7 @@ Laravel | Package 5.5.* | 2.0.* 5.6.* | 3.0.* 5.7.* | 4.0.* +5.8.* | 5.0.* ## Code Samples diff --git a/composer.json b/composer.json index f532206..4623551 100644 --- a/composer.json +++ b/composer.json @@ -12,11 +12,11 @@ ], "require": { "php": "^7.1.3", - "illuminate/support": "5.7.*", - "illuminate/console": "5.7.*", - "illuminate/database": "5.7.*", - "illuminate/auth": "5.7.*", - "illuminate/notifications": "5.7.*" + "illuminate/support": "~5.7", + "illuminate/console": "~5.7", + "illuminate/database": "~5.7", + "illuminate/auth": "~5.7", + "illuminate/notifications": "~5.7" }, "autoload": { "psr-4": {