├── .gitignore ├── License ├── README.md ├── composer.json ├── composer.lock ├── metadata.json └── test.php /.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore installed composer dependencies. 2 | vendor/ 3 | 4 | -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/php-jwt-example/HEAD/License -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/php-jwt-example/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/php-jwt-example/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/php-jwt-example/HEAD/composer.lock -------------------------------------------------------------------------------- /metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/php-jwt-example/HEAD/metadata.json -------------------------------------------------------------------------------- /test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/php-jwt-example/HEAD/test.php --------------------------------------------------------------------------------