Skip to content

Commit 9004764

Browse files
committed
Laravel 5.6 -> Laravel 5.7
1 parent e43948b commit 9004764

File tree

4 files changed

+46
-46
lines changed

4 files changed

+46
-46
lines changed

README.md

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Laravel-Auth
2-
#### Laravel-Auth is a Complete Build of Laravel 5.6 with Email Registration Verification, Social Authentication, User Roles and Permissions, User Profiles, and Admin restricted user management system. Built on Bootstrap 4.
2+
#### Laravel-Auth is a Complete Build of Laravel 5.7 with Email Registration Verification, Social Authentication, User Roles and Permissions, User Profiles, and Admin restricted user management system. Built on Bootstrap 4.
33
[![Build Status](https://travis-ci.org/jeremykenedy/laravel-auth.svg?branch=master)](https://travis-ci.org/jeremykenedy/laravel-auth)
44
[![StyleCI](https://styleci.io/repos/44714043/shield?branch=master)](https://styleci.io/repos/44714043)
55
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/jeremykenedy/laravel-auth/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/jeremykenedy/laravel-auth/?branch=master)
@@ -42,29 +42,29 @@
4242
- [Laravel Auth License](#laravel-auth-license)
4343

4444
### About
45-
Laravel 5.6 with user authentication, registration with email confirmation, social media authentication, password recovery, and captcha protection. Uses offical [Bootstrap 4](http://getbootstrap.com). This also makes full use of Controllers for the routes, templates for the views, and makes use of middleware for routing. Project can be stood up in minutes.
45+
Laravel 5.7 with user authentication, registration with email confirmation, social media authentication, password recovery, and captcha protection. Uses offical [Bootstrap 4](http://getbootstrap.com). This also makes full use of Controllers for the routes, templates for the views, and makes use of middleware for routing. Project can be stood up in minutes.
4646

4747
### Features
48-
#### A [Laravel](http://laravel.com/) 5.6.x with minimal [Bootstrap](http://getbootstrap.com) 4.0.x project.
48+
#### A [Laravel](http://laravel.com/) 5.7.x with minimal [Bootstrap](http://getbootstrap.com) 4.0.x project.
4949

5050
| Laravel-Auth Features |
5151
| :------------ |
52-
|Built on [Laravel](http://laravel.com/) 5.6|
52+
|Built on [Laravel](http://laravel.com/) 5.7|
5353
|Built on [Bootstrap](https://getbootstrap.com/) 4|
5454
|Uses [MySQL](https://github.com/mysql) Database (can be changed)|
55-
|Uses [Artisan](http://laravel.com/docs/5.6/artisan) to manage database migration, schema creations, and create/publish page controller templates|
55+
|Uses [Artisan](http://laravel.com/docs/5.7/artisan) to manage database migration, schema creations, and create/publish page controller templates|
5656
|Dependencies are managed with [COMPOSER](https://getcomposer.org/)|
5757
|Laravel Scaffolding **User** and **Administrator Authentication**.|
5858
|User [Socialite Logins](https://github.com/laravel/socialite) ready to go - See API list used below|
5959
|[Google Maps API v3](https://developers.google.com/maps/documentation/javascript/) for User Location lookup and Geocoding|
6060
|CRUD (Create, Read, Update, Delete) Themes Management|
6161
|CRUD (Create, Read, Update, Delete) User Management|
62-
|Robust [Laravel Logging](https://laravel.com/docs/5.6/errors#logging) with admin UI using MonoLog|
62+
|Robust [Laravel Logging](https://laravel.com/docs/5.7/errors#logging) with admin UI using MonoLog|
6363
|Google [reCaptcha Protection with Google API](https://developers.google.com/recaptcha/)|
6464
|User Registration with email verification|
65-
|Makes us of Laravel [Mix](https://laravel.com/docs/5.6/mix) to compile assets|
66-
|Makes use of [Language Localization Files](https://laravel.com/docs/5.6/localization)|
67-
|Active Nav states using [Laravel Requests](https://laravel.com/docs/5.6/requests)|
65+
|Makes us of Laravel [Mix](https://laravel.com/docs/5.7/mix) to compile assets|
66+
|Makes use of [Language Localization Files](https://laravel.com/docs/5.7/localization)|
67+
|Active Nav states using [Laravel Requests](https://laravel.com/docs/5.7/requests)|
6868
|Restrict User Email Activation Attempts|
6969
|Capture IP to users table upon signup|
7070
|Uses [Laravel Debugger](https://github.com/barryvdh/laravel-debugbar) for development|
@@ -75,7 +75,7 @@ Laravel 5.6 with user authentication, registration with email confirmation, soci
7575
|User Password Reset via Email Token|
7676
|User Login with remember password|
7777
|User [Roles/ACL Implementation](https://github.com/jeremykenedy/laravel-roles)|
78-
|Makes of [Laravel's Soft Delete Structure](https://laravel.com/docs/5.6/eloquent#soft-deleting)|
78+
|Makes of [Laravel's Soft Delete Structure](https://laravel.com/docs/5.7/eloquent#soft-deleting)|
7979
|Soft Deleted Users Management System|
8080
|Permanently Delete Soft Deleted Users|
8181
|User Delete Account with Goodbye email|
@@ -132,7 +132,7 @@ php artisan vendor:publish --tag=laravel2step
132132
#### Optionally Build Cache
133133
1. From the projects root folder run `php artisan config:cache`
134134

135-
###### And thats it with the caveat of setting up and configuring your development environment. I recommend [Laravel Homestead](https://laravel.com/docs/5.6/homestead)
135+
###### And thats it with the caveat of setting up and configuring your development environment. I recommend [Laravel Homestead](https://laravel.com/docs/5.7/homestead)
136136

137137
### Seeds
138138
##### Seeded Roles
@@ -469,36 +469,36 @@ INSTAGRAM_REDIRECT_URI=http://laravel-authentication.local/social/handle/instagr
469469
```
470470

471471
#### Laravel Developement Packages Used References
472-
* http://laravel.com/docs/5.6/authentication
473-
* http://laravel.com/docs/5.6/authorization
474-
* http://laravel.com/docs/5.6/routing
475-
* https://laravel.com/docs/5.6/migrations
476-
* https://laravel.com/docs/5.6/queries
477-
* https://laravel.com/docs/5.6/views
478-
* https://laravel.com/docs/5.6/eloquent
479-
* https://laravel.com/docs/5.6/eloquent-relationships
480-
* https://laravel.com/docs/5.6/requests
481-
* https://laravel.com/docs/5.6/errors
472+
* http://laravel.com/docs/5.7/authentication
473+
* http://laravel.com/docs/5.7/authorization
474+
* http://laravel.com/docs/5.7/routing
475+
* https://laravel.com/docs/5.7/migrations
476+
* https://laravel.com/docs/5.7/queries
477+
* https://laravel.com/docs/5.7/views
478+
* https://laravel.com/docs/5.7/eloquent
479+
* https://laravel.com/docs/5.7/eloquent-relationships
480+
* https://laravel.com/docs/5.7/requests
481+
* https://laravel.com/docs/5.7/errors
482482

483483
###### Updates:
484484
* Update to Bootstrap 4
485-
* Update to Laravel 5.6
485+
* Update to Laravel 5.7
486486
* Added optional 2-step account login verfication with [Laravel 2-Step Verification](https://github.com/jeremykenedy/laravel2step)
487487
* Added activity logging using [Laravel-logger](https://github.com/jeremykenedy/laravel-logger)
488488
* Added Configurable Email Notification using [Laravel-Exception-Notifier](https://github.com/jeremykenedy/laravel-exception-notifier)
489489
* Update to Laravel 5.5
490490
* Added User Delete with Goodbye email
491491
* Added User Restore Deleted Account from email with secure token
492-
* Added [Soft Deletes](https://laravel.com/docs/5.6/eloquent#soft-deleting) and Soft Deletes Management panel
492+
* Added [Soft Deletes](https://laravel.com/docs/5.7/eloquent#soft-deleting) and Soft Deletes Management panel
493493
* Added User Account Settings to Profile Edit
494494
* Added User Change Password to Profile Edit
495495
* Added User Delete Account to Profile Edit
496496
* Added [Password Strength Meter](https://github.com/elboletaire/password-strength-meter)
497497
* Added [hideShowPassword](https://github.com/cloudfour/hideShowPassword)
498498
* Added Admin Routing Details
499499
* Admin PHP Information
500-
* Added Robust [Laravel Logging](https://laravel.com/docs/5.6/errors#logging) with admin UI using MonoLog
501-
* Added Active Nav states using [Laravel Requests](https://laravel.com/docs/5.6/requests)
500+
* Added Robust [Laravel Logging](https://laravel.com/docs/5.7/errors#logging) with admin UI using MonoLog
501+
* Added Active Nav states using [Laravel Requests](https://laravel.com/docs/5.7/requests)
502502
* Added [Laravel Debugger](https://github.com/barryvdh/laravel-debugbar) with Service Provider to manage status in `.env` file.
503503
* Updated Capture IP not found IP address
504504
* Added User Avatar Image AJAX Upload with [Dropzone.js](http://www.dropzonejs.com/#configuration)

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"jeremykenedy/laravel-roles": "^1.2",
2121
"jeremykenedy/laravel2step": "^1.0",
2222
"jeremykenedy/uuid": "^3.1",
23-
"laravel/framework": "5.6.*",
23+
"laravel/framework": "5.7.*",
2424
"laravel/socialite": "^3.0",
2525
"laravel/tinker": "^1.0",
2626
"laravelcollective/html": "^5.5",

tests/Feature/ExampleTest.php

Lines changed: 0 additions & 20 deletions
This file was deleted.

tests/Feature/PublicPagesTest.php

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?php
2+
3+
namespace Tests\Feature;
4+
5+
use Tests\TestCase;
6+
7+
class PublicPagesTest extends TestCase
8+
{
9+
/**
10+
* Test the public pages
11+
*
12+
* @return void
13+
*/
14+
public function testPublicPagesAllowed()
15+
{
16+
$this->get('/')->assertStatus(200);
17+
$this->get('/login')->assertStatus(200);
18+
$this->get('/password/reset')->assertStatus(200);
19+
}
20+
}

0 commit comments

Comments
 (0)