mirror of
https://github.com/symfony/recipes.git
synced 2026-09-11 15:16:30 +03:00
18 lines
506 B
JSON
18 lines
506 B
JSON
{
|
|
"bundles": {
|
|
"Lexik\\Bundle\\JWTAuthenticationBundle\\LexikJWTAuthenticationBundle": ["all"]
|
|
},
|
|
"copy-from-recipe": {
|
|
"config/": "%CONFIG_DIR%"
|
|
},
|
|
"aliases": ["jwt", "jwt-auth"],
|
|
"env": {
|
|
"JWT_SECRET_KEY": "%kernel.project_dir%/%CONFIG_DIR%/jwt/private.pem",
|
|
"JWT_PUBLIC_KEY": "%kernel.project_dir%/%CONFIG_DIR%/jwt/public.pem",
|
|
"JWT_PASSPHRASE": "%generate(secret, 32)%"
|
|
},
|
|
"gitignore": [
|
|
"/%CONFIG_DIR%/jwt/*.pem"
|
|
]
|
|
}
|