├── .styleci.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── config ├── .gitkeep └── face_auth.php └── src ├── FaceAuthServiceProvider.php ├── FaceAuthUserProvider.php └── FaceAuthenticatable.php /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/laravel-face-auth/HEAD/.styleci.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/laravel-face-auth/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/laravel-face-auth/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/laravel-face-auth/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/laravel-face-auth/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/laravel-face-auth/HEAD/composer.json -------------------------------------------------------------------------------- /config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/face_auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/laravel-face-auth/HEAD/config/face_auth.php -------------------------------------------------------------------------------- /src/FaceAuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/laravel-face-auth/HEAD/src/FaceAuthServiceProvider.php -------------------------------------------------------------------------------- /src/FaceAuthUserProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/laravel-face-auth/HEAD/src/FaceAuthUserProvider.php -------------------------------------------------------------------------------- /src/FaceAuthenticatable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpociot/laravel-face-auth/HEAD/src/FaceAuthenticatable.php --------------------------------------------------------------------------------