├── .coveralls.yml ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── src ├── Concerns │ ├── GuardsNothing.php │ ├── HasEloquentIdentifier.php │ ├── HasEloquentPassword.php │ ├── ProvidesNothing.php │ └── RequiresIdentifier.php ├── GenericNullAuthenticatable.php ├── GenericStrictNullAuthenticatable.php ├── NoRememberTokenAuthenticatable.php ├── NullAuthServiceProvider.php ├── NullAuthenticatable.php ├── NullGuard.php ├── NullUserProvider.php ├── StrictNoRememberTokenAuthenticatable.php ├── StrictNullAuthenticatable.php └── UnsetsUser.php └── tests ├── Feature └── BasicTest.php ├── TestCase.php └── Unit ├── NoRememberTokenAuthenticatableTest.php ├── NullAuthenticatableTest.php ├── NullGuardTest.php └── NullUserProviderTest.php /.coveralls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/null-auth/HEAD/.coveralls.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/null-auth/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/null-auth/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/null-auth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/null-auth/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/null-auth/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/null-auth/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Concerns/GuardsNothing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/null-auth/HEAD/src/Concerns/GuardsNothing.php -------------------------------------------------------------------------------- /src/Concerns/HasEloquentIdentifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/null-auth/HEAD/src/Concerns/HasEloquentIdentifier.php -------------------------------------------------------------------------------- /src/Concerns/HasEloquentPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/null-auth/HEAD/src/Concerns/HasEloquentPassword.php -------------------------------------------------------------------------------- /src/Concerns/ProvidesNothing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/null-auth/HEAD/src/Concerns/ProvidesNothing.php -------------------------------------------------------------------------------- /src/Concerns/RequiresIdentifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/null-auth/HEAD/src/Concerns/RequiresIdentifier.php -------------------------------------------------------------------------------- /src/GenericNullAuthenticatable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/null-auth/HEAD/src/GenericNullAuthenticatable.php -------------------------------------------------------------------------------- /src/GenericStrictNullAuthenticatable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/null-auth/HEAD/src/GenericStrictNullAuthenticatable.php -------------------------------------------------------------------------------- /src/NoRememberTokenAuthenticatable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/null-auth/HEAD/src/NoRememberTokenAuthenticatable.php -------------------------------------------------------------------------------- /src/NullAuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/null-auth/HEAD/src/NullAuthServiceProvider.php -------------------------------------------------------------------------------- /src/NullAuthenticatable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/null-auth/HEAD/src/NullAuthenticatable.php -------------------------------------------------------------------------------- /src/NullGuard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/null-auth/HEAD/src/NullGuard.php -------------------------------------------------------------------------------- /src/NullUserProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/null-auth/HEAD/src/NullUserProvider.php -------------------------------------------------------------------------------- /src/StrictNoRememberTokenAuthenticatable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/null-auth/HEAD/src/StrictNoRememberTokenAuthenticatable.php -------------------------------------------------------------------------------- /src/StrictNullAuthenticatable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/null-auth/HEAD/src/StrictNullAuthenticatable.php -------------------------------------------------------------------------------- /src/UnsetsUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/null-auth/HEAD/src/UnsetsUser.php -------------------------------------------------------------------------------- /tests/Feature/BasicTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/null-auth/HEAD/tests/Feature/BasicTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/null-auth/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/NoRememberTokenAuthenticatableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/null-auth/HEAD/tests/Unit/NoRememberTokenAuthenticatableTest.php -------------------------------------------------------------------------------- /tests/Unit/NullAuthenticatableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/null-auth/HEAD/tests/Unit/NullAuthenticatableTest.php -------------------------------------------------------------------------------- /tests/Unit/NullGuardTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/null-auth/HEAD/tests/Unit/NullGuardTest.php -------------------------------------------------------------------------------- /tests/Unit/NullUserProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpyw/null-auth/HEAD/tests/Unit/NullUserProviderTest.php --------------------------------------------------------------------------------