From 8d1f0028f81f17a738213c659bf4179e5c0d331f Mon Sep 17 00:00:00 2001 From: Tomasz Smolarek <59400506+dyfero@users.noreply.github.com> Date: Wed, 4 Jan 2023 12:43:42 +0100 Subject: [PATCH 1/4] Add queue configuration for long jobs (#264) Co-authored-by: Tomasz Smolarek Co-authored-by: Mateusz Qunabu --- config/horizon.php | 14 ++++++++++++++ config/queue.php | 7 +++++++ 2 files changed, 21 insertions(+) diff --git a/config/horizon.php b/config/horizon.php index a4a0f9eb..04bd910c 100644 --- a/config/horizon.php +++ b/config/horizon.php @@ -183,12 +183,26 @@ 'balanceMaxShift' => 1, 'balanceCooldown' => 3, ], + 'supervisor-long-job' => [ + 'connection' => 'redis-long-job', + 'queue' => ['queue-long-job'], + 'maxProcesses' => 10, + 'balanceMaxShift' => 1, + 'balanceCooldown' => 3, + ], ], 'local' => [ 'supervisor-1' => [ 'maxProcesses' => 3, ], + 'supervisor-long-job' => [ + 'connection' => 'redis-long-job', + 'queue' => ['queue-long-job'], + 'maxProcesses' => 10, + 'balanceMaxShift' => 1, + 'balanceCooldown' => 3, + ], ], ], ]; diff --git a/config/queue.php b/config/queue.php index 07c7d2a9..85a32a9f 100755 --- a/config/queue.php +++ b/config/queue.php @@ -66,6 +66,13 @@ 'block_for' => null, ], + 'redis-long-job' => [ + 'driver' => 'redis', + 'connection' => 'default', + 'queue' => env('REDIS_QUEUE', 'default'), + 'retry_after' => 19000, + 'block_for' => null, + ] ], /* From 17be61d25d936df090547b94f0c6d67ad7da189d Mon Sep 17 00:00:00 2001 From: Maciej Rymarz <59456825+mako321@users.noreply.github.com> Date: Fri, 22 Sep 2023 15:34:51 +0200 Subject: [PATCH 2/4] Update xxx-devilbox-default-php.ini (#298) --- docker/conf/php/xxx-devilbox-default-php.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/conf/php/xxx-devilbox-default-php.ini b/docker/conf/php/xxx-devilbox-default-php.ini index 4eb2e96b..5a5f6cdb 100644 --- a/docker/conf/php/xxx-devilbox-default-php.ini +++ b/docker/conf/php/xxx-devilbox-default-php.ini @@ -14,7 +14,7 @@ memory_limit = 2G ; Timeouts -max_execution_time = 120 +max_execution_time = 3600 max_input_time = 3600 From e6564af750b655277f423f6a6dfe7341ba10ffd3 Mon Sep 17 00:00:00 2001 From: Tomasz Smolarek <59400506+dyfero@users.noreply.github.com> Date: Tue, 31 Oct 2023 10:31:30 +0100 Subject: [PATCH 3/4] Add recommender package (#311) (#312) Co-authored-by: Tomasz Smolarek --- composer.json | 1 + config/l5-swagger.php | 1 + docker/envs/phpunit.xml.cc | 4 ++++ docker/envs/phpunit.xml.mysql | 4 ++++ docker/envs/phpunit.xml.postgres | 4 ++++ phpunit.xml | 4 ++++ 6 files changed, 18 insertions(+) diff --git a/composer.json b/composer.json index 7069723a..2c6ab4de 100644 --- a/composer.json +++ b/composer.json @@ -52,6 +52,7 @@ "escolalms/payments": "^0", "escolalms/permissions": "^0", "escolalms/questionnaire": "^0", + "escolalms/recommender": "^0", "escolalms/reports": "^0", "escolalms/scorm": "^0", "escolalms/settings": "^0", diff --git a/config/l5-swagger.php b/config/l5-swagger.php index 5d95a4ff..30194898 100644 --- a/config/l5-swagger.php +++ b/config/l5-swagger.php @@ -54,6 +54,7 @@ base_path('vendor/escolalms/scorm/src'), base_path('vendor/escolalms/settings/src'), base_path('vendor/escolalms/stationary-events/src'), + base_path('vendor/escolalms/recommender/src'), base_path('vendor/escolalms/reports/src'), base_path('vendor/escolalms/templates/src'), base_path('vendor/escolalms/templates-pdf/src'), diff --git a/docker/envs/phpunit.xml.cc b/docker/envs/phpunit.xml.cc index 96bc6470..1191cf76 100644 --- a/docker/envs/phpunit.xml.cc +++ b/docker/envs/phpunit.xml.cc @@ -23,6 +23,7 @@ ./vendor/escolalms/pages/src ./vendor/escolalms/payments/src ./vendor/escolalms/permissions/src + ./vendor/escolalms/recommender/src ./vendor/escolalms/reports/src ./vendor/escolalms/scorm/src ./vendor/escolalms/settings/src @@ -116,6 +117,9 @@ ./vendor/escolalms/permissions/tests + + ./vendor/escolalms/recommender/tests + ./vendor/escolalms/reports/tests diff --git a/docker/envs/phpunit.xml.mysql b/docker/envs/phpunit.xml.mysql index 3b988c21..8d7ec4b8 100644 --- a/docker/envs/phpunit.xml.mysql +++ b/docker/envs/phpunit.xml.mysql @@ -23,6 +23,7 @@ ./vendor/escolalms/pages/ ./vendor/escolalms/payments/ ./vendor/escolalms/permissions/ + ./vendor/escolalms/recommender/ ./vendor/escolalms/reports/ ./vendor/escolalms/scorm/ ./vendor/escolalms/settings/ @@ -116,6 +117,9 @@ ./vendor/escolalms/permissions/tests + + ./vendor/escolalms/recommender/tests + ./vendor/escolalms/reports/tests diff --git a/docker/envs/phpunit.xml.postgres b/docker/envs/phpunit.xml.postgres index e4853b7c..8416fe1c 100644 --- a/docker/envs/phpunit.xml.postgres +++ b/docker/envs/phpunit.xml.postgres @@ -23,6 +23,7 @@ ./vendor/escolalms/pages/ ./vendor/escolalms/payments/ ./vendor/escolalms/permissions/ + ./vendor/escolalms/recommender/ ./vendor/escolalms/reports/ ./vendor/escolalms/scorm/ ./vendor/escolalms/settings/ @@ -116,6 +117,9 @@ ./vendor/escolalms/permissions/tests + + ./vendor/escolalms/recommender/tests + ./vendor/escolalms/reports/tests diff --git a/phpunit.xml b/phpunit.xml index 21e12d81..f581e35f 100755 --- a/phpunit.xml +++ b/phpunit.xml @@ -21,6 +21,7 @@ ./vendor/escolalms/pages/ ./vendor/escolalms/payments/ ./vendor/escolalms/permissions/ + ./vendor/escolalms/recommender/ ./vendor/escolalms/reports/ ./vendor/escolalms/scorm/ ./vendor/escolalms/settings/ @@ -109,6 +110,9 @@ ./vendor/escolalms/permissions/tests + + ./vendor/escolalms/recommender/tests + ./vendor/escolalms/reports/tests From 8fd90345a14f16b6e171f51990c0381ccbfe5517 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Witold=20Wis=CC=81niewski?= Date: Mon, 21 Oct 2024 08:16:58 +0200 Subject: [PATCH 4/4] Updated composer --- composer.lock | 188 +++++++++++++++++++++++++------------------------- 1 file changed, 94 insertions(+), 94 deletions(-) diff --git a/composer.lock b/composer.lock index c53a7632..b669a691 100644 --- a/composer.lock +++ b/composer.lock @@ -136,16 +136,16 @@ }, { "name": "aws/aws-sdk-php", - "version": "3.324.0", + "version": "3.324.6", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "b258712f0d986e00e1143d55246b6f9e344c7184" + "reference": "7412a44da62fd607efbaac4084e69d6621f29de1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/b258712f0d986e00e1143d55246b6f9e344c7184", - "reference": "b258712f0d986e00e1143d55246b6f9e344c7184", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/7412a44da62fd607efbaac4084e69d6621f29de1", + "reference": "7412a44da62fd607efbaac4084e69d6621f29de1", "shasum": "" }, "require": { @@ -228,9 +228,9 @@ "support": { "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80", "issues": "https://github.com/aws/aws-sdk-php/issues", - "source": "https://github.com/aws/aws-sdk-php/tree/3.324.0" + "source": "https://github.com/aws/aws-sdk-php/tree/3.324.6" }, - "time": "2024-10-10T18:06:36+00:00" + "time": "2024-10-18T18:06:33+00:00" }, { "name": "barryvdh/laravel-dompdf", @@ -3299,16 +3299,16 @@ }, { "name": "escolalms/consultations", - "version": "0.2.44", + "version": "0.2.45", "source": { "type": "git", "url": "https://github.com/EscolaLMS/Consultations.git", - "reference": "0bcfa43ef3e2dacc1fc37951bca93be54f19b6f5" + "reference": "cf6cbf977afcdee407252b79afa3f8df610e4baf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/EscolaLMS/Consultations/zipball/0bcfa43ef3e2dacc1fc37951bca93be54f19b6f5", - "reference": "0bcfa43ef3e2dacc1fc37951bca93be54f19b6f5", + "url": "https://api.github.com/repos/EscolaLMS/Consultations/zipball/cf6cbf977afcdee407252b79afa3f8df610e4baf", + "reference": "cf6cbf977afcdee407252b79afa3f8df610e4baf", "shasum": "" }, "require": { @@ -3356,9 +3356,9 @@ "description": "Escola Headless LMS Consultations", "support": { "issues": "https://github.com/EscolaLMS/Consultations/issues", - "source": "https://github.com/EscolaLMS/Consultations/tree/0.2.44" + "source": "https://github.com/EscolaLMS/Consultations/tree/0.2.45" }, - "time": "2024-10-11T12:48:28+00:00" + "time": "2024-10-21T06:02:01+00:00" }, { "name": "escolalms/core", @@ -4653,16 +4653,16 @@ }, { "name": "escolalms/questionnaire", - "version": "0.2.20", + "version": "0.2.21", "source": { "type": "git", "url": "https://github.com/EscolaLMS/Questionnaire.git", - "reference": "bfacd1e45935d8eaf0e6dd286150c838a049c4ef" + "reference": "a20e9d7bb8555af73c3310c1a5e61e90dc875fc9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/EscolaLMS/Questionnaire/zipball/bfacd1e45935d8eaf0e6dd286150c838a049c4ef", - "reference": "bfacd1e45935d8eaf0e6dd286150c838a049c4ef", + "url": "https://api.github.com/repos/EscolaLMS/Questionnaire/zipball/a20e9d7bb8555af73c3310c1a5e61e90dc875fc9", + "reference": "a20e9d7bb8555af73c3310c1a5e61e90dc875fc9", "shasum": "" }, "require": { @@ -4673,7 +4673,8 @@ }, "require-dev": { "escolalms/courses": "^0", - "orchestra/testbench": "^6", + "nunomaduro/larastan": "^2.0", + "orchestra/testbench": ">=6", "phpunit/phpunit": "^9.0" }, "type": "package", @@ -4705,9 +4706,9 @@ "description": "Escola LMS Questionnaire", "support": { "issues": "https://github.com/EscolaLMS/Questionnaire/issues", - "source": "https://github.com/EscolaLMS/Questionnaire/tree/0.2.20" + "source": "https://github.com/EscolaLMS/Questionnaire/tree/0.2.21" }, - "time": "2024-03-22T13:24:01+00:00" + "time": "2024-10-14T07:36:56+00:00" }, { "name": "escolalms/recommender", @@ -6492,16 +6493,16 @@ }, { "name": "google/apiclient", - "version": "v2.17.0", + "version": "v2.18.0", "source": { "type": "git", "url": "https://github.com/googleapis/google-api-php-client.git", - "reference": "b1f63d72c44307ec8ef7bf18f1012de35d8944ed" + "reference": "846f149c9f879449145326dad99ef00bf1d879f3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/googleapis/google-api-php-client/zipball/b1f63d72c44307ec8ef7bf18f1012de35d8944ed", - "reference": "b1f63d72c44307ec8ef7bf18f1012de35d8944ed", + "url": "https://api.github.com/repos/googleapis/google-api-php-client/zipball/846f149c9f879449145326dad99ef00bf1d879f3", + "reference": "846f149c9f879449145326dad99ef00bf1d879f3", "shasum": "" }, "require": { @@ -6555,22 +6556,22 @@ ], "support": { "issues": "https://github.com/googleapis/google-api-php-client/issues", - "source": "https://github.com/googleapis/google-api-php-client/tree/v2.17.0" + "source": "https://github.com/googleapis/google-api-php-client/tree/v2.18.0" }, - "time": "2024-07-10T14:57:54+00:00" + "time": "2024-10-16T21:58:58+00:00" }, { "name": "google/apiclient-services", - "version": "v0.376.0", + "version": "v0.378.0", "source": { "type": "git", "url": "https://github.com/googleapis/google-api-php-client-services.git", - "reference": "013c4fcdda03c804e96c6aad332456e05916c665" + "reference": "2290dcd117b77aaa0ff6a13a19334322beb76a64" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/googleapis/google-api-php-client-services/zipball/013c4fcdda03c804e96c6aad332456e05916c665", - "reference": "013c4fcdda03c804e96c6aad332456e05916c665", + "url": "https://api.github.com/repos/googleapis/google-api-php-client-services/zipball/2290dcd117b77aaa0ff6a13a19334322beb76a64", + "reference": "2290dcd117b77aaa0ff6a13a19334322beb76a64", "shasum": "" }, "require": { @@ -6599,9 +6600,9 @@ ], "support": { "issues": "https://github.com/googleapis/google-api-php-client-services/issues", - "source": "https://github.com/googleapis/google-api-php-client-services/tree/v0.376.0" + "source": "https://github.com/googleapis/google-api-php-client-services/tree/v0.378.0" }, - "time": "2024-10-06T01:06:23+00:00" + "time": "2024-10-21T01:08:24+00:00" }, { "name": "google/auth", @@ -7269,16 +7270,16 @@ }, { "name": "guzzlehttp/promises", - "version": "2.0.3", + "version": "2.0.4", "source": { "type": "git", "url": "https://github.com/guzzle/promises.git", - "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8" + "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8", - "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8", + "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455", + "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455", "shasum": "" }, "require": { @@ -7332,7 +7333,7 @@ ], "support": { "issues": "https://github.com/guzzle/promises/issues", - "source": "https://github.com/guzzle/promises/tree/2.0.3" + "source": "https://github.com/guzzle/promises/tree/2.0.4" }, "funding": [ { @@ -7348,7 +7349,7 @@ "type": "tidelift" } ], - "time": "2024-07-18T10:29:17+00:00" + "time": "2024-10-17T10:06:22+00:00" }, { "name": "guzzlehttp/psr7", @@ -10913,33 +10914,32 @@ }, { "name": "nunomaduro/termwind", - "version": "v1.15.1", + "version": "v1.16.0", "source": { "type": "git", "url": "https://github.com/nunomaduro/termwind.git", - "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc" + "reference": "dcf1ec3dfa36137b7ce41d43866644a7ab8fc257" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/8ab0b32c8caa4a2e09700ea32925441385e4a5dc", - "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc", + "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/dcf1ec3dfa36137b7ce41d43866644a7ab8fc257", + "reference": "dcf1ec3dfa36137b7ce41d43866644a7ab8fc257", "shasum": "" }, "require": { "ext-mbstring": "*", - "php": "^8.0", - "symfony/console": "^5.3.0|^6.0.0" - }, - "require-dev": { - "ergebnis/phpstan-rules": "^1.0.", - "illuminate/console": "^8.0|^9.0", - "illuminate/support": "^8.0|^9.0", - "laravel/pint": "^1.0.0", - "pestphp/pest": "^1.21.0", - "pestphp/pest-plugin-mock": "^1.0", - "phpstan/phpstan": "^1.4.6", - "phpstan/phpstan-strict-rules": "^1.1.0", - "symfony/var-dumper": "^5.2.7|^6.0.0", + "php": "^8.1", + "symfony/console": "^6.4.12" + }, + "require-dev": { + "illuminate/console": "^10.48.22", + "illuminate/support": "^10.48.22", + "laravel/pint": "^1.18.1", + "pestphp/pest": "^2", + "pestphp/pest-plugin-mock": "2.0.0", + "phpstan/phpstan": "^1.12.6", + "phpstan/phpstan-strict-rules": "^1.6.1", + "symfony/var-dumper": "^6.4.11", "thecodingmachine/phpstan-strict-rules": "^1.0.0" }, "type": "library", @@ -10979,7 +10979,7 @@ ], "support": { "issues": "https://github.com/nunomaduro/termwind/issues", - "source": "https://github.com/nunomaduro/termwind/tree/v1.15.1" + "source": "https://github.com/nunomaduro/termwind/tree/v1.16.0" }, "funding": [ { @@ -10995,7 +10995,7 @@ "type": "github" } ], - "time": "2023-02-08T01:06:31+00:00" + "time": "2024-10-15T15:27:12+00:00" }, { "name": "nyholm/psr7", @@ -18121,16 +18121,16 @@ }, { "name": "zircote/swagger-php", - "version": "4.11.0", + "version": "4.11.1", "source": { "type": "git", "url": "https://github.com/zircote/swagger-php.git", - "reference": "3b6f3800f4fd6544ada4dce180c6b69eaead7c7c" + "reference": "7df10e8ec47db07c031db317a25bef962b4e5de1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zircote/swagger-php/zipball/3b6f3800f4fd6544ada4dce180c6b69eaead7c7c", - "reference": "3b6f3800f4fd6544ada4dce180c6b69eaead7c7c", + "url": "https://api.github.com/repos/zircote/swagger-php/zipball/7df10e8ec47db07c031db317a25bef962b4e5de1", + "reference": "7df10e8ec47db07c031db317a25bef962b4e5de1", "shasum": "" }, "require": { @@ -18196,9 +18196,9 @@ ], "support": { "issues": "https://github.com/zircote/swagger-php/issues", - "source": "https://github.com/zircote/swagger-php/tree/4.11.0" + "source": "https://github.com/zircote/swagger-php/tree/4.11.1" }, - "time": "2024-10-09T03:11:12+00:00" + "time": "2024-10-15T19:20:02+00:00" } ], "packages-dev": [ @@ -18539,40 +18539,40 @@ }, { "name": "nunomaduro/collision", - "version": "v7.10.0", + "version": "v7.11.0", "source": { "type": "git", "url": "https://github.com/nunomaduro/collision.git", - "reference": "49ec67fa7b002712da8526678abd651c09f375b2" + "reference": "994ea93df5d4132f69d3f1bd74730509df6e8a05" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nunomaduro/collision/zipball/49ec67fa7b002712da8526678abd651c09f375b2", - "reference": "49ec67fa7b002712da8526678abd651c09f375b2", + "url": "https://api.github.com/repos/nunomaduro/collision/zipball/994ea93df5d4132f69d3f1bd74730509df6e8a05", + "reference": "994ea93df5d4132f69d3f1bd74730509df6e8a05", "shasum": "" }, "require": { - "filp/whoops": "^2.15.3", + "filp/whoops": "^2.16.0", "nunomaduro/termwind": "^1.15.1", "php": "^8.1.0", - "symfony/console": "^6.3.4" + "symfony/console": "^6.4.12" }, "conflict": { "laravel/framework": ">=11.0.0" }, "require-dev": { - "brianium/paratest": "^7.3.0", - "laravel/framework": "^10.28.0", - "laravel/pint": "^1.13.3", - "laravel/sail": "^1.25.0", - "laravel/sanctum": "^3.3.1", - "laravel/tinker": "^2.8.2", - "nunomaduro/larastan": "^2.6.4", - "orchestra/testbench-core": "^8.13.0", - "pestphp/pest": "^2.23.2", - "phpunit/phpunit": "^10.4.1", - "sebastian/environment": "^6.0.1", - "spatie/laravel-ignition": "^2.3.1" + "brianium/paratest": "^7.3.1", + "laravel/framework": "^10.48.22", + "laravel/pint": "^1.18.1", + "laravel/sail": "^1.36.0", + "laravel/sanctum": "^3.3.3", + "laravel/tinker": "^2.10.0", + "nunomaduro/larastan": "^2.9.8", + "orchestra/testbench-core": "^8.28.3", + "pestphp/pest": "^2.35.1", + "phpunit/phpunit": "^10.5.36", + "sebastian/environment": "^6.1.0", + "spatie/laravel-ignition": "^2.8.0" }, "type": "library", "extra": { @@ -18631,7 +18631,7 @@ "type": "patreon" } ], - "time": "2023-10-11T15:45:01+00:00" + "time": "2024-10-15T15:12:40+00:00" }, { "name": "orchestra/canvas", @@ -19441,16 +19441,16 @@ }, { "name": "phpstan/phpstan", - "version": "1.12.6", + "version": "1.12.7", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "dc4d2f145a88ea7141ae698effd64d9df46527ae" + "reference": "dc2b9976bd8b0f84ec9b0e50cc35378551de7af0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/dc4d2f145a88ea7141ae698effd64d9df46527ae", - "reference": "dc4d2f145a88ea7141ae698effd64d9df46527ae", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/dc2b9976bd8b0f84ec9b0e50cc35378551de7af0", + "reference": "dc2b9976bd8b0f84ec9b0e50cc35378551de7af0", "shasum": "" }, "require": { @@ -19495,7 +19495,7 @@ "type": "github" } ], - "time": "2024-10-06T15:03:59+00:00" + "time": "2024-10-18T11:12:07+00:00" }, { "name": "phpunit/php-code-coverage", @@ -19921,16 +19921,16 @@ }, { "name": "rector/rector", - "version": "1.2.6", + "version": "1.2.8", "source": { "type": "git", "url": "https://github.com/rectorphp/rector.git", - "reference": "6ca85da28159dbd3bb36211c5104b7bc91278e99" + "reference": "05755bf43617449c08ee8e50fb840c85ad3b1240" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/rectorphp/rector/zipball/6ca85da28159dbd3bb36211c5104b7bc91278e99", - "reference": "6ca85da28159dbd3bb36211c5104b7bc91278e99", + "url": "https://api.github.com/repos/rectorphp/rector/zipball/05755bf43617449c08ee8e50fb840c85ad3b1240", + "reference": "05755bf43617449c08ee8e50fb840c85ad3b1240", "shasum": "" }, "require": { @@ -19968,7 +19968,7 @@ ], "support": { "issues": "https://github.com/rectorphp/rector/issues", - "source": "https://github.com/rectorphp/rector/tree/1.2.6" + "source": "https://github.com/rectorphp/rector/tree/1.2.8" }, "funding": [ { @@ -19976,7 +19976,7 @@ "type": "github" } ], - "time": "2024-10-03T08:56:44+00:00" + "time": "2024-10-18T11:54:27+00:00" }, { "name": "sebastian/cli-parser", @@ -21871,12 +21871,12 @@ ], "aliases": [], "minimum-stability": "dev", - "stability-flags": {}, + "stability-flags": [], "prefer-stable": true, "prefer-lowest": false, "platform": { "php": ">=8.1" }, - "platform-dev": {}, + "platform-dev": [], "plugin-api-version": "2.6.0" }