├── .gitignore ├── LICENSE ├── README.md ├── composer.json └── src ├── ApiToken.php ├── ApiTokenQuery.php ├── ApiTokenService.php ├── JwtBearerAuth.php ├── JwtToken.php ├── RefreshTokensAction.php └── migrations └── M181023133719Create_api_auth_tokens.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakadu-dev/yii2-jwt-auth/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakadu-dev/yii2-jwt-auth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakadu-dev/yii2-jwt-auth/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakadu-dev/yii2-jwt-auth/HEAD/composer.json -------------------------------------------------------------------------------- /src/ApiToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakadu-dev/yii2-jwt-auth/HEAD/src/ApiToken.php -------------------------------------------------------------------------------- /src/ApiTokenQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakadu-dev/yii2-jwt-auth/HEAD/src/ApiTokenQuery.php -------------------------------------------------------------------------------- /src/ApiTokenService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakadu-dev/yii2-jwt-auth/HEAD/src/ApiTokenService.php -------------------------------------------------------------------------------- /src/JwtBearerAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakadu-dev/yii2-jwt-auth/HEAD/src/JwtBearerAuth.php -------------------------------------------------------------------------------- /src/JwtToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakadu-dev/yii2-jwt-auth/HEAD/src/JwtToken.php -------------------------------------------------------------------------------- /src/RefreshTokensAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakadu-dev/yii2-jwt-auth/HEAD/src/RefreshTokensAction.php -------------------------------------------------------------------------------- /src/migrations/M181023133719Create_api_auth_tokens.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kakadu-dev/yii2-jwt-auth/HEAD/src/migrations/M181023133719Create_api_auth_tokens.php --------------------------------------------------------------------------------