dev-master
9999999-devExtension of the Cartalyst Sentry authorisation package. Provides ready to go controllers and views for easy prototyping
MIT
The Requires
- php >=5.3.0
- cartalyst/sentry 2.0.*
- illuminate/view 4.0.x
by David Woolley
Wallogit.com
2017 © Pedro Peláez
Extension of the Cartalyst Sentry authorisation package. Provides ready to go controllers and views for easy prototyping
In many ways this package is an exercise in building a 'composer' compliant package. The goal is to provide a working implementation of Sentry 2 using 'read to go' controllers, views and email templates., (*1)
Add datatrain\user as a requirement to composer.json:, (*2)
{
"require": {
"datatrain/user": "dev-master"
}
}
Update your packages with composer update or install with composer install., (*3)
Once Composer has installed or updated your packages you need to register User with Laravel itself. Open up app/config/app.php and find the providers key towards the bottom and add:, (*4)
'Datatrain\User\UserServiceProvider'
Whilst this package comes 'pre-configured', most users will want to substitute their own layout, views and templates. This is achieved in Laravel using the artisan config:publish command, (*5)
$ php artisan config:publish datatrain/user
This will publish config.php in the app/config/packages/datatrain/user directory. You may also specify an environment specific directory if desired., (*6)
This project is no longer maintained. If you are interested in taking ownership please let me know., (*7)
Extension of the Cartalyst Sentry authorisation package. Provides ready to go controllers and views for easy prototyping
MIT