gitextract_r_rvj5r7/ ├── .gitignore ├── LICENSE.md ├── README.md ├── UPGRADING.md ├── composer.json ├── config/ │ └── keyable.php ├── database/ │ └── migrations/ │ └── 2019_04_09_225232_create_api_keys_table.php ├── src/ │ ├── Auth/ │ │ ├── AuthorizesKeyableRequests.php │ │ └── Keyable.php │ ├── Console/ │ │ └── Commands/ │ │ ├── DeleteApiKey.php │ │ ├── GenerateApiKey.php │ │ └── HashApiKeys.php │ ├── Events/ │ │ └── KeyableAuthenticated.php │ ├── Facades/ │ │ └── Keyable.php │ ├── Http/ │ │ └── Middleware/ │ │ ├── AuthenticateApiKey.php │ │ └── EnforceKeyableScope.php │ ├── Keyable.php │ ├── KeyableServiceProvider.php │ ├── Models/ │ │ └── ApiKey.php │ └── NewApiKey.php └── tests/ ├── Feature/ │ ├── AuthenticateApiKey.php │ ├── CompatibilityMode.php │ └── EnforceKeyableScope.php ├── Support/ │ ├── Account.php │ ├── Comment.php │ ├── CommentsController.php │ ├── Migrations/ │ │ └── create_test_tables.php │ ├── Post.php │ └── PostsController.php ├── TestCase.php └── Unit/ ├── Console/ │ └── Commands/ │ ├── DeleteApiKey.php │ ├── GenerateApiKey.php │ └── HashApiKeys.php └── Models/ └── ApiKeyTest.php