Laravel 5
PHP 5.5+
No commit activity in last 2 years
No release in over 2 years
An authentication driver for Laravel5 which allows to authenticate users using their legacy Django PBKDF2
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

mockery/mockery
~0.9.1
phpunit/phpunit
~4.0

Runtime

 Project Readme

Laravel Django Authentication

An authentication driver for Laravel5 which allows to authenticate users using their legacy Django PBKDF2 passwords.

Usage

Add the following service provider to the providers section of config/app.php :

Jobinja\Djangoable\DjangoableServiceProvider::class

Then change your auth driver to djangoable in config/auth.php.

If you prefer to use database driver instead of eloquent use djangoable_database instead of djangoable .

Refreshing passwords on first login

By default after the first login of the user using a password, user's password is rehashed based on your laravel hasher contract. If you don't wat this you can disable it by setting rehash_django to false in config/auth.php :

// auth.php
//...
'rehash_django' => false,
//...

Password field size

Default Laravel5 migration for users table uses VARCHAR(60) for password field you should increment it to 100 as Django password fields take more space.

Tests for hasher contract

Clone the project then run vendor/bin/phpunit.