We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1fc11f2 + dc38f00 commit d4af18aCopy full SHA for d4af18a
lexik/jwt-authentication-bundle/2.5/config/packages/lexik_jwt_authentication.yaml
@@ -0,0 +1,4 @@
1
+lexik_jwt_authentication:
2
+ secret_key: '%env(resolve:JWT_SECRET_KEY)%'
3
+ public_key: '%env(resolve:JWT_PUBLIC_KEY)%'
4
+ pass_phrase: '%env(JWT_PASSPHRASE)%'
lexik/jwt-authentication-bundle/2.5/manifest.json
@@ -0,0 +1,17 @@
+{
+ "bundles": {
+ "Lexik\\Bundle\\JWTAuthenticationBundle\\LexikJWTAuthenticationBundle": ["all"]
+ },
5
+ "copy-from-recipe": {
6
+ "config/": "%CONFIG_DIR%"
7
8
+ "aliases": ["jwt-auth"],
9
+ "env": {
10
+ "JWT_SECRET_KEY": "%kernel.project_dir%/%CONFIG_DIR%/jwt/private.pem",
11
+ "JWT_PUBLIC_KEY": "%kernel.project_dir%/%CONFIG_DIR%/jwt/public.pem",
12
+ "JWT_PASSPHRASE": "%generate(secret)%"
13
14
+ "gitignore": [
15
+ "/%CONFIG_DIR%/jwt/*.pem"
16
+ ]
17
+}
0 commit comments