├── .env.dist ├── .github └── FUNDING.yml ├── .gitignore ├── README.md ├── bin └── console ├── composer.json ├── composer.lock ├── config ├── bundles.php ├── jwt │ ├── private.pem │ └── public.pem ├── packages │ ├── dev │ │ ├── easy_log_handler.yaml │ │ ├── monolog.yaml │ │ ├── routing.yaml │ │ └── web_profiler.yaml │ ├── doctrine.yaml │ ├── doctrine_migrations.yaml │ ├── framework.yaml │ ├── lexik_jwt_authentication.yaml │ ├── prod │ │ ├── doctrine.yaml │ │ └── monolog.yaml │ ├── routing.yaml │ ├── security.yaml │ ├── test │ │ ├── framework.yaml │ │ ├── monolog.yaml │ │ └── web_profiler.yaml │ └── twig.yaml ├── routes.yaml ├── routes │ └── dev │ │ ├── twig.yaml │ │ └── web_profiler.yaml └── services.yaml ├── public └── index.php ├── src ├── Controller │ └── DefaultController.php ├── Entity │ └── User.php └── Kernel.php ├── symfony.lock └── templates └── base.html.twig /.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalasr/lexik-jwt-authentication-sandbox/HEAD/.env.dist -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: chalasr 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalasr/lexik-jwt-authentication-sandbox/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalasr/lexik-jwt-authentication-sandbox/HEAD/README.md -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalasr/lexik-jwt-authentication-sandbox/HEAD/bin/console -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalasr/lexik-jwt-authentication-sandbox/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalasr/lexik-jwt-authentication-sandbox/HEAD/composer.lock -------------------------------------------------------------------------------- /config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalasr/lexik-jwt-authentication-sandbox/HEAD/config/bundles.php -------------------------------------------------------------------------------- /config/jwt/private.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalasr/lexik-jwt-authentication-sandbox/HEAD/config/jwt/private.pem -------------------------------------------------------------------------------- /config/jwt/public.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalasr/lexik-jwt-authentication-sandbox/HEAD/config/jwt/public.pem -------------------------------------------------------------------------------- /config/packages/dev/easy_log_handler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalasr/lexik-jwt-authentication-sandbox/HEAD/config/packages/dev/easy_log_handler.yaml -------------------------------------------------------------------------------- /config/packages/dev/monolog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalasr/lexik-jwt-authentication-sandbox/HEAD/config/packages/dev/monolog.yaml -------------------------------------------------------------------------------- /config/packages/dev/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalasr/lexik-jwt-authentication-sandbox/HEAD/config/packages/dev/routing.yaml -------------------------------------------------------------------------------- /config/packages/dev/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalasr/lexik-jwt-authentication-sandbox/HEAD/config/packages/dev/web_profiler.yaml -------------------------------------------------------------------------------- /config/packages/doctrine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalasr/lexik-jwt-authentication-sandbox/HEAD/config/packages/doctrine.yaml -------------------------------------------------------------------------------- /config/packages/doctrine_migrations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalasr/lexik-jwt-authentication-sandbox/HEAD/config/packages/doctrine_migrations.yaml -------------------------------------------------------------------------------- /config/packages/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalasr/lexik-jwt-authentication-sandbox/HEAD/config/packages/framework.yaml -------------------------------------------------------------------------------- /config/packages/lexik_jwt_authentication.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalasr/lexik-jwt-authentication-sandbox/HEAD/config/packages/lexik_jwt_authentication.yaml -------------------------------------------------------------------------------- /config/packages/prod/doctrine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalasr/lexik-jwt-authentication-sandbox/HEAD/config/packages/prod/doctrine.yaml -------------------------------------------------------------------------------- /config/packages/prod/monolog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalasr/lexik-jwt-authentication-sandbox/HEAD/config/packages/prod/monolog.yaml -------------------------------------------------------------------------------- /config/packages/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalasr/lexik-jwt-authentication-sandbox/HEAD/config/packages/routing.yaml -------------------------------------------------------------------------------- /config/packages/security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalasr/lexik-jwt-authentication-sandbox/HEAD/config/packages/security.yaml -------------------------------------------------------------------------------- /config/packages/test/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalasr/lexik-jwt-authentication-sandbox/HEAD/config/packages/test/framework.yaml -------------------------------------------------------------------------------- /config/packages/test/monolog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalasr/lexik-jwt-authentication-sandbox/HEAD/config/packages/test/monolog.yaml -------------------------------------------------------------------------------- /config/packages/test/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalasr/lexik-jwt-authentication-sandbox/HEAD/config/packages/test/web_profiler.yaml -------------------------------------------------------------------------------- /config/packages/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalasr/lexik-jwt-authentication-sandbox/HEAD/config/packages/twig.yaml -------------------------------------------------------------------------------- /config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalasr/lexik-jwt-authentication-sandbox/HEAD/config/routes.yaml -------------------------------------------------------------------------------- /config/routes/dev/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalasr/lexik-jwt-authentication-sandbox/HEAD/config/routes/dev/twig.yaml -------------------------------------------------------------------------------- /config/routes/dev/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalasr/lexik-jwt-authentication-sandbox/HEAD/config/routes/dev/web_profiler.yaml -------------------------------------------------------------------------------- /config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalasr/lexik-jwt-authentication-sandbox/HEAD/config/services.yaml -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalasr/lexik-jwt-authentication-sandbox/HEAD/public/index.php -------------------------------------------------------------------------------- /src/Controller/DefaultController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalasr/lexik-jwt-authentication-sandbox/HEAD/src/Controller/DefaultController.php -------------------------------------------------------------------------------- /src/Entity/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalasr/lexik-jwt-authentication-sandbox/HEAD/src/Entity/User.php -------------------------------------------------------------------------------- /src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalasr/lexik-jwt-authentication-sandbox/HEAD/src/Kernel.php -------------------------------------------------------------------------------- /symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalasr/lexik-jwt-authentication-sandbox/HEAD/symfony.lock -------------------------------------------------------------------------------- /templates/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chalasr/lexik-jwt-authentication-sandbox/HEAD/templates/base.html.twig --------------------------------------------------------------------------------