barnetik / doctrine-auth-provider
Laravel Auth Provider with Doctrine integration
Requires
- atrauzzi/laravel-doctrine: dev-master
- illuminate/support: 5.*
- jms/serializer: 1.*@dev
This package is not auto-updated.
Last update: 2021-09-24 15:01:30 UTC
README
This package allows a Doctrine model based authentication for Laravel 5. Tries to avoid multiple ways to access database for projects using laravel-doctrine package.
Installation
Configure [laravel-doctrine](https://github.com/atrauzzi/la ravel-doctrine) package with DriverChain driver.
Require barnetik/doctrine-auth-provider
in composer.json and run composer update
.
{
"require": {
"laravel/framework": "5.0.*",
...
"barnetik/doctrine-auth-provider": "*"
}
...
}
Composer will download the package. After the package is downloaded, open config/app.php
and add the service provider:
'providers' => array(
...
'Barnetik\DoctrineAuth\DoctrineAuthServiceProvider',
),
Usage
User model definition
Copy the base model to your models path using this command:
$ php artisan doctrine-auth:publish:usermodel \My\Models\Path
Take care about the PATH, the command will use de app_path() as base path.
Table creation
Once the Model is in its place, create the table in the DB.
Generate a migration diff :
$ php vendor/bin/doctrine-laravel migrations:diff
Check the generated file and if everything is ok, do the migration:
$ php vendor/bin/doctrine-laravel migrations:migrate
Configuration
Open config/auth.php
and set appropiate driver and model:
[
...
'driver' => 'doctrine',
'model' => 'My\Models\Path\User',
...
]
Use authentication as explained on Laravel's Authentication chapter.
If desired, generate user with provided command:
$ php artisan doctrine-auth:user:create --username=admin --password=1234
License
The Laravel framework is open-sourced software license under the MIT license
This project is too to ensure maximum compatibility.