mirror of
https://github.com/symfony/recipes.git
synced 2026-03-23 23:32:10 +01:00
19 lines
570 B
JSON
19 lines
570 B
JSON
{
|
|
"bundles": {
|
|
"League\\Bundle\\OAuth2ServerBundle\\LeagueOAuth2ServerBundle": ["all"]
|
|
},
|
|
"copy-from-recipe": {
|
|
"config/": "%CONFIG_DIR%/"
|
|
},
|
|
"env": {
|
|
"OAUTH_PRIVATE_KEY": "%kernel.project_dir%/%CONFIG_DIR%/jwt/private.pem",
|
|
"OAUTH_PUBLIC_KEY": "%kernel.project_dir%/%CONFIG_DIR%/jwt/public.pem",
|
|
"OAUTH_PASSPHRASE": "%generate(secret)%",
|
|
"OAUTH_ENCRYPTION_KEY": "%generate(secret)%"
|
|
},
|
|
"gitignore": [
|
|
"/%CONFIG_DIR%/jwt/*.pem"
|
|
],
|
|
"aliases": ["oauth2-server", "oauth-server"]
|
|
}
|