Download the PHP package piek-j/b302-authentication without Composer
On this page you can find all versions of the php package piek-j/b302-authentication. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package b302-authentication
b302-authentication
Enables you to quickly install authentication pages and authorization.
Install
Before installing, make sure your database and mail settings are correct.
To install this package, follow the steps below:
- add
"piek-j/b302-authentication": "~1.0"
to your composer.json; - run the command
composer update
to install the package; - add the service provider
PiekJ\B302Authentication\B302AuthenticationServiceProvider
to your app.php config; - change the model in your auth.php config to
PiekJ\B302Authentication\User
; - run the command
php artisan config:publish zizaco/entrust
; - change the role in the
config/package/zizaco/entrust/config.php
toPiekJ\B302Authentication\Role
; - change the permission in the
config/package/zizaco/entrust/config.php
toPiekJ\B302Authentication\Permission
; - run the following commands
php artisan b302-auth:migration
(type for every confirmY
),php artisan migrate
andphp artisan b302-auth:create-user
.
Go visit http://yoururl/users/login to login with the newly created user (email: [email protected], password: admin).
Guide
Urls
Url | Description |
---|---|
/users/login | Shows up the login form |
/users/create | Shows up the signup form |
/users/forgot_password | The form to request a password reset mail |
/users/reset_password/{{token}} | Fill in your new password to reset |
/users/confirm/{{token}} | Here the users confirm his account |
For more detailed urls view B302AuthUserController.php.
Updating templates
You can use the command php artisan view:publish piek-j\b302-authentication
to copy the files to app/views/packages/piek-j/b302-authentication
where you can edit them.
To edit the views of the forms and emails use the following command php artisan view:publish zizaco/confide
to copy the files to ap/views/packages/zizaco/confide
where you can edit them.
More information
Authentication, take a look at Zizaco/Confide.
Role and permissions, take a look at Zizaco/Entrust.
All versions of b302-authentication with dependencies
illuminate/support Version 4.2.*
zizaco/entrust Version 1.2.5
zizaco/confide Version 4.3.0