From b41686ac2aeee5f8afade308874537b8d5c497d8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 6 Nov 2024 17:06:24 +0000 Subject: [PATCH 1/2] Bump symfony/process from 6.3.2 to 6.4.14 Bumps [symfony/process](https://github.com/symfony/process) from 6.3.2 to 6.4.14. - [Release notes](https://github.com/symfony/process/releases) - [Changelog](https://github.com/symfony/process/blob/7.1/CHANGELOG.md) - [Commits](https://github.com/symfony/process/compare/v6.3.2...v6.4.14) --- updated-dependencies: - dependency-name: symfony/process dependency-type: indirect ... Signed-off-by: dependabot[bot] --- composer.lock | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/composer.lock b/composer.lock index 4938b93..20ceb32 100644 --- a/composer.lock +++ b/composer.lock @@ -4569,16 +4569,16 @@ }, { "name": "symfony/process", - "version": "v6.3.2", + "version": "v6.4.14", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "c5ce962db0d9b6e80247ca5eb9af6472bd4d7b5d" + "reference": "25214adbb0996d18112548de20c281be9f27279f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/c5ce962db0d9b6e80247ca5eb9af6472bd4d7b5d", - "reference": "c5ce962db0d9b6e80247ca5eb9af6472bd4d7b5d", + "url": "https://api.github.com/repos/symfony/process/zipball/25214adbb0996d18112548de20c281be9f27279f", + "reference": "25214adbb0996d18112548de20c281be9f27279f", "shasum": "" }, "require": { @@ -4610,7 +4610,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v6.3.2" + "source": "https://github.com/symfony/process/tree/v6.4.14" }, "funding": [ { @@ -4626,7 +4626,7 @@ "type": "tidelift" } ], - "time": "2023-07-12T16:00:22+00:00" + "time": "2024-11-06T09:25:01+00:00" }, { "name": "symfony/routing", @@ -8190,5 +8190,5 @@ "ext-json": "*" }, "platform-dev": [], - "plugin-api-version": "2.3.0" + "plugin-api-version": "2.6.0" } From eadda4f8c22ad750ff8d63c149a70c27073a682b Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Wed, 6 Nov 2024 17:06:35 +0000 Subject: [PATCH 2/2] Apply fixes from StyleCI --- config/asseco-authentication.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/config/asseco-authentication.php b/config/asseco-authentication.php index d516b9f..859ed34 100644 --- a/config/asseco-authentication.php +++ b/config/asseco-authentication.php @@ -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 @@ -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. @@ -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. @@ -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 @@ -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'),