Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump symfony/process from 6.3.2 to 6.4.14 #35

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions config/asseco-authentication.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,21 @@
/**
* Url the asseco:fetch-key command will call to fetch the public key.
*/
'auth_url' => env('AUTH_URL'),
'auth_url' => env('AUTH_URL'),
/**
* Under what key in the response array can the public key be found.
*/
'public_key_array_location' => 'public_key',
'public_key_array_location' => 'public_key',

/**
* Location where to save the public key.
*/
'public_key' => env('JWT_PUBLIC_KEY', '/var/www/html/storage/app/public.pem'),
'public_key' => env('JWT_PUBLIC_KEY', '/var/www/html/storage/app/public.pem'),

/**
* User that will be injected into the Laravel auth middleware.
*/
'user' => TokenUser::class,
'user' => TokenUser::class,

/**
* If set to false, the verifier will not throw an exception and will load the user entity
Expand All @@ -34,7 +34,7 @@
/**
* If set to false, token expiration will not be checked.
*/
'verify_expiration' => true,
'verify_expiration' => true,

/**
* The key set here will be the one the decoder will look for in the claims array and set as the identifier.
Expand All @@ -43,7 +43,7 @@
* $userObject->user_id. However, it is recommended to use $userObject->getId() that will return the
* same thing or null if the property could not be found in the claims.
*/
'user_identifier' => 'user_id',
'user_identifier' => 'user_id',

/**
* The key set here will be the one the decoder will look for in the claims array and set as the identifier.
Expand All @@ -54,7 +54,7 @@
*
* NOTE: If this key is found the TokenUser will be marked as a service user
*/
'client_identifier' => 'clientId',
'client_identifier' => 'clientId',

/**
* Any additional claim values you wish to map should be set here as a key=>value pair where the key is the
Expand All @@ -68,7 +68,7 @@
* This will search for the value subgroup in the group array of the claims and set it as a property
* someSubgroup in the user object
*/
'claim_map' => [],
'claim_map' => [],

'client_id' => env('CLIENT_ID'),

Expand Down
Loading