├── .phpunit-watcher.yml ├── .styleci.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── config ├── di.php └── params.php ├── infection.json.dist ├── psalm.xml ├── rector.php └── src ├── JwtMethod.php ├── KeyFactory ├── FromCertificateFile.php ├── FromKeyFile.php ├── FromPKCS12CertificateFile.php └── FromSecret.php ├── KeyFactoryInterface.php ├── TokenFactory.php ├── TokenFactoryInterface.php ├── TokenRepository.php └── TokenRepositoryInterface.php /.phpunit-watcher.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/auth-jwt/HEAD/.phpunit-watcher.yml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/auth-jwt/HEAD/.styleci.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/auth-jwt/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/auth-jwt/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/auth-jwt/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/auth-jwt/HEAD/composer.json -------------------------------------------------------------------------------- /config/di.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/auth-jwt/HEAD/config/di.php -------------------------------------------------------------------------------- /config/params.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/auth-jwt/HEAD/config/params.php -------------------------------------------------------------------------------- /infection.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/auth-jwt/HEAD/infection.json.dist -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/auth-jwt/HEAD/psalm.xml -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/auth-jwt/HEAD/rector.php -------------------------------------------------------------------------------- /src/JwtMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/auth-jwt/HEAD/src/JwtMethod.php -------------------------------------------------------------------------------- /src/KeyFactory/FromCertificateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/auth-jwt/HEAD/src/KeyFactory/FromCertificateFile.php -------------------------------------------------------------------------------- /src/KeyFactory/FromKeyFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/auth-jwt/HEAD/src/KeyFactory/FromKeyFile.php -------------------------------------------------------------------------------- /src/KeyFactory/FromPKCS12CertificateFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/auth-jwt/HEAD/src/KeyFactory/FromPKCS12CertificateFile.php -------------------------------------------------------------------------------- /src/KeyFactory/FromSecret.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/auth-jwt/HEAD/src/KeyFactory/FromSecret.php -------------------------------------------------------------------------------- /src/KeyFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/auth-jwt/HEAD/src/KeyFactoryInterface.php -------------------------------------------------------------------------------- /src/TokenFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/auth-jwt/HEAD/src/TokenFactory.php -------------------------------------------------------------------------------- /src/TokenFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/auth-jwt/HEAD/src/TokenFactoryInterface.php -------------------------------------------------------------------------------- /src/TokenRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/auth-jwt/HEAD/src/TokenRepository.php -------------------------------------------------------------------------------- /src/TokenRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/auth-jwt/HEAD/src/TokenRepositoryInterface.php --------------------------------------------------------------------------------