├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── changelog.md ├── composer.json ├── config └── auth-checker.php ├── lang ├── en │ └── types.php ├── fr │ └── types.php └── zh_CN │ └── types.php ├── migrations ├── create_devices_table.php.stub ├── create_logins_table.php.stub └── update_logins_and_devices_table_user_relation.php.stub ├── phpunit.xml ├── readme.md ├── screenshot.png ├── src ├── AuthCheckerServiceProvider.php ├── Events │ ├── DeviceCreated.php │ ├── FailedAuth.php │ ├── LockoutAuth.php │ └── LoginCreated.php ├── Interfaces │ └── HasLoginsAndDevicesInterface.php ├── Models │ ├── Device.php │ ├── HasLoginsAndDevices.php │ └── Login.php ├── Services │ └── AuthChecker.php └── Subscribers │ └── AuthCheckerSubscriber.php └── tests ├── AuthCheckerTest.php ├── EventsTest.php ├── HasLoginsAndDevicesTest.php ├── Stubs ├── Models │ ├── CustomDevice.php │ ├── CustomLogin.php │ └── User.php └── migrations │ └── 2014_10_12_000000_create_users_table.php └── TestCase.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404labfr/laravel-auth-checker/HEAD/.gitignore -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404labfr/laravel-auth-checker/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404labfr/laravel-auth-checker/HEAD/.travis.yml -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404labfr/laravel-auth-checker/HEAD/changelog.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404labfr/laravel-auth-checker/HEAD/composer.json -------------------------------------------------------------------------------- /config/auth-checker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404labfr/laravel-auth-checker/HEAD/config/auth-checker.php -------------------------------------------------------------------------------- /lang/en/types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404labfr/laravel-auth-checker/HEAD/lang/en/types.php -------------------------------------------------------------------------------- /lang/fr/types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404labfr/laravel-auth-checker/HEAD/lang/fr/types.php -------------------------------------------------------------------------------- /lang/zh_CN/types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404labfr/laravel-auth-checker/HEAD/lang/zh_CN/types.php -------------------------------------------------------------------------------- /migrations/create_devices_table.php.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404labfr/laravel-auth-checker/HEAD/migrations/create_devices_table.php.stub -------------------------------------------------------------------------------- /migrations/create_logins_table.php.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404labfr/laravel-auth-checker/HEAD/migrations/create_logins_table.php.stub -------------------------------------------------------------------------------- /migrations/update_logins_and_devices_table_user_relation.php.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404labfr/laravel-auth-checker/HEAD/migrations/update_logins_and_devices_table_user_relation.php.stub -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404labfr/laravel-auth-checker/HEAD/phpunit.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404labfr/laravel-auth-checker/HEAD/readme.md -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404labfr/laravel-auth-checker/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/AuthCheckerServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404labfr/laravel-auth-checker/HEAD/src/AuthCheckerServiceProvider.php -------------------------------------------------------------------------------- /src/Events/DeviceCreated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404labfr/laravel-auth-checker/HEAD/src/Events/DeviceCreated.php -------------------------------------------------------------------------------- /src/Events/FailedAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404labfr/laravel-auth-checker/HEAD/src/Events/FailedAuth.php -------------------------------------------------------------------------------- /src/Events/LockoutAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404labfr/laravel-auth-checker/HEAD/src/Events/LockoutAuth.php -------------------------------------------------------------------------------- /src/Events/LoginCreated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404labfr/laravel-auth-checker/HEAD/src/Events/LoginCreated.php -------------------------------------------------------------------------------- /src/Interfaces/HasLoginsAndDevicesInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404labfr/laravel-auth-checker/HEAD/src/Interfaces/HasLoginsAndDevicesInterface.php -------------------------------------------------------------------------------- /src/Models/Device.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404labfr/laravel-auth-checker/HEAD/src/Models/Device.php -------------------------------------------------------------------------------- /src/Models/HasLoginsAndDevices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404labfr/laravel-auth-checker/HEAD/src/Models/HasLoginsAndDevices.php -------------------------------------------------------------------------------- /src/Models/Login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404labfr/laravel-auth-checker/HEAD/src/Models/Login.php -------------------------------------------------------------------------------- /src/Services/AuthChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404labfr/laravel-auth-checker/HEAD/src/Services/AuthChecker.php -------------------------------------------------------------------------------- /src/Subscribers/AuthCheckerSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404labfr/laravel-auth-checker/HEAD/src/Subscribers/AuthCheckerSubscriber.php -------------------------------------------------------------------------------- /tests/AuthCheckerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404labfr/laravel-auth-checker/HEAD/tests/AuthCheckerTest.php -------------------------------------------------------------------------------- /tests/EventsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404labfr/laravel-auth-checker/HEAD/tests/EventsTest.php -------------------------------------------------------------------------------- /tests/HasLoginsAndDevicesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404labfr/laravel-auth-checker/HEAD/tests/HasLoginsAndDevicesTest.php -------------------------------------------------------------------------------- /tests/Stubs/Models/CustomDevice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404labfr/laravel-auth-checker/HEAD/tests/Stubs/Models/CustomDevice.php -------------------------------------------------------------------------------- /tests/Stubs/Models/CustomLogin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404labfr/laravel-auth-checker/HEAD/tests/Stubs/Models/CustomLogin.php -------------------------------------------------------------------------------- /tests/Stubs/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404labfr/laravel-auth-checker/HEAD/tests/Stubs/Models/User.php -------------------------------------------------------------------------------- /tests/Stubs/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404labfr/laravel-auth-checker/HEAD/tests/Stubs/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404labfr/laravel-auth-checker/HEAD/tests/TestCase.php --------------------------------------------------------------------------------