vi-kon / laravel-support
This package is abandoned and no longer maintained.
No replacement package was suggested.
There is no license information available for the latest version (v1.1.0) of this package.
Support package for Laravel 5.1
v1.1.0
2016-04-24 13:45 UTC
Requires
- php: >=5.5.9
- illuminate/database: ~5.1
Requires (Dev)
- phpunit/phpunit: ~4.8
This package is not auto-updated.
Last update: 2021-03-05 23:26:59 UTC
README
Composer
There are multiple way to install package via composer
-
To your
composer.jsonfile add following lines:// to your "require" object "vi-kon/laravel-support": "^1.0"
-
Or run following command in project root:
composer require vi-kon/laravel-auth
This command will add above line in your composer.json file and download required package files.
Setup
In your Laravel project add following lines to config/app.php:
// to providers array \ViKon\Support\SupportServiceProvider::class,
In app\Http\Kernel.php file add following lines to $middleware array:
// to $middleware array \Illuminate\View\Middleware\ShareErrorsFromSession::class, // Add after \Illuminate\View\Middleware\ShareErrorsFromSession::class, \ViKon\Support\Middleware\View\ShareSuccessesFromSession::class,
Note: In Laravel 5.2 add these lines instead of $middleware array
to array marked with web key inside $middlewareGroups array.
[Back to top][top]