├── .php_cs.dist.php ├── LICENSE.md ├── README.md ├── composer.json ├── config └── bearer.php ├── database ├── factories │ └── TokenFactory.php └── migrations │ └── create_bearer_table.php.stub └── src ├── Bearer.php ├── BearerServiceProvider.php ├── Concerns └── InteractsWithExpiration.php ├── Facades └── Bearer.php ├── Http └── Middleware │ └── VerifyBearerToken.php └── Models └── Token.php /.php_cs.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/bearer/HEAD/.php_cs.dist.php -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/bearer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/bearer/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/bearer/HEAD/composer.json -------------------------------------------------------------------------------- /config/bearer.php: -------------------------------------------------------------------------------- 1 | env('BEARER_VERIFY_DOMAINS', true), 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /database/factories/TokenFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/bearer/HEAD/database/factories/TokenFactory.php -------------------------------------------------------------------------------- /database/migrations/create_bearer_table.php.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/bearer/HEAD/database/migrations/create_bearer_table.php.stub -------------------------------------------------------------------------------- /src/Bearer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/bearer/HEAD/src/Bearer.php -------------------------------------------------------------------------------- /src/BearerServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/bearer/HEAD/src/BearerServiceProvider.php -------------------------------------------------------------------------------- /src/Concerns/InteractsWithExpiration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/bearer/HEAD/src/Concerns/InteractsWithExpiration.php -------------------------------------------------------------------------------- /src/Facades/Bearer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/bearer/HEAD/src/Facades/Bearer.php -------------------------------------------------------------------------------- /src/Http/Middleware/VerifyBearerToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/bearer/HEAD/src/Http/Middleware/VerifyBearerToken.php -------------------------------------------------------------------------------- /src/Models/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/bearer/HEAD/src/Models/Token.php --------------------------------------------------------------------------------