├── .editorconfig ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ └── build.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── VERSION ├── composer.json ├── phpunit.xml.dist ├── src ├── JWT.php ├── JWTException.php └── ValidatesJWT.php ├── test.php └── tests ├── JWTTest.php ├── bootstrap.php └── stubs └── priv.key /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-jwt/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: adhocore 2 | custom: ['https://paypal.me/ji10'] 3 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-jwt/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-jwt/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-jwt/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-jwt/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-jwt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-jwt/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.1.2 2 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-jwt/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-jwt/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/JWT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-jwt/HEAD/src/JWT.php -------------------------------------------------------------------------------- /src/JWTException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-jwt/HEAD/src/JWTException.php -------------------------------------------------------------------------------- /src/ValidatesJWT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-jwt/HEAD/src/ValidatesJWT.php -------------------------------------------------------------------------------- /test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-jwt/HEAD/test.php -------------------------------------------------------------------------------- /tests/JWTTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-jwt/HEAD/tests/JWTTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-jwt/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/stubs/priv.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhocore/php-jwt/HEAD/tests/stubs/priv.key --------------------------------------------------------------------------------