├── LICENSE ├── composer.json └── src ├── MasterPassDatabaseUserProvider.php ├── MasterPassEloquentUserProvider.php ├── MasterPassServiceProvider.php ├── PassportUserRepository.php ├── ValidateCredentialsTrait.php └── config └── master_password.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-MasterPass/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-MasterPass/HEAD/composer.json -------------------------------------------------------------------------------- /src/MasterPassDatabaseUserProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-MasterPass/HEAD/src/MasterPassDatabaseUserProvider.php -------------------------------------------------------------------------------- /src/MasterPassEloquentUserProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-MasterPass/HEAD/src/MasterPassEloquentUserProvider.php -------------------------------------------------------------------------------- /src/MasterPassServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-MasterPass/HEAD/src/MasterPassServiceProvider.php -------------------------------------------------------------------------------- /src/PassportUserRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-MasterPass/HEAD/src/PassportUserRepository.php -------------------------------------------------------------------------------- /src/ValidateCredentialsTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-MasterPass/HEAD/src/ValidateCredentialsTrait.php -------------------------------------------------------------------------------- /src/config/master_password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-MasterPass/HEAD/src/config/master_password.php --------------------------------------------------------------------------------