Skip to content

Commit

Permalink
Merge pull request #9 from 0x15f/master
Browse files Browse the repository at this point in the history
Laravel v5.8.* Support
  • Loading branch information
michaeldyrynda authored Apr 5, 2019
2 parents ad8e7ee + ced3018 commit b4bb256
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 7 deletions.
8 changes: 8 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)
Expand All @@ -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.

Expand All @@ -25,6 +25,7 @@ Laravel | Package
5.5.* | 2.0.*
5.6.* | 3.0.*
5.7.* | 4.0.*
5.8.* | 5.0.*

## Code Samples

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down

0 comments on commit b4bb256

Please sign in to comment.