|
7 | 7 | ## Introduction
|
8 | 8 |
|
9 | 9 | A Users Management [Package](https://packagist.org/packages/jeremykenedy/laravel-users) that includes all necessary routes, views, models, and controllers for a user management dashboard and associated pages for managing Laravels built in user scaffolding.
|
10 |
| -Built for Laravel 5.2, 5.3, and 5.4+. |
| 10 | +Built for Laravel 5.2, 5.3, 5.4, and 5.5+. |
11 | 11 |
|
12 | 12 | ## Requirements
|
13 | 13 |
|
14 |
| -* [Laravel 5.2, 5.3, or 5.4 or newer](https://laravel.com/docs/installation) |
| 14 | +* [Laravel 5.2, 5.3, 5.4, and 5.5+](https://laravel.com/docs/installation) |
15 | 15 |
|
16 | 16 | Example new project creation command:
|
17 | 17 |
|
@@ -41,19 +41,34 @@ Built for Laravel 5.2, 5.3, and 5.4+.
|
41 | 41 |
|
42 | 42 | Laravel 5.4 use:
|
43 | 43 |
|
| 44 | + ``` |
| 45 | + composer require jeremykenedy/laravel-users:1.4.0 |
| 46 | + ``` |
| 47 | +
|
| 48 | + Laravel 5.5+ use: |
| 49 | +
|
44 | 50 | ```
|
45 | 51 | composer require jeremykenedy/laravel-users
|
46 | 52 | ```
|
47 | 53 |
|
| 54 | +2. Register Package |
| 55 | +* Laravel 5.4 and up |
| 56 | +Uses package auto discovery feature, no need to edit the `config/app.php` file. |
48 | 57 |
|
49 |
| -2. Register the package with laravel in `config/app.php` under `providers` with the following: |
| 58 | +* Laravel 5.4 and below |
| 59 | +Register the package with laravel in `config/app.php` under `providers` with the following: |
50 | 60 |
|
51 | 61 | ```
|
52 | 62 | Collective\Html\HtmlServiceProvider::class,
|
53 | 63 | jeremykenedy\laravelusers\LaravelUsersServiceProvider::class,
|
54 | 64 | ```
|
55 | 65 |
|
56 |
| -3. Register the dependencies aliases with laravel in `config/app.php` section under `aliases` with the following: |
| 66 | +3. Register the dependencies aliases |
| 67 | +* Laravel 5.4 and up |
| 68 | +Uses package auto discovery feature, no need to edit the `config/app.php` file. |
| 69 | +
|
| 70 | +* Laravel 5.4 and below |
| 71 | +In `config/app.php` section under `aliases` with the following: |
57 | 72 |
|
58 | 73 | ```
|
59 | 74 | 'Form' => Collective\Html\FormFacade::class,
|
|
0 commit comments