Skip to content

Commit b4bb256

Browse files
Merge pull request #9 from 0x15f/master
Laravel v5.8.* Support
2 parents ad8e7ee + ced3018 commit b4bb256

File tree

3 files changed

+16
-7
lines changed

3 files changed

+16
-7
lines changed

.travis.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,14 @@ matrix:
1010
env: ILLUMINATE_VERSION=5.7.*
1111
- php: 7.2
1212
env: ILLUMINATE_VERSION=5.7.*
13+
- php: 7.3
14+
env: ILLUMINATE_VERSION=5.7.*
15+
- php: 7.1
16+
env: ILLUMINATE_VERSION=5.8.*
17+
- php: 7.2
18+
env: ILLUMINATE_VERSION=5.8.*
19+
- php: 7.3
20+
env: ILLUMINATE_VERSION=5.8.*
1321

1422
before_install: travis_retry composer require "illuminate/database:${ILLUMINATE_VERSION}" "illuminate/events:${ILLUMINATE_VERSION}" --no-update -v
1523

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Laravel Make User
2-
## v4.0.0
2+
## v4.1.0
33

44
[![Build Status](https://travis-ci.org/michaeldyrynda/laravel-make-user.svg?branch=master)](https://travis-ci.org/michaeldyrynda/laravel-make-user)
55
[![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 @@
1111

1212
## Introduction
1313

14-
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.
14+
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.
1515

1616
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.
1717

@@ -25,6 +25,7 @@ Laravel | Package
2525
5.5.* | 2.0.*
2626
5.6.* | 3.0.*
2727
5.7.* | 4.0.*
28+
5.8.* | 5.0.*
2829

2930
## Code Samples
3031

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
],
1313
"require": {
1414
"php": "^7.1.3",
15-
"illuminate/support": "5.7.*",
16-
"illuminate/console": "5.7.*",
17-
"illuminate/database": "5.7.*",
18-
"illuminate/auth": "5.7.*",
19-
"illuminate/notifications": "5.7.*"
15+
"illuminate/support": "~5.7",
16+
"illuminate/console": "~5.7",
17+
"illuminate/database": "~5.7",
18+
"illuminate/auth": "~5.7",
19+
"illuminate/notifications": "~5.7"
2020
},
2121
"autoload": {
2222
"psr-4": {

0 commit comments

Comments
 (0)