├── LICENSE ├── README.md ├── composer.json └── src ├── Database ├── PasswordHistory.php ├── PasswordHistoryRepo.php └── migrations │ └── 2018_04_08_033256_create_password_histories_table.php ├── Facades └── PasswordHistoryManager.php ├── Observers └── UserObserver.php ├── PasswordHistory.php ├── PasswordHistoryServiceProvider.php ├── Rules └── NotBeInPasswordHistory.php └── config └── password_history.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-password-history/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-password-history/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-password-history/HEAD/composer.json -------------------------------------------------------------------------------- /src/Database/PasswordHistory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-password-history/HEAD/src/Database/PasswordHistory.php -------------------------------------------------------------------------------- /src/Database/PasswordHistoryRepo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-password-history/HEAD/src/Database/PasswordHistoryRepo.php -------------------------------------------------------------------------------- /src/Database/migrations/2018_04_08_033256_create_password_histories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-password-history/HEAD/src/Database/migrations/2018_04_08_033256_create_password_histories_table.php -------------------------------------------------------------------------------- /src/Facades/PasswordHistoryManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-password-history/HEAD/src/Facades/PasswordHistoryManager.php -------------------------------------------------------------------------------- /src/Observers/UserObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-password-history/HEAD/src/Observers/UserObserver.php -------------------------------------------------------------------------------- /src/PasswordHistory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-password-history/HEAD/src/PasswordHistory.php -------------------------------------------------------------------------------- /src/PasswordHistoryServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-password-history/HEAD/src/PasswordHistoryServiceProvider.php -------------------------------------------------------------------------------- /src/Rules/NotBeInPasswordHistory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-password-history/HEAD/src/Rules/NotBeInPasswordHistory.php -------------------------------------------------------------------------------- /src/config/password_history.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-password-history/HEAD/src/config/password_history.php --------------------------------------------------------------------------------