From 1c67e1d26f16b5191fe3cbf506715116025ff4d5 Mon Sep 17 00:00:00 2001 From: Arthur de Moulins Date: Wed, 20 Nov 2024 15:31:55 +0100 Subject: [PATCH] composer update --- bin/optimize-composer-docker-cache | 12 +- databox/api/Dockerfile | 13 +- databox/api/composer.lock | 112 ++++----- databox/api/docker/caching/composer.json | 33 ++- databox/api/docker/caching/composer.lock | 283 ++++++++-------------- expose/api/composer.lock | 100 ++++---- expose/api/docker/caching/composer.json | 10 +- expose/api/docker/caching/composer.lock | 102 ++++---- notify/api/composer.lock | 84 +++---- notify/api/docker/caching/composer.json | 8 +- notify/api/docker/caching/composer.lock | 131 +++++----- uploader/api/composer.lock | 88 +++---- uploader/api/docker/caching/composer.json | 12 +- uploader/api/docker/caching/composer.lock | 115 ++++----- 14 files changed, 511 insertions(+), 592 deletions(-) diff --git a/bin/optimize-composer-docker-cache b/bin/optimize-composer-docker-cache index ceea7d2b9..6d6e7066c 100755 --- a/bin/optimize-composer-docker-cache +++ b/bin/optimize-composer-docker-cache @@ -62,7 +62,7 @@ function updateProject(string $project) 'export COMPOSER_MEMORY_LIMIT=-1', '(cd %s', 'rm -rf composer.lock vendor', - 'composer update --no-interaction --no-scripts --ansi --no-plugins', + 'composer update --no-install --no-interaction --no-scripts --ansi --no-plugins', 'rm -rf vendor)', '(cd %s && composer update --no-interaction --ansi)', ]), dirname($composerCacheSrc), $project)); @@ -74,6 +74,7 @@ function updateProject(string $project) function flattenSubRequire(string $workingDir, array $composer): array { $repositories = $composer['repositories'] ?? null; if ($repositories) { + $localPackages = []; foreach ($repositories as $repository) { if ('path' === $repository['type']) { $url = $repository['url']; @@ -81,15 +82,18 @@ function flattenSubRequire(string $workingDir, array $composer): array { $subComposer = json_decode(file_get_contents($path.'/composer.json'), true, 512, JSON_THROW_ON_ERROR); - unset($composer['require'][$subComposer['name']]); - + $localPackages[$subComposer['name']] = true; foreach ($subComposer['require'] as $lib => $version) { if (str_contains($lib, '/')) { - $composer['require'][$lib] = $version; + $composer['require'][$lib] ??= $version; } } } } + + foreach (array_keys($localPackages) as $localPackage) { + unset($composer['require'][$localPackage]); + } } return $composer; diff --git a/databox/api/Dockerfile b/databox/api/Dockerfile index 673b974b8..762532ec2 100644 --- a/databox/api/Dockerfile +++ b/databox/api/Dockerfile @@ -47,23 +47,28 @@ RUN apk add --no-cache \ exif \ && apk del build-essentials +RUN chown -R app:app . + +USER app + # Warm up composer cache for faster builds COPY ./databox/api/docker/caching/composer.* ./ RUN composer install --prefer-dist --no-dev --no-progress --classmap-authoritative --no-interaction --no-scripts \ && rm -rf vendor composer.* # End warm up -COPY --chown=app:app lib/php /lib/php -COPY --chown=app:app ./databox/api . +COPY lib/php /lib/php +COPY ./databox/api . RUN mkdir -p var/cache var/logs var/sessions \ && composer install --prefer-dist --no-dev --no-progress --classmap-authoritative --no-interaction \ - && composer clear-cache \ - && chown -R app: . + && composer clear-cache ARG SENTRY_RELEASE ENV SENTRY_RELEASE=${SENTRY_RELEASE} +USER root + ENTRYPOINT ["/srv/app/docker/php-entrypoint.sh"] CMD ["php-fpm"] diff --git a/databox/api/composer.lock b/databox/api/composer.lock index 801f5b6b4..2bcd2b9a8 100644 --- a/databox/api/composer.lock +++ b/databox/api/composer.lock @@ -920,16 +920,16 @@ }, { "name": "api-platform/core", - "version": "v3.4.5", + "version": "v3.4.6", "source": { "type": "git", "url": "https://github.com/api-platform/core.git", - "reference": "8bdf04409a4e873c889d22c4e05a3a81137f2a57" + "reference": "f251ed152d8c3709cef177a6ce5e0f34c7abb680" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/api-platform/core/zipball/8bdf04409a4e873c889d22c4e05a3a81137f2a57", - "reference": "8bdf04409a4e873c889d22c4e05a3a81137f2a57", + "url": "https://api.github.com/repos/api-platform/core/zipball/f251ed152d8c3709cef177a6ce5e0f34c7abb680", + "reference": "f251ed152d8c3709cef177a6ce5e0f34c7abb680", "shasum": "" }, "require": { @@ -956,7 +956,7 @@ "elasticsearch/elasticsearch": ">=8.0,<8.4", "phpspec/prophecy": "<1.15", "phpunit/phpunit": "<9.5", - "symfony/framework-bundle": "6.4.6 || 7.1.6", + "symfony/framework-bundle": "6.4.6 || 7.0.6", "symfony/var-exporter": "<6.1.1" }, "replace": { @@ -1019,7 +1019,7 @@ "justinrainbow/json-schema": "^5.2.1", "phpspec/prophecy-phpunit": "^2.0", "phpstan/extension-installer": "^1.1", - "phpstan/phpdoc-parser": "^1.13", + "phpstan/phpdoc-parser": "^1.13|^2.0", "phpstan/phpstan": "^1.10", "phpstan/phpstan-doctrine": "^1.0", "phpstan/phpstan-phpunit": "^1.0", @@ -1135,9 +1135,9 @@ ], "support": { "issues": "https://github.com/api-platform/core/issues", - "source": "https://github.com/api-platform/core/tree/v3.4.5" + "source": "https://github.com/api-platform/core/tree/v3.4.6" }, - "time": "2024-10-26T07:20:01+00:00" + "time": "2024-11-15T09:41:19+00:00" }, { "name": "arthem/object-reference-bundle", @@ -1240,16 +1240,16 @@ }, { "name": "aws/aws-sdk-php", - "version": "3.326.0", + "version": "3.328.2", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "5420284de9aad84e375fa8012cefd834bebfd623" + "reference": "63a6366a8011dffec3d1ef838c97ca6b6ddb17a2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/5420284de9aad84e375fa8012cefd834bebfd623", - "reference": "5420284de9aad84e375fa8012cefd834bebfd623", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/63a6366a8011dffec3d1ef838c97ca6b6ddb17a2", + "reference": "63a6366a8011dffec3d1ef838c97ca6b6ddb17a2", "shasum": "" }, "require": { @@ -1332,9 +1332,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.326.0" + "source": "https://github.com/aws/aws-sdk-php/tree/3.328.2" }, - "time": "2024-11-13T19:07:44+00:00" + "time": "2024-11-19T20:28:51+00:00" }, { "name": "beberlei/doctrineextensions", @@ -2571,16 +2571,16 @@ }, { "name": "doctrine/doctrine-bundle", - "version": "2.13.0", + "version": "2.13.1", "source": { "type": "git", "url": "https://github.com/doctrine/DoctrineBundle.git", - "reference": "ca59d84b8e63143ce1aed90cdb333ba329d71563" + "reference": "2740ad8b8739b39ab37d409c972b092f632b025a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/ca59d84b8e63143ce1aed90cdb333ba329d71563", - "reference": "ca59d84b8e63143ce1aed90cdb333ba329d71563", + "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/2740ad8b8739b39ab37d409c972b092f632b025a", + "reference": "2740ad8b8739b39ab37d409c972b092f632b025a", "shasum": "" }, "require": { @@ -2594,7 +2594,7 @@ "symfony/console": "^5.4 || ^6.0 || ^7.0", "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0", "symfony/deprecation-contracts": "^2.1 || ^3", - "symfony/doctrine-bridge": "^5.4.19 || ^6.0.7 || ^7.0", + "symfony/doctrine-bridge": "^5.4.46 || ^6.4.3 || ^7.0.3", "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0", "symfony/polyfill-php80": "^1.15", "symfony/service-contracts": "^1.1.1 || ^2.0 || ^3" @@ -2671,7 +2671,7 @@ ], "support": { "issues": "https://github.com/doctrine/DoctrineBundle/issues", - "source": "https://github.com/doctrine/DoctrineBundle/tree/2.13.0" + "source": "https://github.com/doctrine/DoctrineBundle/tree/2.13.1" }, "funding": [ { @@ -2687,7 +2687,7 @@ "type": "tidelift" } ], - "time": "2024-09-01T09:46:40+00:00" + "time": "2024-11-08T23:27:54+00:00" }, { "name": "doctrine/doctrine-migrations-bundle", @@ -3470,23 +3470,23 @@ }, { "name": "easycorp/easyadmin-bundle", - "version": "v4.14.5", + "version": "v4.15.0", "source": { "type": "git", "url": "https://github.com/EasyCorp/EasyAdminBundle.git", - "reference": "575b251366c2a88c5f0c1562e517b5243bdc4bd2" + "reference": "ae4af70160783b357ccc69c81ea002b661aa3396" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/EasyCorp/EasyAdminBundle/zipball/575b251366c2a88c5f0c1562e517b5243bdc4bd2", - "reference": "575b251366c2a88c5f0c1562e517b5243bdc4bd2", + "url": "https://api.github.com/repos/EasyCorp/EasyAdminBundle/zipball/ae4af70160783b357ccc69c81ea002b661aa3396", + "reference": "ae4af70160783b357ccc69c81ea002b661aa3396", "shasum": "" }, "require": { "doctrine/doctrine-bundle": "^2.5", - "doctrine/orm": "^2.10|^3.0", + "doctrine/orm": "^2.12|^3.0", "ext-json": "*", - "php": ">=8.0.2", + "php": ">=8.1", "symfony/asset": "^5.4|^6.0|^7.0", "symfony/cache": "^5.4|^6.0|^7.0", "symfony/config": "^5.4|^6.0|^7.0", @@ -3553,7 +3553,7 @@ ], "support": { "issues": "https://github.com/EasyCorp/EasyAdminBundle/issues", - "source": "https://github.com/EasyCorp/EasyAdminBundle/tree/v4.14.5" + "source": "https://github.com/EasyCorp/EasyAdminBundle/tree/v4.15.0" }, "funding": [ { @@ -3561,7 +3561,7 @@ "type": "github" } ], - "time": "2024-11-08T07:07:54+00:00" + "time": "2024-11-19T20:48:31+00:00" }, { "name": "elasticsearch/elasticsearch", @@ -4672,16 +4672,16 @@ }, { "name": "imagine/imagine", - "version": "1.3.5", + "version": "1.4.0", "source": { "type": "git", "url": "https://github.com/php-imagine/Imagine.git", - "reference": "7151d553edec4dc2bbac60419f7a74ff34700e7f" + "reference": "2c8887dc7e84e97283037f02dd9c957d4b3a0b82" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-imagine/Imagine/zipball/7151d553edec4dc2bbac60419f7a74ff34700e7f", - "reference": "7151d553edec4dc2bbac60419f7a74ff34700e7f", + "url": "https://api.github.com/repos/php-imagine/Imagine/zipball/2c8887dc7e84e97283037f02dd9c957d4b3a0b82", + "reference": "2c8887dc7e84e97283037f02dd9c957d4b3a0b82", "shasum": "" }, "require": { @@ -4728,9 +4728,9 @@ ], "support": { "issues": "https://github.com/php-imagine/Imagine/issues", - "source": "https://github.com/php-imagine/Imagine/tree/1.3.5" + "source": "https://github.com/php-imagine/Imagine/tree/1.4.0" }, - "time": "2023-06-07T14:49:52+00:00" + "time": "2024-11-18T07:44:52+00:00" }, { "name": "intervention/image", @@ -4818,28 +4818,28 @@ }, { "name": "jean85/pretty-package-versions", - "version": "2.0.6", + "version": "2.1.0", "source": { "type": "git", "url": "https://github.com/Jean85/pretty-package-versions.git", - "reference": "f9fdd29ad8e6d024f52678b570e5593759b550b4" + "reference": "3c4e5f62ba8d7de1734312e4fff32f67a8daaf10" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/f9fdd29ad8e6d024f52678b570e5593759b550b4", - "reference": "f9fdd29ad8e6d024f52678b570e5593759b550b4", + "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/3c4e5f62ba8d7de1734312e4fff32f67a8daaf10", + "reference": "3c4e5f62ba8d7de1734312e4fff32f67a8daaf10", "shasum": "" }, "require": { - "composer-runtime-api": "^2.0.0", - "php": "^7.1|^8.0" + "composer-runtime-api": "^2.1.0", + "php": "^7.4|^8.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.2", "jean85/composer-provided-replaced-stub-package": "^1.0", "phpstan/phpstan": "^1.4", - "phpunit/phpunit": "^7.5|^8.5|^9.4", - "vimeo/psalm": "^4.3" + "phpunit/phpunit": "^7.5|^8.5|^9.6", + "vimeo/psalm": "^4.3 || ^5.0" }, "type": "library", "extra": { @@ -4871,9 +4871,9 @@ ], "support": { "issues": "https://github.com/Jean85/pretty-package-versions/issues", - "source": "https://github.com/Jean85/pretty-package-versions/tree/2.0.6" + "source": "https://github.com/Jean85/pretty-package-versions/tree/2.1.0" }, - "time": "2024-03-08T09:58:59+00:00" + "time": "2024-11-18T16:19:46+00:00" }, { "name": "kornrunner/blurhash", @@ -14508,16 +14508,16 @@ }, { "name": "twig/twig", - "version": "v3.14.2", + "version": "v3.15.0", "source": { "type": "git", "url": "https://github.com/twigphp/Twig.git", - "reference": "0b6f9d8370bb3b7f1ce5313ed8feb0fafd6e399a" + "reference": "2d5b3964cc21d0188633d7ddce732dc8e874db02" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/twigphp/Twig/zipball/0b6f9d8370bb3b7f1ce5313ed8feb0fafd6e399a", - "reference": "0b6f9d8370bb3b7f1ce5313ed8feb0fafd6e399a", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/2d5b3964cc21d0188633d7ddce732dc8e874db02", + "reference": "2d5b3964cc21d0188633d7ddce732dc8e874db02", "shasum": "" }, "require": { @@ -14571,7 +14571,7 @@ ], "support": { "issues": "https://github.com/twigphp/Twig/issues", - "source": "https://github.com/twigphp/Twig/tree/v3.14.2" + "source": "https://github.com/twigphp/Twig/tree/v3.15.0" }, "funding": [ { @@ -14583,7 +14583,7 @@ "type": "tidelift" } ], - "time": "2024-11-07T12:36:22+00:00" + "time": "2024-11-17T15:59:19+00:00" }, { "name": "webmozart/assert", @@ -15504,16 +15504,16 @@ }, { "name": "phpstan/phpstan", - "version": "1.12.10", + "version": "1.12.11", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "fc463b5d0fe906dcf19689be692c65c50406a071" + "reference": "0d1fc20a962a91be578bcfe7cf939e6e1a2ff733" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/fc463b5d0fe906dcf19689be692c65c50406a071", - "reference": "fc463b5d0fe906dcf19689be692c65c50406a071", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0d1fc20a962a91be578bcfe7cf939e6e1a2ff733", + "reference": "0d1fc20a962a91be578bcfe7cf939e6e1a2ff733", "shasum": "" }, "require": { @@ -15558,7 +15558,7 @@ "type": "github" } ], - "time": "2024-11-11T15:37:09+00:00" + "time": "2024-11-17T14:08:01+00:00" }, { "name": "phpunit/php-code-coverage", diff --git a/databox/api/docker/caching/composer.json b/databox/api/docker/caching/composer.json index 2428303ee..a310ec8b3 100644 --- a/databox/api/docker/caching/composer.json +++ b/databox/api/docker/caching/composer.json @@ -147,52 +147,51 @@ "doctrine/doctrine-migrations-bundle": "^3.0", "doctrine/orm": "^2.7", "exercise/htmlpurifier-bundle": "^4.1", - "friendsofsymfony/elastica-bundle": "^6.3", + "friendsofsymfony/elastica-bundle": "^6@dev", "gedmo/doctrine-extensions": "^3.5", "hautelook/alice-bundle": "^2.10", "intervention/image": "^2.7", "kornrunner/blurhash": "^1.2", "lcobucci/clock": "^3.2", - "lcobucci/jwt": "^5.0", + "lcobucci/jwt": "^5", "nelmio/cors-bundle": "^2.1", "phpdocumentor/reflection-docblock": "^5.2", "phpstan/phpdoc-parser": "^1.0", "predis/predis": "^1.1", "pusher/pusher-php-server": "^7.2.4", - "ramsey/uuid-doctrine": "^1.5", + "ramsey/uuid-doctrine": "^1.6,<1.7", "stof/doctrine-extensions-bundle": "^1.7", "symfony/amqp-messenger": "^6.3", "symfony/asset": "^6.3", - "symfony/console": "^5.4 || ^6 || ^7", + "symfony/console": "^6.3", "symfony/dotenv": "^6.3", - "symfony/expression-language": "^5.2 || ^6.2 || ^7", + "symfony/expression-language": "^6.3", "symfony/flex": "^1.3.1", - "symfony/framework-bundle": "^6", + "symfony/framework-bundle": "^6.3", "symfony/lock": "^6.3", - "symfony/mime": "^6|^7", - "symfony/property-access": "^5.2 || ^6.2 || ^7", + "symfony/mime": "^6.3", + "symfony/property-access": "^6.3", "symfony/property-info": "^6.3", "symfony/psr-http-message-bridge": "^2.3", "symfony/rate-limiter": "^6.3", - "symfony/security-bundle": "^6", + "symfony/security-bundle": "^6.3", "symfony/security-core": "^6.3", - "symfony/serializer": "^6.4", + "symfony/serializer": "^6.3", "symfony/twig-bundle": "^6.3", "symfony/validator": "^6.3", - "symfony/yaml": "^6.2 || ^7", + "symfony/yaml": "^6.3", "symfony/monolog-bundle": "^3.5", "sentry/sentry-symfony": "^4.11", - "symfony/messenger": "^6.4", + "symfony/messenger": "^6", "guzzlehttp/guzzle": "^7.2", - "alchemy/core-bundle": "@dev", - "aws/aws-sdk-php": "^3.20", - "symfony/process": "^6.3 || ^7", + "aws/aws-sdk-php": "^3.325", + "symfony/process": "^6.3", "imagine/imagine": "^1.3", "liip/imagine-bundle": "^2.13", - "symfony/http-client": "^6", + "symfony/http-client": "^6.4.11", "php-ffmpeg/php-ffmpeg": "^1.2", "spatie/pdf-to-image": "^3.1", - "ramsey/uuid": "^4.2", + "ramsey/uuid": "^4.2.3", "oneup/flysystem-bundle": "^4.4", "league/flysystem-aws-s3-v3": "^3.0", "symfony/doctrine-messenger": "^6.4.7", diff --git a/databox/api/docker/caching/composer.lock b/databox/api/docker/caching/composer.lock index 4650bdd4f..7087dcefa 100644 --- a/databox/api/docker/caching/composer.lock +++ b/databox/api/docker/caching/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "4ff03348c2689d9246f317bf4327cf51", + "content-hash": "d289c26461299ebdec929ea5b90ba5a4", "packages": [ { "name": "alchemy/acl-bundle", @@ -57,66 +57,6 @@ }, "time": "2024-09-24T14:58:27+00:00" }, - { - "name": "alchemy/core-bundle", - "version": "dev-PS-696-stack-db", - "dist": { - "type": "path", - "url": "../../lib/php/core-bundle", - "reference": "b693792ee8306db6d1b5fd36d08fdea12775f96c" - }, - "require": { - "php": "^8.3", - "ramsey/uuid-doctrine": "^1.6 || ^2.1.0", - "sentry/sentry-symfony": "^4.11", - "symfony/framework-bundle": "^4.0 || ^5 || ^6", - "symfony/monolog-bundle": "^3.5", - "symfony/security-bundle": "^4.0 || ^5 || ^6" - }, - "require-dev": { - "friendsofphp/php-cs-fixer": "^3.17", - "phpunit/phpunit": "^9.5", - "pusher/pusher-php-server": "^7.2.4", - "rector/rector": "^1.0.4" - }, - "suggest": { - "pusher/pusher-php-server": "^7.2.4" - }, - "type": "symfony-bundle", - "autoload": { - "psr-4": { - "Alchemy\\CoreBundle\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "autoload-dev": { - "psr-4": { - "Alchemy\\CoreBundle\\Tests\\": "/Tests/" - } - }, - "scripts": { - "rector": [ - "vendor/bin/rector" - ], - "cs": [ - "vendor/bin/php-cs-fixer fix" - ], - "test": [ - "./vendor/bin/phpunit" - ] - }, - "license": [ - "MIT" - ], - "description": "Alchemy core bundle", - "homepage": "https://www.alchemy.fr/", - "transport-options": { - "symlink": true, - "relative": true - } - }, { "name": "alchemy/phpexiftool", "version": "4.1.1", @@ -187,16 +127,16 @@ }, { "name": "api-platform/core", - "version": "v3.4.5", + "version": "v3.4.6", "source": { "type": "git", "url": "https://github.com/api-platform/core.git", - "reference": "8bdf04409a4e873c889d22c4e05a3a81137f2a57" + "reference": "f251ed152d8c3709cef177a6ce5e0f34c7abb680" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/api-platform/core/zipball/8bdf04409a4e873c889d22c4e05a3a81137f2a57", - "reference": "8bdf04409a4e873c889d22c4e05a3a81137f2a57", + "url": "https://api.github.com/repos/api-platform/core/zipball/f251ed152d8c3709cef177a6ce5e0f34c7abb680", + "reference": "f251ed152d8c3709cef177a6ce5e0f34c7abb680", "shasum": "" }, "require": { @@ -223,7 +163,7 @@ "elasticsearch/elasticsearch": ">=8.0,<8.4", "phpspec/prophecy": "<1.15", "phpunit/phpunit": "<9.5", - "symfony/framework-bundle": "6.4.6 || 7.1.6", + "symfony/framework-bundle": "6.4.6 || 7.0.6", "symfony/var-exporter": "<6.1.1" }, "replace": { @@ -286,7 +226,7 @@ "justinrainbow/json-schema": "^5.2.1", "phpspec/prophecy-phpunit": "^2.0", "phpstan/extension-installer": "^1.1", - "phpstan/phpdoc-parser": "^1.13", + "phpstan/phpdoc-parser": "^1.13|^2.0", "phpstan/phpstan": "^1.10", "phpstan/phpstan-doctrine": "^1.0", "phpstan/phpstan-phpunit": "^1.0", @@ -402,9 +342,9 @@ ], "support": { "issues": "https://github.com/api-platform/core/issues", - "source": "https://github.com/api-platform/core/tree/v3.4.5" + "source": "https://github.com/api-platform/core/tree/v3.4.6" }, - "time": "2024-10-26T07:20:01+00:00" + "time": "2024-11-15T09:41:19+00:00" }, { "name": "arthem/object-reference-bundle", @@ -507,16 +447,16 @@ }, { "name": "aws/aws-sdk-php", - "version": "3.326.0", + "version": "3.328.2", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "5420284de9aad84e375fa8012cefd834bebfd623" + "reference": "63a6366a8011dffec3d1ef838c97ca6b6ddb17a2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/5420284de9aad84e375fa8012cefd834bebfd623", - "reference": "5420284de9aad84e375fa8012cefd834bebfd623", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/63a6366a8011dffec3d1ef838c97ca6b6ddb17a2", + "reference": "63a6366a8011dffec3d1ef838c97ca6b6ddb17a2", "shasum": "" }, "require": { @@ -599,9 +539,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.326.0" + "source": "https://github.com/aws/aws-sdk-php/tree/3.328.2" }, - "time": "2024-11-13T19:07:44+00:00" + "time": "2024-11-19T20:28:51+00:00" }, { "name": "beberlei/doctrineextensions", @@ -1838,16 +1778,16 @@ }, { "name": "doctrine/doctrine-bundle", - "version": "2.13.0", + "version": "2.13.1", "source": { "type": "git", "url": "https://github.com/doctrine/DoctrineBundle.git", - "reference": "ca59d84b8e63143ce1aed90cdb333ba329d71563" + "reference": "2740ad8b8739b39ab37d409c972b092f632b025a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/ca59d84b8e63143ce1aed90cdb333ba329d71563", - "reference": "ca59d84b8e63143ce1aed90cdb333ba329d71563", + "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/2740ad8b8739b39ab37d409c972b092f632b025a", + "reference": "2740ad8b8739b39ab37d409c972b092f632b025a", "shasum": "" }, "require": { @@ -1861,7 +1801,7 @@ "symfony/console": "^5.4 || ^6.0 || ^7.0", "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0", "symfony/deprecation-contracts": "^2.1 || ^3", - "symfony/doctrine-bridge": "^5.4.19 || ^6.0.7 || ^7.0", + "symfony/doctrine-bridge": "^5.4.46 || ^6.4.3 || ^7.0.3", "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0", "symfony/polyfill-php80": "^1.15", "symfony/service-contracts": "^1.1.1 || ^2.0 || ^3" @@ -1938,7 +1878,7 @@ ], "support": { "issues": "https://github.com/doctrine/DoctrineBundle/issues", - "source": "https://github.com/doctrine/DoctrineBundle/tree/2.13.0" + "source": "https://github.com/doctrine/DoctrineBundle/tree/2.13.1" }, "funding": [ { @@ -1954,7 +1894,7 @@ "type": "tidelift" } ], - "time": "2024-09-01T09:46:40+00:00" + "time": "2024-11-08T23:27:54+00:00" }, { "name": "doctrine/doctrine-migrations-bundle", @@ -2737,23 +2677,23 @@ }, { "name": "easycorp/easyadmin-bundle", - "version": "v4.14.5", + "version": "v4.15.0", "source": { "type": "git", "url": "https://github.com/EasyCorp/EasyAdminBundle.git", - "reference": "575b251366c2a88c5f0c1562e517b5243bdc4bd2" + "reference": "ae4af70160783b357ccc69c81ea002b661aa3396" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/EasyCorp/EasyAdminBundle/zipball/575b251366c2a88c5f0c1562e517b5243bdc4bd2", - "reference": "575b251366c2a88c5f0c1562e517b5243bdc4bd2", + "url": "https://api.github.com/repos/EasyCorp/EasyAdminBundle/zipball/ae4af70160783b357ccc69c81ea002b661aa3396", + "reference": "ae4af70160783b357ccc69c81ea002b661aa3396", "shasum": "" }, "require": { "doctrine/doctrine-bundle": "^2.5", - "doctrine/orm": "^2.10|^3.0", + "doctrine/orm": "^2.12|^3.0", "ext-json": "*", - "php": ">=8.0.2", + "php": ">=8.1", "symfony/asset": "^5.4|^6.0|^7.0", "symfony/cache": "^5.4|^6.0|^7.0", "symfony/config": "^5.4|^6.0|^7.0", @@ -2820,7 +2760,7 @@ ], "support": { "issues": "https://github.com/EasyCorp/EasyAdminBundle/issues", - "source": "https://github.com/EasyCorp/EasyAdminBundle/tree/v4.14.5" + "source": "https://github.com/EasyCorp/EasyAdminBundle/tree/v4.15.0" }, "funding": [ { @@ -2828,7 +2768,7 @@ "type": "github" } ], - "time": "2024-11-08T07:07:54+00:00" + "time": "2024-11-19T20:48:31+00:00" }, { "name": "elasticsearch/elasticsearch", @@ -3939,16 +3879,16 @@ }, { "name": "imagine/imagine", - "version": "1.3.5", + "version": "1.4.0", "source": { "type": "git", "url": "https://github.com/php-imagine/Imagine.git", - "reference": "7151d553edec4dc2bbac60419f7a74ff34700e7f" + "reference": "2c8887dc7e84e97283037f02dd9c957d4b3a0b82" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-imagine/Imagine/zipball/7151d553edec4dc2bbac60419f7a74ff34700e7f", - "reference": "7151d553edec4dc2bbac60419f7a74ff34700e7f", + "url": "https://api.github.com/repos/php-imagine/Imagine/zipball/2c8887dc7e84e97283037f02dd9c957d4b3a0b82", + "reference": "2c8887dc7e84e97283037f02dd9c957d4b3a0b82", "shasum": "" }, "require": { @@ -3995,9 +3935,9 @@ ], "support": { "issues": "https://github.com/php-imagine/Imagine/issues", - "source": "https://github.com/php-imagine/Imagine/tree/1.3.5" + "source": "https://github.com/php-imagine/Imagine/tree/1.4.0" }, - "time": "2023-06-07T14:49:52+00:00" + "time": "2024-11-18T07:44:52+00:00" }, { "name": "intervention/image", @@ -4085,28 +4025,28 @@ }, { "name": "jean85/pretty-package-versions", - "version": "2.0.6", + "version": "2.1.0", "source": { "type": "git", "url": "https://github.com/Jean85/pretty-package-versions.git", - "reference": "f9fdd29ad8e6d024f52678b570e5593759b550b4" + "reference": "3c4e5f62ba8d7de1734312e4fff32f67a8daaf10" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/f9fdd29ad8e6d024f52678b570e5593759b550b4", - "reference": "f9fdd29ad8e6d024f52678b570e5593759b550b4", + "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/3c4e5f62ba8d7de1734312e4fff32f67a8daaf10", + "reference": "3c4e5f62ba8d7de1734312e4fff32f67a8daaf10", "shasum": "" }, "require": { - "composer-runtime-api": "^2.0.0", - "php": "^7.1|^8.0" + "composer-runtime-api": "^2.1.0", + "php": "^7.4|^8.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.2", "jean85/composer-provided-replaced-stub-package": "^1.0", "phpstan/phpstan": "^1.4", - "phpunit/phpunit": "^7.5|^8.5|^9.4", - "vimeo/psalm": "^4.3" + "phpunit/phpunit": "^7.5|^8.5|^9.6", + "vimeo/psalm": "^4.3 || ^5.0" }, "type": "library", "extra": { @@ -4138,9 +4078,9 @@ ], "support": { "issues": "https://github.com/Jean85/pretty-package-versions/issues", - "source": "https://github.com/Jean85/pretty-package-versions/tree/2.0.6" + "source": "https://github.com/Jean85/pretty-package-versions/tree/2.1.0" }, - "time": "2024-03-08T09:58:59+00:00" + "time": "2024-11-18T16:19:46+00:00" }, { "name": "kornrunner/blurhash", @@ -7034,28 +6974,27 @@ }, { "name": "ramsey/uuid-doctrine", - "version": "1.8.2", + "version": "1.6.0", "source": { "type": "git", "url": "https://github.com/ramsey/uuid-doctrine.git", - "reference": "6867db3f39b9088dd8909b2523c1d2bfe274e541" + "reference": "9facc4689547e72e03c1e18df4a0ee162b2778b0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ramsey/uuid-doctrine/zipball/6867db3f39b9088dd8909b2523c1d2bfe274e541", - "reference": "6867db3f39b9088dd8909b2523c1d2bfe274e541", + "url": "https://api.github.com/repos/ramsey/uuid-doctrine/zipball/9facc4689547e72e03c1e18df4a0ee162b2778b0", + "reference": "9facc4689547e72e03c1e18df4a0ee162b2778b0", "shasum": "" }, "require": { - "doctrine/dbal": "^2.5 || ^3.0", - "php": "^5.4 || ^7 || ^8", - "ramsey/uuid": "^3.5 || ^4" + "doctrine/orm": "^2.5", + "php": "^5.4 | ^7 | ^8", + "ramsey/uuid": "^3.5 | ^4" }, "require-dev": { - "doctrine/orm": "^2.5", - "mockery/mockery": "^0.9.11 || ^1", - "php-parallel-lint/php-parallel-lint": "^1", - "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7 || ^8 || ^9", + "jakub-onderka/php-parallel-lint": "^1", + "mockery/mockery": "^0.9 | ^1", + "phpunit/phpunit": "^4.8.36 | ^5.7 | ^6.5 | ^7", "squizlabs/php_codesniffer": "^3.5" }, "type": "library", @@ -7068,14 +7007,8 @@ "license": [ "MIT" ], - "authors": [ - { - "name": "Ben Ramsey", - "email": "ben@benramsey.com", - "homepage": "https://benramsey.com" - } - ], - "description": "Use ramsey/uuid as a Doctrine field type.", + "description": "Allow the use of ramsey/uuid as a Doctrine field type.", + "homepage": "https://github.com/ramsey/uuid-doctrine", "keywords": [ "database", "doctrine", @@ -7085,19 +7018,11 @@ ], "support": { "issues": "https://github.com/ramsey/uuid-doctrine/issues", - "source": "https://github.com/ramsey/uuid-doctrine/tree/1.8.2" + "rss": "https://github.com/ramsey/uuid-doctrine/releases.atom", + "source": "https://github.com/ramsey/uuid-doctrine", + "wiki": "https://github.com/ramsey/uuid/wiki" }, - "funding": [ - { - "url": "https://github.com/ramsey", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid-doctrine", - "type": "tidelift" - } - ], - "time": "2022-11-03T19:30:26+00:00" + "time": "2020-01-27T05:09:17+00:00" }, { "name": "react/promise", @@ -9326,21 +9251,21 @@ }, { "name": "symfony/expression-language", - "version": "v7.1.6", + "version": "v6.4.13", "source": { "type": "git", "url": "https://github.com/symfony/expression-language.git", - "reference": "c3a1224bc144b36cd79149b42c1aecd5f81395a5" + "reference": "3524904fb026356a5230cd197f9a4e6a61e0e7df" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/expression-language/zipball/c3a1224bc144b36cd79149b42c1aecd5f81395a5", - "reference": "c3a1224bc144b36cd79149b42c1aecd5f81395a5", + "url": "https://api.github.com/repos/symfony/expression-language/zipball/3524904fb026356a5230cd197f9a4e6a61e0e7df", + "reference": "3524904fb026356a5230cd197f9a4e6a61e0e7df", "shasum": "" }, "require": { - "php": ">=8.2", - "symfony/cache": "^6.4|^7.0", + "php": ">=8.1", + "symfony/cache": "^5.4|^6.0|^7.0", "symfony/deprecation-contracts": "^2.5|^3", "symfony/service-contracts": "^2.5|^3" }, @@ -9370,7 +9295,7 @@ "description": "Provides an engine that can compile and evaluate expressions", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/expression-language/tree/v7.1.6" + "source": "https://github.com/symfony/expression-language/tree/v6.4.13" }, "funding": [ { @@ -9386,7 +9311,7 @@ "type": "tidelift" } ], - "time": "2024-10-09T08:46:59+00:00" + "time": "2024-10-09T08:40:40+00:00" }, { "name": "symfony/filesystem", @@ -10448,20 +10373,21 @@ }, { "name": "symfony/mime", - "version": "v7.1.6", + "version": "v6.4.13", "source": { "type": "git", "url": "https://github.com/symfony/mime.git", - "reference": "caa1e521edb2650b8470918dfe51708c237f0598" + "reference": "1de1cf14d99b12c7ebbb850491ec6ae3ed468855" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/caa1e521edb2650b8470918dfe51708c237f0598", - "reference": "caa1e521edb2650b8470918dfe51708c237f0598", + "url": "https://api.github.com/repos/symfony/mime/zipball/1de1cf14d99b12c7ebbb850491ec6ae3ed468855", + "reference": "1de1cf14d99b12c7ebbb850491ec6ae3ed468855", "shasum": "" }, "require": { - "php": ">=8.2", + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", "symfony/polyfill-intl-idn": "^1.10", "symfony/polyfill-mbstring": "^1.0" }, @@ -10469,17 +10395,17 @@ "egulias/email-validator": "~3.0.0", "phpdocumentor/reflection-docblock": "<3.2.2", "phpdocumentor/type-resolver": "<1.4.0", - "symfony/mailer": "<6.4", + "symfony/mailer": "<5.4", "symfony/serializer": "<6.4.3|>7.0,<7.0.3" }, "require-dev": { "egulias/email-validator": "^2.1.10|^3.1|^4", "league/html-to-markdown": "^5.0", "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", - "symfony/dependency-injection": "^6.4|^7.0", - "symfony/process": "^6.4|^7.0", - "symfony/property-access": "^6.4|^7.0", - "symfony/property-info": "^6.4|^7.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.4|^7.0", + "symfony/property-access": "^5.4|^6.0|^7.0", + "symfony/property-info": "^5.4|^6.0|^7.0", "symfony/serializer": "^6.4.3|^7.0.3" }, "type": "library", @@ -10512,7 +10438,7 @@ "mime-type" ], "support": { - "source": "https://github.com/symfony/mime/tree/v7.1.6" + "source": "https://github.com/symfony/mime/tree/v6.4.13" }, "funding": [ { @@ -10528,7 +10454,7 @@ "type": "tidelift" } ], - "time": "2024-10-25T15:11:02+00:00" + "time": "2024-10-25T15:07:50+00:00" }, { "name": "symfony/monolog-bridge", @@ -11685,24 +11611,25 @@ }, { "name": "symfony/property-access", - "version": "v7.1.6", + "version": "v6.4.13", "source": { "type": "git", "url": "https://github.com/symfony/property-access.git", - "reference": "975d7f7fd8fcb952364c6badc46d01a580532bf9" + "reference": "8cc779d88d12e440adaa26387bcfc25744064afe" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/property-access/zipball/975d7f7fd8fcb952364c6badc46d01a580532bf9", - "reference": "975d7f7fd8fcb952364c6badc46d01a580532bf9", + "url": "https://api.github.com/repos/symfony/property-access/zipball/8cc779d88d12e440adaa26387bcfc25744064afe", + "reference": "8cc779d88d12e440adaa26387bcfc25744064afe", "shasum": "" }, "require": { - "php": ">=8.2", - "symfony/property-info": "^6.4|^7.0" + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", + "symfony/property-info": "^5.4|^6.0|^7.0" }, "require-dev": { - "symfony/cache": "^6.4|^7.0" + "symfony/cache": "^5.4|^6.0|^7.0" }, "type": "library", "autoload": { @@ -11741,7 +11668,7 @@ "reflection" ], "support": { - "source": "https://github.com/symfony/property-access/tree/v7.1.6" + "source": "https://github.com/symfony/property-access/tree/v6.4.13" }, "funding": [ { @@ -11757,7 +11684,7 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:20:29+00:00" + "time": "2024-09-25T14:18:03+00:00" }, { "name": "symfony/property-info", @@ -13787,16 +13714,16 @@ }, { "name": "twig/twig", - "version": "v3.14.2", + "version": "v3.15.0", "source": { "type": "git", "url": "https://github.com/twigphp/Twig.git", - "reference": "0b6f9d8370bb3b7f1ce5313ed8feb0fafd6e399a" + "reference": "2d5b3964cc21d0188633d7ddce732dc8e874db02" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/twigphp/Twig/zipball/0b6f9d8370bb3b7f1ce5313ed8feb0fafd6e399a", - "reference": "0b6f9d8370bb3b7f1ce5313ed8feb0fafd6e399a", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/2d5b3964cc21d0188633d7ddce732dc8e874db02", + "reference": "2d5b3964cc21d0188633d7ddce732dc8e874db02", "shasum": "" }, "require": { @@ -13850,7 +13777,7 @@ ], "support": { "issues": "https://github.com/twigphp/Twig/issues", - "source": "https://github.com/twigphp/Twig/tree/v3.14.2" + "source": "https://github.com/twigphp/Twig/tree/v3.15.0" }, "funding": [ { @@ -13862,7 +13789,7 @@ "type": "tidelift" } ], - "time": "2024-11-07T12:36:22+00:00" + "time": "2024-11-17T15:59:19+00:00" }, { "name": "webmozart/assert", @@ -14783,16 +14710,16 @@ }, { "name": "phpstan/phpstan", - "version": "1.12.10", + "version": "1.12.11", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "fc463b5d0fe906dcf19689be692c65c50406a071" + "reference": "0d1fc20a962a91be578bcfe7cf939e6e1a2ff733" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/fc463b5d0fe906dcf19689be692c65c50406a071", - "reference": "fc463b5d0fe906dcf19689be692c65c50406a071", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0d1fc20a962a91be578bcfe7cf939e6e1a2ff733", + "reference": "0d1fc20a962a91be578bcfe7cf939e6e1a2ff733", "shasum": "" }, "require": { @@ -14837,7 +14764,7 @@ "type": "github" } ], - "time": "2024-11-11T15:37:09+00:00" + "time": "2024-11-17T14:08:01+00:00" }, { "name": "phpunit/php-code-coverage", @@ -16822,7 +16749,7 @@ "stability-flags": { "arthem/object-reference-bundle": 20, "beberlei/doctrineextensions": 20, - "alchemy/core-bundle": 20, + "friendsofsymfony/elastica-bundle": 20, "alchemy/api-test": 20 }, "prefer-stable": true, diff --git a/expose/api/composer.lock b/expose/api/composer.lock index b38dcaebb..487eed193 100644 --- a/expose/api/composer.lock +++ b/expose/api/composer.lock @@ -557,16 +557,16 @@ }, { "name": "api-platform/core", - "version": "v3.4.5", + "version": "v3.4.6", "source": { "type": "git", "url": "https://github.com/api-platform/core.git", - "reference": "8bdf04409a4e873c889d22c4e05a3a81137f2a57" + "reference": "f251ed152d8c3709cef177a6ce5e0f34c7abb680" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/api-platform/core/zipball/8bdf04409a4e873c889d22c4e05a3a81137f2a57", - "reference": "8bdf04409a4e873c889d22c4e05a3a81137f2a57", + "url": "https://api.github.com/repos/api-platform/core/zipball/f251ed152d8c3709cef177a6ce5e0f34c7abb680", + "reference": "f251ed152d8c3709cef177a6ce5e0f34c7abb680", "shasum": "" }, "require": { @@ -593,7 +593,7 @@ "elasticsearch/elasticsearch": ">=8.0,<8.4", "phpspec/prophecy": "<1.15", "phpunit/phpunit": "<9.5", - "symfony/framework-bundle": "6.4.6 || 7.1.6", + "symfony/framework-bundle": "6.4.6 || 7.0.6", "symfony/var-exporter": "<6.1.1" }, "replace": { @@ -656,7 +656,7 @@ "justinrainbow/json-schema": "^5.2.1", "phpspec/prophecy-phpunit": "^2.0", "phpstan/extension-installer": "^1.1", - "phpstan/phpdoc-parser": "^1.13", + "phpstan/phpdoc-parser": "^1.13|^2.0", "phpstan/phpstan": "^1.10", "phpstan/phpstan-doctrine": "^1.0", "phpstan/phpstan-phpunit": "^1.0", @@ -772,9 +772,9 @@ ], "support": { "issues": "https://github.com/api-platform/core/issues", - "source": "https://github.com/api-platform/core/tree/v3.4.5" + "source": "https://github.com/api-platform/core/tree/v3.4.6" }, - "time": "2024-10-26T07:20:01+00:00" + "time": "2024-11-15T09:41:19+00:00" }, { "name": "aws/aws-crt-php", @@ -832,16 +832,16 @@ }, { "name": "aws/aws-sdk-php", - "version": "3.326.0", + "version": "3.328.2", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "5420284de9aad84e375fa8012cefd834bebfd623" + "reference": "63a6366a8011dffec3d1ef838c97ca6b6ddb17a2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/5420284de9aad84e375fa8012cefd834bebfd623", - "reference": "5420284de9aad84e375fa8012cefd834bebfd623", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/63a6366a8011dffec3d1ef838c97ca6b6ddb17a2", + "reference": "63a6366a8011dffec3d1ef838c97ca6b6ddb17a2", "shasum": "" }, "require": { @@ -924,9 +924,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.326.0" + "source": "https://github.com/aws/aws-sdk-php/tree/3.328.2" }, - "time": "2024-11-13T19:07:44+00:00" + "time": "2024-11-19T20:28:51+00:00" }, { "name": "brick/math", @@ -1635,16 +1635,16 @@ }, { "name": "doctrine/doctrine-bundle", - "version": "2.13.0", + "version": "2.13.1", "source": { "type": "git", "url": "https://github.com/doctrine/DoctrineBundle.git", - "reference": "ca59d84b8e63143ce1aed90cdb333ba329d71563" + "reference": "2740ad8b8739b39ab37d409c972b092f632b025a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/ca59d84b8e63143ce1aed90cdb333ba329d71563", - "reference": "ca59d84b8e63143ce1aed90cdb333ba329d71563", + "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/2740ad8b8739b39ab37d409c972b092f632b025a", + "reference": "2740ad8b8739b39ab37d409c972b092f632b025a", "shasum": "" }, "require": { @@ -1658,7 +1658,7 @@ "symfony/console": "^5.4 || ^6.0 || ^7.0", "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0", "symfony/deprecation-contracts": "^2.1 || ^3", - "symfony/doctrine-bridge": "^5.4.19 || ^6.0.7 || ^7.0", + "symfony/doctrine-bridge": "^5.4.46 || ^6.4.3 || ^7.0.3", "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0", "symfony/polyfill-php80": "^1.15", "symfony/service-contracts": "^1.1.1 || ^2.0 || ^3" @@ -1735,7 +1735,7 @@ ], "support": { "issues": "https://github.com/doctrine/DoctrineBundle/issues", - "source": "https://github.com/doctrine/DoctrineBundle/tree/2.13.0" + "source": "https://github.com/doctrine/DoctrineBundle/tree/2.13.1" }, "funding": [ { @@ -1751,7 +1751,7 @@ "type": "tidelift" } ], - "time": "2024-09-01T09:46:40+00:00" + "time": "2024-11-08T23:27:54+00:00" }, { "name": "doctrine/doctrine-migrations-bundle", @@ -2534,23 +2534,23 @@ }, { "name": "easycorp/easyadmin-bundle", - "version": "v4.14.5", + "version": "v4.15.0", "source": { "type": "git", "url": "https://github.com/EasyCorp/EasyAdminBundle.git", - "reference": "575b251366c2a88c5f0c1562e517b5243bdc4bd2" + "reference": "ae4af70160783b357ccc69c81ea002b661aa3396" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/EasyCorp/EasyAdminBundle/zipball/575b251366c2a88c5f0c1562e517b5243bdc4bd2", - "reference": "575b251366c2a88c5f0c1562e517b5243bdc4bd2", + "url": "https://api.github.com/repos/EasyCorp/EasyAdminBundle/zipball/ae4af70160783b357ccc69c81ea002b661aa3396", + "reference": "ae4af70160783b357ccc69c81ea002b661aa3396", "shasum": "" }, "require": { "doctrine/doctrine-bundle": "^2.5", - "doctrine/orm": "^2.10|^3.0", + "doctrine/orm": "^2.12|^3.0", "ext-json": "*", - "php": ">=8.0.2", + "php": ">=8.1", "symfony/asset": "^5.4|^6.0|^7.0", "symfony/cache": "^5.4|^6.0|^7.0", "symfony/config": "^5.4|^6.0|^7.0", @@ -2617,7 +2617,7 @@ ], "support": { "issues": "https://github.com/EasyCorp/EasyAdminBundle/issues", - "source": "https://github.com/EasyCorp/EasyAdminBundle/tree/v4.14.5" + "source": "https://github.com/EasyCorp/EasyAdminBundle/tree/v4.15.0" }, "funding": [ { @@ -2625,7 +2625,7 @@ "type": "github" } ], - "time": "2024-11-08T07:07:54+00:00" + "time": "2024-11-19T20:48:31+00:00" }, { "name": "exercise/htmlpurifier-bundle", @@ -3135,28 +3135,28 @@ }, { "name": "jean85/pretty-package-versions", - "version": "2.0.6", + "version": "2.1.0", "source": { "type": "git", "url": "https://github.com/Jean85/pretty-package-versions.git", - "reference": "f9fdd29ad8e6d024f52678b570e5593759b550b4" + "reference": "3c4e5f62ba8d7de1734312e4fff32f67a8daaf10" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/f9fdd29ad8e6d024f52678b570e5593759b550b4", - "reference": "f9fdd29ad8e6d024f52678b570e5593759b550b4", + "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/3c4e5f62ba8d7de1734312e4fff32f67a8daaf10", + "reference": "3c4e5f62ba8d7de1734312e4fff32f67a8daaf10", "shasum": "" }, "require": { - "composer-runtime-api": "^2.0.0", - "php": "^7.1|^8.0" + "composer-runtime-api": "^2.1.0", + "php": "^7.4|^8.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.2", "jean85/composer-provided-replaced-stub-package": "^1.0", "phpstan/phpstan": "^1.4", - "phpunit/phpunit": "^7.5|^8.5|^9.4", - "vimeo/psalm": "^4.3" + "phpunit/phpunit": "^7.5|^8.5|^9.6", + "vimeo/psalm": "^4.3 || ^5.0" }, "type": "library", "extra": { @@ -3188,9 +3188,9 @@ ], "support": { "issues": "https://github.com/Jean85/pretty-package-versions/issues", - "source": "https://github.com/Jean85/pretty-package-versions/tree/2.0.6" + "source": "https://github.com/Jean85/pretty-package-versions/tree/2.1.0" }, - "time": "2024-03-08T09:58:59+00:00" + "time": "2024-11-18T16:19:46+00:00" }, { "name": "lcobucci/clock", @@ -10920,16 +10920,16 @@ }, { "name": "twig/twig", - "version": "v3.14.2", + "version": "v3.15.0", "source": { "type": "git", "url": "https://github.com/twigphp/Twig.git", - "reference": "0b6f9d8370bb3b7f1ce5313ed8feb0fafd6e399a" + "reference": "2d5b3964cc21d0188633d7ddce732dc8e874db02" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/twigphp/Twig/zipball/0b6f9d8370bb3b7f1ce5313ed8feb0fafd6e399a", - "reference": "0b6f9d8370bb3b7f1ce5313ed8feb0fafd6e399a", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/2d5b3964cc21d0188633d7ddce732dc8e874db02", + "reference": "2d5b3964cc21d0188633d7ddce732dc8e874db02", "shasum": "" }, "require": { @@ -10983,7 +10983,7 @@ ], "support": { "issues": "https://github.com/twigphp/Twig/issues", - "source": "https://github.com/twigphp/Twig/tree/v3.14.2" + "source": "https://github.com/twigphp/Twig/tree/v3.15.0" }, "funding": [ { @@ -10995,7 +10995,7 @@ "type": "tidelift" } ], - "time": "2024-11-07T12:36:22+00:00" + "time": "2024-11-17T15:59:19+00:00" }, { "name": "webmozart/assert", @@ -12343,16 +12343,16 @@ }, { "name": "phpstan/phpstan", - "version": "1.12.10", + "version": "1.12.11", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "fc463b5d0fe906dcf19689be692c65c50406a071" + "reference": "0d1fc20a962a91be578bcfe7cf939e6e1a2ff733" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/fc463b5d0fe906dcf19689be692c65c50406a071", - "reference": "fc463b5d0fe906dcf19689be692c65c50406a071", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0d1fc20a962a91be578bcfe7cf939e6e1a2ff733", + "reference": "0d1fc20a962a91be578bcfe7cf939e6e1a2ff733", "shasum": "" }, "require": { @@ -12397,7 +12397,7 @@ "type": "github" } ], - "time": "2024-11-11T15:37:09+00:00" + "time": "2024-11-17T14:08:01+00:00" }, { "name": "phpunit/php-code-coverage", diff --git a/expose/api/docker/caching/composer.json b/expose/api/docker/caching/composer.json index 6e5058067..86b3b0bad 100644 --- a/expose/api/docker/caching/composer.json +++ b/expose/api/docker/caching/composer.json @@ -95,25 +95,25 @@ "nelmio/cors-bundle": "^2.1", "phpdocumentor/reflection-docblock": "^5.2", "predis/predis": "^1.1", - "ramsey/uuid-doctrine": "^1.6 || ^2.1.0", + "ramsey/uuid-doctrine": "^1.5", "symfony/amqp-messenger": "^6.3", "symfony/asset": "^6.3", "symfony/console": "^6.3", "symfony/dotenv": "^6.3", "symfony/expression-language": "^6.3", "symfony/flex": "^1.3.1", - "symfony/framework-bundle": "2.8 || ^3.0 || ^4.0 || ^5.0 || ^6.0", + "symfony/framework-bundle": "^6.3", "symfony/property-access": "^6.3", "symfony/property-info": "^6.3", "symfony/psr-http-message-bridge": "^2.1.4", - "symfony/security-bundle": "^4.0 || ^5.0 || ^6.0", - "symfony/serializer": "^6.4", + "symfony/security-bundle": "^6.3", + "symfony/serializer": "^6.3", "symfony/twig-bundle": "^6.3", "symfony/validator": "^6.3", "symfony/yaml": "^6.3", "easycorp/easyadmin-bundle": "^4.0", "guzzlehttp/guzzle": "^7.2", - "aws/aws-sdk-php": "^3.20", + "aws/aws-sdk-php": "^3.325", "ramsey/uuid": "^4.2.3", "oneup/flysystem-bundle": "^4.4", "league/flysystem-aws-s3-v3": "^3.0", diff --git a/expose/api/docker/caching/composer.lock b/expose/api/docker/caching/composer.lock index ae2d72f2a..895c64964 100644 --- a/expose/api/docker/caching/composer.lock +++ b/expose/api/docker/caching/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "8ebd11b489c4294621c2958aa3a3d840", + "content-hash": "5f6a4846e4d9562dd64cbc80e05cdddb", "packages": [ { "name": "alchemy/acl-bundle", @@ -60,16 +60,16 @@ }, { "name": "api-platform/core", - "version": "v3.4.5", + "version": "v3.4.6", "source": { "type": "git", "url": "https://github.com/api-platform/core.git", - "reference": "8bdf04409a4e873c889d22c4e05a3a81137f2a57" + "reference": "f251ed152d8c3709cef177a6ce5e0f34c7abb680" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/api-platform/core/zipball/8bdf04409a4e873c889d22c4e05a3a81137f2a57", - "reference": "8bdf04409a4e873c889d22c4e05a3a81137f2a57", + "url": "https://api.github.com/repos/api-platform/core/zipball/f251ed152d8c3709cef177a6ce5e0f34c7abb680", + "reference": "f251ed152d8c3709cef177a6ce5e0f34c7abb680", "shasum": "" }, "require": { @@ -96,7 +96,7 @@ "elasticsearch/elasticsearch": ">=8.0,<8.4", "phpspec/prophecy": "<1.15", "phpunit/phpunit": "<9.5", - "symfony/framework-bundle": "6.4.6 || 7.1.6", + "symfony/framework-bundle": "6.4.6 || 7.0.6", "symfony/var-exporter": "<6.1.1" }, "replace": { @@ -159,7 +159,7 @@ "justinrainbow/json-schema": "^5.2.1", "phpspec/prophecy-phpunit": "^2.0", "phpstan/extension-installer": "^1.1", - "phpstan/phpdoc-parser": "^1.13", + "phpstan/phpdoc-parser": "^1.13|^2.0", "phpstan/phpstan": "^1.10", "phpstan/phpstan-doctrine": "^1.0", "phpstan/phpstan-phpunit": "^1.0", @@ -275,9 +275,9 @@ ], "support": { "issues": "https://github.com/api-platform/core/issues", - "source": "https://github.com/api-platform/core/tree/v3.4.5" + "source": "https://github.com/api-platform/core/tree/v3.4.6" }, - "time": "2024-10-26T07:20:01+00:00" + "time": "2024-11-15T09:41:19+00:00" }, { "name": "aws/aws-crt-php", @@ -335,16 +335,16 @@ }, { "name": "aws/aws-sdk-php", - "version": "3.326.0", + "version": "3.328.2", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "5420284de9aad84e375fa8012cefd834bebfd623" + "reference": "63a6366a8011dffec3d1ef838c97ca6b6ddb17a2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/5420284de9aad84e375fa8012cefd834bebfd623", - "reference": "5420284de9aad84e375fa8012cefd834bebfd623", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/63a6366a8011dffec3d1ef838c97ca6b6ddb17a2", + "reference": "63a6366a8011dffec3d1ef838c97ca6b6ddb17a2", "shasum": "" }, "require": { @@ -427,9 +427,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.326.0" + "source": "https://github.com/aws/aws-sdk-php/tree/3.328.2" }, - "time": "2024-11-13T19:07:44+00:00" + "time": "2024-11-19T20:28:51+00:00" }, { "name": "brick/math", @@ -1138,16 +1138,16 @@ }, { "name": "doctrine/doctrine-bundle", - "version": "2.13.0", + "version": "2.13.1", "source": { "type": "git", "url": "https://github.com/doctrine/DoctrineBundle.git", - "reference": "ca59d84b8e63143ce1aed90cdb333ba329d71563" + "reference": "2740ad8b8739b39ab37d409c972b092f632b025a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/ca59d84b8e63143ce1aed90cdb333ba329d71563", - "reference": "ca59d84b8e63143ce1aed90cdb333ba329d71563", + "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/2740ad8b8739b39ab37d409c972b092f632b025a", + "reference": "2740ad8b8739b39ab37d409c972b092f632b025a", "shasum": "" }, "require": { @@ -1161,7 +1161,7 @@ "symfony/console": "^5.4 || ^6.0 || ^7.0", "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0", "symfony/deprecation-contracts": "^2.1 || ^3", - "symfony/doctrine-bridge": "^5.4.19 || ^6.0.7 || ^7.0", + "symfony/doctrine-bridge": "^5.4.46 || ^6.4.3 || ^7.0.3", "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0", "symfony/polyfill-php80": "^1.15", "symfony/service-contracts": "^1.1.1 || ^2.0 || ^3" @@ -1238,7 +1238,7 @@ ], "support": { "issues": "https://github.com/doctrine/DoctrineBundle/issues", - "source": "https://github.com/doctrine/DoctrineBundle/tree/2.13.0" + "source": "https://github.com/doctrine/DoctrineBundle/tree/2.13.1" }, "funding": [ { @@ -1254,7 +1254,7 @@ "type": "tidelift" } ], - "time": "2024-09-01T09:46:40+00:00" + "time": "2024-11-08T23:27:54+00:00" }, { "name": "doctrine/doctrine-migrations-bundle", @@ -2037,23 +2037,23 @@ }, { "name": "easycorp/easyadmin-bundle", - "version": "v4.14.5", + "version": "v4.15.0", "source": { "type": "git", "url": "https://github.com/EasyCorp/EasyAdminBundle.git", - "reference": "575b251366c2a88c5f0c1562e517b5243bdc4bd2" + "reference": "ae4af70160783b357ccc69c81ea002b661aa3396" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/EasyCorp/EasyAdminBundle/zipball/575b251366c2a88c5f0c1562e517b5243bdc4bd2", - "reference": "575b251366c2a88c5f0c1562e517b5243bdc4bd2", + "url": "https://api.github.com/repos/EasyCorp/EasyAdminBundle/zipball/ae4af70160783b357ccc69c81ea002b661aa3396", + "reference": "ae4af70160783b357ccc69c81ea002b661aa3396", "shasum": "" }, "require": { "doctrine/doctrine-bundle": "^2.5", - "doctrine/orm": "^2.10|^3.0", + "doctrine/orm": "^2.12|^3.0", "ext-json": "*", - "php": ">=8.0.2", + "php": ">=8.1", "symfony/asset": "^5.4|^6.0|^7.0", "symfony/cache": "^5.4|^6.0|^7.0", "symfony/config": "^5.4|^6.0|^7.0", @@ -2120,7 +2120,7 @@ ], "support": { "issues": "https://github.com/EasyCorp/EasyAdminBundle/issues", - "source": "https://github.com/EasyCorp/EasyAdminBundle/tree/v4.14.5" + "source": "https://github.com/EasyCorp/EasyAdminBundle/tree/v4.15.0" }, "funding": [ { @@ -2128,7 +2128,7 @@ "type": "github" } ], - "time": "2024-11-08T07:07:54+00:00" + "time": "2024-11-19T20:48:31+00:00" }, { "name": "exercise/htmlpurifier-bundle", @@ -2638,28 +2638,28 @@ }, { "name": "jean85/pretty-package-versions", - "version": "2.0.6", + "version": "2.1.0", "source": { "type": "git", "url": "https://github.com/Jean85/pretty-package-versions.git", - "reference": "f9fdd29ad8e6d024f52678b570e5593759b550b4" + "reference": "3c4e5f62ba8d7de1734312e4fff32f67a8daaf10" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/f9fdd29ad8e6d024f52678b570e5593759b550b4", - "reference": "f9fdd29ad8e6d024f52678b570e5593759b550b4", + "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/3c4e5f62ba8d7de1734312e4fff32f67a8daaf10", + "reference": "3c4e5f62ba8d7de1734312e4fff32f67a8daaf10", "shasum": "" }, "require": { - "composer-runtime-api": "^2.0.0", - "php": "^7.1|^8.0" + "composer-runtime-api": "^2.1.0", + "php": "^7.4|^8.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.2", "jean85/composer-provided-replaced-stub-package": "^1.0", "phpstan/phpstan": "^1.4", - "phpunit/phpunit": "^7.5|^8.5|^9.4", - "vimeo/psalm": "^4.3" + "phpunit/phpunit": "^7.5|^8.5|^9.6", + "vimeo/psalm": "^4.3 || ^5.0" }, "type": "library", "extra": { @@ -2691,9 +2691,9 @@ ], "support": { "issues": "https://github.com/Jean85/pretty-package-versions/issues", - "source": "https://github.com/Jean85/pretty-package-versions/tree/2.0.6" + "source": "https://github.com/Jean85/pretty-package-versions/tree/2.1.0" }, - "time": "2024-03-08T09:58:59+00:00" + "time": "2024-11-18T16:19:46+00:00" }, { "name": "lcobucci/clock", @@ -10422,16 +10422,16 @@ }, { "name": "twig/twig", - "version": "v3.14.2", + "version": "v3.15.0", "source": { "type": "git", "url": "https://github.com/twigphp/Twig.git", - "reference": "0b6f9d8370bb3b7f1ce5313ed8feb0fafd6e399a" + "reference": "2d5b3964cc21d0188633d7ddce732dc8e874db02" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/twigphp/Twig/zipball/0b6f9d8370bb3b7f1ce5313ed8feb0fafd6e399a", - "reference": "0b6f9d8370bb3b7f1ce5313ed8feb0fafd6e399a", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/2d5b3964cc21d0188633d7ddce732dc8e874db02", + "reference": "2d5b3964cc21d0188633d7ddce732dc8e874db02", "shasum": "" }, "require": { @@ -10485,7 +10485,7 @@ ], "support": { "issues": "https://github.com/twigphp/Twig/issues", - "source": "https://github.com/twigphp/Twig/tree/v3.14.2" + "source": "https://github.com/twigphp/Twig/tree/v3.15.0" }, "funding": [ { @@ -10497,7 +10497,7 @@ "type": "tidelift" } ], - "time": "2024-11-07T12:36:22+00:00" + "time": "2024-11-17T15:59:19+00:00" }, { "name": "webmozart/assert", @@ -11845,16 +11845,16 @@ }, { "name": "phpstan/phpstan", - "version": "1.12.10", + "version": "1.12.11", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "fc463b5d0fe906dcf19689be692c65c50406a071" + "reference": "0d1fc20a962a91be578bcfe7cf939e6e1a2ff733" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/fc463b5d0fe906dcf19689be692c65c50406a071", - "reference": "fc463b5d0fe906dcf19689be692c65c50406a071", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0d1fc20a962a91be578bcfe7cf939e6e1a2ff733", + "reference": "0d1fc20a962a91be578bcfe7cf939e6e1a2ff733", "shasum": "" }, "require": { @@ -11899,7 +11899,7 @@ "type": "github" } ], - "time": "2024-11-11T15:37:09+00:00" + "time": "2024-11-17T14:08:01+00:00" }, { "name": "phpunit/php-code-coverage", diff --git a/notify/api/composer.lock b/notify/api/composer.lock index 0645203fd..4111de986 100644 --- a/notify/api/composer.lock +++ b/notify/api/composer.lock @@ -468,16 +468,16 @@ }, { "name": "aws/aws-sdk-php", - "version": "3.326.0", + "version": "3.328.2", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "5420284de9aad84e375fa8012cefd834bebfd623" + "reference": "63a6366a8011dffec3d1ef838c97ca6b6ddb17a2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/5420284de9aad84e375fa8012cefd834bebfd623", - "reference": "5420284de9aad84e375fa8012cefd834bebfd623", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/63a6366a8011dffec3d1ef838c97ca6b6ddb17a2", + "reference": "63a6366a8011dffec3d1ef838c97ca6b6ddb17a2", "shasum": "" }, "require": { @@ -560,9 +560,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.326.0" + "source": "https://github.com/aws/aws-sdk-php/tree/3.328.2" }, - "time": "2024-11-13T19:07:44+00:00" + "time": "2024-11-19T20:28:51+00:00" }, { "name": "brick/math", @@ -1271,16 +1271,16 @@ }, { "name": "doctrine/doctrine-bundle", - "version": "2.13.0", + "version": "2.13.1", "source": { "type": "git", "url": "https://github.com/doctrine/DoctrineBundle.git", - "reference": "ca59d84b8e63143ce1aed90cdb333ba329d71563" + "reference": "2740ad8b8739b39ab37d409c972b092f632b025a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/ca59d84b8e63143ce1aed90cdb333ba329d71563", - "reference": "ca59d84b8e63143ce1aed90cdb333ba329d71563", + "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/2740ad8b8739b39ab37d409c972b092f632b025a", + "reference": "2740ad8b8739b39ab37d409c972b092f632b025a", "shasum": "" }, "require": { @@ -1294,7 +1294,7 @@ "symfony/console": "^5.4 || ^6.0 || ^7.0", "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0", "symfony/deprecation-contracts": "^2.1 || ^3", - "symfony/doctrine-bridge": "^5.4.19 || ^6.0.7 || ^7.0", + "symfony/doctrine-bridge": "^5.4.46 || ^6.4.3 || ^7.0.3", "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0", "symfony/polyfill-php80": "^1.15", "symfony/service-contracts": "^1.1.1 || ^2.0 || ^3" @@ -1371,7 +1371,7 @@ ], "support": { "issues": "https://github.com/doctrine/DoctrineBundle/issues", - "source": "https://github.com/doctrine/DoctrineBundle/tree/2.13.0" + "source": "https://github.com/doctrine/DoctrineBundle/tree/2.13.1" }, "funding": [ { @@ -1387,7 +1387,7 @@ "type": "tidelift" } ], - "time": "2024-09-01T09:46:40+00:00" + "time": "2024-11-08T23:27:54+00:00" }, { "name": "doctrine/doctrine-migrations-bundle", @@ -2170,23 +2170,23 @@ }, { "name": "easycorp/easyadmin-bundle", - "version": "v4.14.5", + "version": "v4.15.0", "source": { "type": "git", "url": "https://github.com/EasyCorp/EasyAdminBundle.git", - "reference": "575b251366c2a88c5f0c1562e517b5243bdc4bd2" + "reference": "ae4af70160783b357ccc69c81ea002b661aa3396" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/EasyCorp/EasyAdminBundle/zipball/575b251366c2a88c5f0c1562e517b5243bdc4bd2", - "reference": "575b251366c2a88c5f0c1562e517b5243bdc4bd2", + "url": "https://api.github.com/repos/EasyCorp/EasyAdminBundle/zipball/ae4af70160783b357ccc69c81ea002b661aa3396", + "reference": "ae4af70160783b357ccc69c81ea002b661aa3396", "shasum": "" }, "require": { "doctrine/doctrine-bundle": "^2.5", - "doctrine/orm": "^2.10|^3.0", + "doctrine/orm": "^2.12|^3.0", "ext-json": "*", - "php": ">=8.0.2", + "php": ">=8.1", "symfony/asset": "^5.4|^6.0|^7.0", "symfony/cache": "^5.4|^6.0|^7.0", "symfony/config": "^5.4|^6.0|^7.0", @@ -2253,7 +2253,7 @@ ], "support": { "issues": "https://github.com/EasyCorp/EasyAdminBundle/issues", - "source": "https://github.com/EasyCorp/EasyAdminBundle/tree/v4.14.5" + "source": "https://github.com/EasyCorp/EasyAdminBundle/tree/v4.15.0" }, "funding": [ { @@ -2261,7 +2261,7 @@ "type": "github" } ], - "time": "2024-11-08T07:07:54+00:00" + "time": "2024-11-19T20:48:31+00:00" }, { "name": "egulias/email-validator", @@ -2715,28 +2715,28 @@ }, { "name": "jean85/pretty-package-versions", - "version": "2.0.6", + "version": "2.1.0", "source": { "type": "git", "url": "https://github.com/Jean85/pretty-package-versions.git", - "reference": "f9fdd29ad8e6d024f52678b570e5593759b550b4" + "reference": "3c4e5f62ba8d7de1734312e4fff32f67a8daaf10" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/f9fdd29ad8e6d024f52678b570e5593759b550b4", - "reference": "f9fdd29ad8e6d024f52678b570e5593759b550b4", + "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/3c4e5f62ba8d7de1734312e4fff32f67a8daaf10", + "reference": "3c4e5f62ba8d7de1734312e4fff32f67a8daaf10", "shasum": "" }, "require": { - "composer-runtime-api": "^2.0.0", - "php": "^7.1|^8.0" + "composer-runtime-api": "^2.1.0", + "php": "^7.4|^8.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.2", "jean85/composer-provided-replaced-stub-package": "^1.0", "phpstan/phpstan": "^1.4", - "phpunit/phpunit": "^7.5|^8.5|^9.4", - "vimeo/psalm": "^4.3" + "phpunit/phpunit": "^7.5|^8.5|^9.6", + "vimeo/psalm": "^4.3 || ^5.0" }, "type": "library", "extra": { @@ -2768,9 +2768,9 @@ ], "support": { "issues": "https://github.com/Jean85/pretty-package-versions/issues", - "source": "https://github.com/Jean85/pretty-package-versions/tree/2.0.6" + "source": "https://github.com/Jean85/pretty-package-versions/tree/2.1.0" }, - "time": "2024-03-08T09:58:59+00:00" + "time": "2024-11-18T16:19:46+00:00" }, { "name": "lcobucci/jwt", @@ -9885,16 +9885,16 @@ }, { "name": "twig/twig", - "version": "v3.14.2", + "version": "v3.15.0", "source": { "type": "git", "url": "https://github.com/twigphp/Twig.git", - "reference": "0b6f9d8370bb3b7f1ce5313ed8feb0fafd6e399a" + "reference": "2d5b3964cc21d0188633d7ddce732dc8e874db02" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/twigphp/Twig/zipball/0b6f9d8370bb3b7f1ce5313ed8feb0fafd6e399a", - "reference": "0b6f9d8370bb3b7f1ce5313ed8feb0fafd6e399a", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/2d5b3964cc21d0188633d7ddce732dc8e874db02", + "reference": "2d5b3964cc21d0188633d7ddce732dc8e874db02", "shasum": "" }, "require": { @@ -9948,7 +9948,7 @@ ], "support": { "issues": "https://github.com/twigphp/Twig/issues", - "source": "https://github.com/twigphp/Twig/tree/v3.14.2" + "source": "https://github.com/twigphp/Twig/tree/v3.15.0" }, "funding": [ { @@ -9960,7 +9960,7 @@ "type": "tidelift" } ], - "time": "2024-11-07T12:36:22+00:00" + "time": "2024-11-17T15:59:19+00:00" } ], "packages-dev": [ @@ -10902,16 +10902,16 @@ }, { "name": "phpstan/phpstan", - "version": "1.12.10", + "version": "1.12.11", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "fc463b5d0fe906dcf19689be692c65c50406a071" + "reference": "0d1fc20a962a91be578bcfe7cf939e6e1a2ff733" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/fc463b5d0fe906dcf19689be692c65c50406a071", - "reference": "fc463b5d0fe906dcf19689be692c65c50406a071", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0d1fc20a962a91be578bcfe7cf939e6e1a2ff733", + "reference": "0d1fc20a962a91be578bcfe7cf939e6e1a2ff733", "shasum": "" }, "require": { @@ -10956,7 +10956,7 @@ "type": "github" } ], - "time": "2024-11-11T15:37:09+00:00" + "time": "2024-11-17T14:08:01+00:00" }, { "name": "phpunit/php-code-coverage", diff --git a/notify/api/docker/caching/composer.json b/notify/api/docker/caching/composer.json index 723422fa3..84690cde8 100644 --- a/notify/api/docker/caching/composer.json +++ b/notify/api/docker/caching/composer.json @@ -51,17 +51,17 @@ "doctrine/orm": "^2", "predis/predis": "^1.1", "qandidate/symfony-json-request-transformer": "^2.2", - "ramsey/uuid-doctrine": "^1.6 || ^2.1.0", + "ramsey/uuid-doctrine": "^1.5", "sensio/framework-extra-bundle": "^6.2", "symfony/amazon-mailer": "^6.3", "symfony/console": "^6.3", "symfony/dotenv": "^6.3", "symfony/flex": "^1.3.1", "symfony/amqp-messenger": "^6.3", - "symfony/framework-bundle": "^6.4", + "symfony/framework-bundle": "^6.3", "symfony/mailer": "^6.3", "symfony/process": "^6.3", - "symfony/serializer": "^6.4", + "symfony/serializer": "^6.3", "symfony/psr-http-message-bridge": "^2.3", "symfony/translation": "^6.3", "symfony/twig-bundle": "^6.3", @@ -72,7 +72,7 @@ "aws/aws-sdk-php": "^3.325", "lcobucci/jwt": "^5.0", "symfony/http-client": "^6", - "symfony/security-bundle": "^4.0 || ^5 || ^6", + "symfony/security-bundle": "^6", "symfony/monolog-bundle": "^3.5", "sentry/sentry-symfony": "^4.11", "symfony/messenger": "^6.4", diff --git a/notify/api/docker/caching/composer.lock b/notify/api/docker/caching/composer.lock index 79f146063..ae775f213 100644 --- a/notify/api/docker/caching/composer.lock +++ b/notify/api/docker/caching/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "520e1778f2c2f70d57736a0ed1ebe2aa", + "content-hash": "607f22481464ad1f13a3d7a365a5c4f8", "packages": [ { "name": "async-aws/core", @@ -187,16 +187,16 @@ }, { "name": "aws/aws-sdk-php", - "version": "3.326.0", + "version": "3.328.2", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "5420284de9aad84e375fa8012cefd834bebfd623" + "reference": "63a6366a8011dffec3d1ef838c97ca6b6ddb17a2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/5420284de9aad84e375fa8012cefd834bebfd623", - "reference": "5420284de9aad84e375fa8012cefd834bebfd623", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/63a6366a8011dffec3d1ef838c97ca6b6ddb17a2", + "reference": "63a6366a8011dffec3d1ef838c97ca6b6ddb17a2", "shasum": "" }, "require": { @@ -279,9 +279,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.326.0" + "source": "https://github.com/aws/aws-sdk-php/tree/3.328.2" }, - "time": "2024-11-13T19:07:44+00:00" + "time": "2024-11-19T20:28:51+00:00" }, { "name": "brick/math", @@ -990,16 +990,16 @@ }, { "name": "doctrine/doctrine-bundle", - "version": "2.13.0", + "version": "2.13.1", "source": { "type": "git", "url": "https://github.com/doctrine/DoctrineBundle.git", - "reference": "ca59d84b8e63143ce1aed90cdb333ba329d71563" + "reference": "2740ad8b8739b39ab37d409c972b092f632b025a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/ca59d84b8e63143ce1aed90cdb333ba329d71563", - "reference": "ca59d84b8e63143ce1aed90cdb333ba329d71563", + "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/2740ad8b8739b39ab37d409c972b092f632b025a", + "reference": "2740ad8b8739b39ab37d409c972b092f632b025a", "shasum": "" }, "require": { @@ -1013,7 +1013,7 @@ "symfony/console": "^5.4 || ^6.0 || ^7.0", "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0", "symfony/deprecation-contracts": "^2.1 || ^3", - "symfony/doctrine-bridge": "^5.4.19 || ^6.0.7 || ^7.0", + "symfony/doctrine-bridge": "^5.4.46 || ^6.4.3 || ^7.0.3", "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0", "symfony/polyfill-php80": "^1.15", "symfony/service-contracts": "^1.1.1 || ^2.0 || ^3" @@ -1090,7 +1090,7 @@ ], "support": { "issues": "https://github.com/doctrine/DoctrineBundle/issues", - "source": "https://github.com/doctrine/DoctrineBundle/tree/2.13.0" + "source": "https://github.com/doctrine/DoctrineBundle/tree/2.13.1" }, "funding": [ { @@ -1106,7 +1106,7 @@ "type": "tidelift" } ], - "time": "2024-09-01T09:46:40+00:00" + "time": "2024-11-08T23:27:54+00:00" }, { "name": "doctrine/doctrine-migrations-bundle", @@ -1889,23 +1889,23 @@ }, { "name": "easycorp/easyadmin-bundle", - "version": "v4.14.5", + "version": "v4.15.0", "source": { "type": "git", "url": "https://github.com/EasyCorp/EasyAdminBundle.git", - "reference": "575b251366c2a88c5f0c1562e517b5243bdc4bd2" + "reference": "ae4af70160783b357ccc69c81ea002b661aa3396" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/EasyCorp/EasyAdminBundle/zipball/575b251366c2a88c5f0c1562e517b5243bdc4bd2", - "reference": "575b251366c2a88c5f0c1562e517b5243bdc4bd2", + "url": "https://api.github.com/repos/EasyCorp/EasyAdminBundle/zipball/ae4af70160783b357ccc69c81ea002b661aa3396", + "reference": "ae4af70160783b357ccc69c81ea002b661aa3396", "shasum": "" }, "require": { "doctrine/doctrine-bundle": "^2.5", - "doctrine/orm": "^2.10|^3.0", + "doctrine/orm": "^2.12|^3.0", "ext-json": "*", - "php": ">=8.0.2", + "php": ">=8.1", "symfony/asset": "^5.4|^6.0|^7.0", "symfony/cache": "^5.4|^6.0|^7.0", "symfony/config": "^5.4|^6.0|^7.0", @@ -1972,7 +1972,7 @@ ], "support": { "issues": "https://github.com/EasyCorp/EasyAdminBundle/issues", - "source": "https://github.com/EasyCorp/EasyAdminBundle/tree/v4.14.5" + "source": "https://github.com/EasyCorp/EasyAdminBundle/tree/v4.15.0" }, "funding": [ { @@ -1980,7 +1980,7 @@ "type": "github" } ], - "time": "2024-11-08T07:07:54+00:00" + "time": "2024-11-19T20:48:31+00:00" }, { "name": "egulias/email-validator", @@ -2434,28 +2434,28 @@ }, { "name": "jean85/pretty-package-versions", - "version": "2.0.6", + "version": "2.1.0", "source": { "type": "git", "url": "https://github.com/Jean85/pretty-package-versions.git", - "reference": "f9fdd29ad8e6d024f52678b570e5593759b550b4" + "reference": "3c4e5f62ba8d7de1734312e4fff32f67a8daaf10" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/f9fdd29ad8e6d024f52678b570e5593759b550b4", - "reference": "f9fdd29ad8e6d024f52678b570e5593759b550b4", + "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/3c4e5f62ba8d7de1734312e4fff32f67a8daaf10", + "reference": "3c4e5f62ba8d7de1734312e4fff32f67a8daaf10", "shasum": "" }, "require": { - "composer-runtime-api": "^2.0.0", - "php": "^7.1|^8.0" + "composer-runtime-api": "^2.1.0", + "php": "^7.4|^8.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.2", "jean85/composer-provided-replaced-stub-package": "^1.0", "phpstan/phpstan": "^1.4", - "phpunit/phpunit": "^7.5|^8.5|^9.4", - "vimeo/psalm": "^4.3" + "phpunit/phpunit": "^7.5|^8.5|^9.6", + "vimeo/psalm": "^4.3 || ^5.0" }, "type": "library", "extra": { @@ -2487,9 +2487,9 @@ ], "support": { "issues": "https://github.com/Jean85/pretty-package-versions/issues", - "source": "https://github.com/Jean85/pretty-package-versions/tree/2.0.6" + "source": "https://github.com/Jean85/pretty-package-versions/tree/2.1.0" }, - "time": "2024-03-08T09:58:59+00:00" + "time": "2024-11-18T16:19:46+00:00" }, { "name": "lcobucci/jwt", @@ -3867,48 +3867,31 @@ }, { "name": "ramsey/uuid-doctrine", - "version": "2.1.0", + "version": "1.8.2", "source": { "type": "git", "url": "https://github.com/ramsey/uuid-doctrine.git", - "reference": "491e1bfa4d9d81e52a60470fa92c871f7eef919e" + "reference": "6867db3f39b9088dd8909b2523c1d2bfe274e541" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ramsey/uuid-doctrine/zipball/491e1bfa4d9d81e52a60470fa92c871f7eef919e", - "reference": "491e1bfa4d9d81e52a60470fa92c871f7eef919e", + "url": "https://api.github.com/repos/ramsey/uuid-doctrine/zipball/6867db3f39b9088dd8909b2523c1d2bfe274e541", + "reference": "6867db3f39b9088dd8909b2523c1d2bfe274e541", "shasum": "" }, "require": { - "doctrine/dbal": "^2.8 || ^3.0 || ^4.0", - "php": "^8.1", - "ramsey/uuid": "^3.9.7 || ^4.0" + "doctrine/dbal": "^2.5 || ^3.0", + "php": "^5.4 || ^7 || ^8", + "ramsey/uuid": "^3.5 || ^4" }, "require-dev": { - "captainhook/plugin-composer": "^5.3", - "doctrine/orm": "^2.5 || ^3.0", - "ergebnis/composer-normalize": "^2.28.3", - "mockery/mockery": "^1.5", - "php-parallel-lint/php-console-highlighter": "^1.0", - "php-parallel-lint/php-parallel-lint": "^1.3", - "phpcsstandards/phpcsutils": "^1.0.0-alpha4", - "phpstan/extension-installer": "^1.2", - "phpstan/phpstan": "^1.9", - "phpstan/phpstan-mockery": "^1.1", - "phpstan/phpstan-phpunit": "^1.3", - "phpunit/phpunit": "^10.5", - "ramsey/coding-standard": "^2.0.3", - "ramsey/conventional-commits": "^1.3" + "doctrine/orm": "^2.5", + "mockery/mockery": "^0.9.11 || ^1", + "php-parallel-lint/php-parallel-lint": "^1", + "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7 || ^8 || ^9", + "squizlabs/php_codesniffer": "^3.5" }, "type": "library", - "extra": { - "captainhook": { - "force-install": true - }, - "ramsey/conventional-commits": { - "configFile": "conventional-commits.json" - } - }, "autoload": { "psr-4": { "Ramsey\\Uuid\\Doctrine\\": "src/" @@ -3935,7 +3918,7 @@ ], "support": { "issues": "https://github.com/ramsey/uuid-doctrine/issues", - "source": "https://github.com/ramsey/uuid-doctrine/tree/2.1.0" + "source": "https://github.com/ramsey/uuid-doctrine/tree/1.8.2" }, "funding": [ { @@ -3947,7 +3930,7 @@ "type": "tidelift" } ], - "time": "2024-05-27T00:00:21+00:00" + "time": "2022-11-03T19:30:26+00:00" }, { "name": "sensio/framework-extra-bundle", @@ -9703,16 +9686,16 @@ }, { "name": "twig/twig", - "version": "v3.14.2", + "version": "v3.15.0", "source": { "type": "git", "url": "https://github.com/twigphp/Twig.git", - "reference": "0b6f9d8370bb3b7f1ce5313ed8feb0fafd6e399a" + "reference": "2d5b3964cc21d0188633d7ddce732dc8e874db02" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/twigphp/Twig/zipball/0b6f9d8370bb3b7f1ce5313ed8feb0fafd6e399a", - "reference": "0b6f9d8370bb3b7f1ce5313ed8feb0fafd6e399a", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/2d5b3964cc21d0188633d7ddce732dc8e874db02", + "reference": "2d5b3964cc21d0188633d7ddce732dc8e874db02", "shasum": "" }, "require": { @@ -9766,7 +9749,7 @@ ], "support": { "issues": "https://github.com/twigphp/Twig/issues", - "source": "https://github.com/twigphp/Twig/tree/v3.14.2" + "source": "https://github.com/twigphp/Twig/tree/v3.15.0" }, "funding": [ { @@ -9778,7 +9761,7 @@ "type": "tidelift" } ], - "time": "2024-11-07T12:36:22+00:00" + "time": "2024-11-17T15:59:19+00:00" } ], "packages-dev": [ @@ -10720,16 +10703,16 @@ }, { "name": "phpstan/phpstan", - "version": "1.12.10", + "version": "1.12.11", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "fc463b5d0fe906dcf19689be692c65c50406a071" + "reference": "0d1fc20a962a91be578bcfe7cf939e6e1a2ff733" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/fc463b5d0fe906dcf19689be692c65c50406a071", - "reference": "fc463b5d0fe906dcf19689be692c65c50406a071", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0d1fc20a962a91be578bcfe7cf939e6e1a2ff733", + "reference": "0d1fc20a962a91be578bcfe7cf939e6e1a2ff733", "shasum": "" }, "require": { @@ -10774,7 +10757,7 @@ "type": "github" } ], - "time": "2024-11-11T15:37:09+00:00" + "time": "2024-11-17T14:08:01+00:00" }, { "name": "phpunit/php-code-coverage", diff --git a/uploader/api/composer.lock b/uploader/api/composer.lock index 6bb6692e8..089a14397 100644 --- a/uploader/api/composer.lock +++ b/uploader/api/composer.lock @@ -557,16 +557,16 @@ }, { "name": "api-platform/core", - "version": "v3.4.5", + "version": "v3.4.6", "source": { "type": "git", "url": "https://github.com/api-platform/core.git", - "reference": "8bdf04409a4e873c889d22c4e05a3a81137f2a57" + "reference": "f251ed152d8c3709cef177a6ce5e0f34c7abb680" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/api-platform/core/zipball/8bdf04409a4e873c889d22c4e05a3a81137f2a57", - "reference": "8bdf04409a4e873c889d22c4e05a3a81137f2a57", + "url": "https://api.github.com/repos/api-platform/core/zipball/f251ed152d8c3709cef177a6ce5e0f34c7abb680", + "reference": "f251ed152d8c3709cef177a6ce5e0f34c7abb680", "shasum": "" }, "require": { @@ -593,7 +593,7 @@ "elasticsearch/elasticsearch": ">=8.0,<8.4", "phpspec/prophecy": "<1.15", "phpunit/phpunit": "<9.5", - "symfony/framework-bundle": "6.4.6 || 7.1.6", + "symfony/framework-bundle": "6.4.6 || 7.0.6", "symfony/var-exporter": "<6.1.1" }, "replace": { @@ -656,7 +656,7 @@ "justinrainbow/json-schema": "^5.2.1", "phpspec/prophecy-phpunit": "^2.0", "phpstan/extension-installer": "^1.1", - "phpstan/phpdoc-parser": "^1.13", + "phpstan/phpdoc-parser": "^1.13|^2.0", "phpstan/phpstan": "^1.10", "phpstan/phpstan-doctrine": "^1.0", "phpstan/phpstan-phpunit": "^1.0", @@ -772,9 +772,9 @@ ], "support": { "issues": "https://github.com/api-platform/core/issues", - "source": "https://github.com/api-platform/core/tree/v3.4.5" + "source": "https://github.com/api-platform/core/tree/v3.4.6" }, - "time": "2024-10-26T07:20:01+00:00" + "time": "2024-11-15T09:41:19+00:00" }, { "name": "aws/aws-crt-php", @@ -832,16 +832,16 @@ }, { "name": "aws/aws-sdk-php", - "version": "3.326.0", + "version": "3.328.2", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "5420284de9aad84e375fa8012cefd834bebfd623" + "reference": "63a6366a8011dffec3d1ef838c97ca6b6ddb17a2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/5420284de9aad84e375fa8012cefd834bebfd623", - "reference": "5420284de9aad84e375fa8012cefd834bebfd623", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/63a6366a8011dffec3d1ef838c97ca6b6ddb17a2", + "reference": "63a6366a8011dffec3d1ef838c97ca6b6ddb17a2", "shasum": "" }, "require": { @@ -924,9 +924,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.326.0" + "source": "https://github.com/aws/aws-sdk-php/tree/3.328.2" }, - "time": "2024-11-13T19:07:44+00:00" + "time": "2024-11-19T20:28:51+00:00" }, { "name": "behat/transliterator", @@ -1684,16 +1684,16 @@ }, { "name": "doctrine/doctrine-bundle", - "version": "2.13.0", + "version": "2.13.1", "source": { "type": "git", "url": "https://github.com/doctrine/DoctrineBundle.git", - "reference": "ca59d84b8e63143ce1aed90cdb333ba329d71563" + "reference": "2740ad8b8739b39ab37d409c972b092f632b025a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/ca59d84b8e63143ce1aed90cdb333ba329d71563", - "reference": "ca59d84b8e63143ce1aed90cdb333ba329d71563", + "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/2740ad8b8739b39ab37d409c972b092f632b025a", + "reference": "2740ad8b8739b39ab37d409c972b092f632b025a", "shasum": "" }, "require": { @@ -1707,7 +1707,7 @@ "symfony/console": "^5.4 || ^6.0 || ^7.0", "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0", "symfony/deprecation-contracts": "^2.1 || ^3", - "symfony/doctrine-bridge": "^5.4.19 || ^6.0.7 || ^7.0", + "symfony/doctrine-bridge": "^5.4.46 || ^6.4.3 || ^7.0.3", "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0", "symfony/polyfill-php80": "^1.15", "symfony/service-contracts": "^1.1.1 || ^2.0 || ^3" @@ -1784,7 +1784,7 @@ ], "support": { "issues": "https://github.com/doctrine/DoctrineBundle/issues", - "source": "https://github.com/doctrine/DoctrineBundle/tree/2.13.0" + "source": "https://github.com/doctrine/DoctrineBundle/tree/2.13.1" }, "funding": [ { @@ -1800,7 +1800,7 @@ "type": "tidelift" } ], - "time": "2024-09-01T09:46:40+00:00" + "time": "2024-11-08T23:27:54+00:00" }, { "name": "doctrine/doctrine-migrations-bundle", @@ -2583,23 +2583,23 @@ }, { "name": "easycorp/easyadmin-bundle", - "version": "v4.14.5", + "version": "v4.15.0", "source": { "type": "git", "url": "https://github.com/EasyCorp/EasyAdminBundle.git", - "reference": "575b251366c2a88c5f0c1562e517b5243bdc4bd2" + "reference": "ae4af70160783b357ccc69c81ea002b661aa3396" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/EasyCorp/EasyAdminBundle/zipball/575b251366c2a88c5f0c1562e517b5243bdc4bd2", - "reference": "575b251366c2a88c5f0c1562e517b5243bdc4bd2", + "url": "https://api.github.com/repos/EasyCorp/EasyAdminBundle/zipball/ae4af70160783b357ccc69c81ea002b661aa3396", + "reference": "ae4af70160783b357ccc69c81ea002b661aa3396", "shasum": "" }, "require": { "doctrine/doctrine-bundle": "^2.5", - "doctrine/orm": "^2.10|^3.0", + "doctrine/orm": "^2.12|^3.0", "ext-json": "*", - "php": ">=8.0.2", + "php": ">=8.1", "symfony/asset": "^5.4|^6.0|^7.0", "symfony/cache": "^5.4|^6.0|^7.0", "symfony/config": "^5.4|^6.0|^7.0", @@ -2666,7 +2666,7 @@ ], "support": { "issues": "https://github.com/EasyCorp/EasyAdminBundle/issues", - "source": "https://github.com/EasyCorp/EasyAdminBundle/tree/v4.14.5" + "source": "https://github.com/EasyCorp/EasyAdminBundle/tree/v4.15.0" }, "funding": [ { @@ -2674,7 +2674,7 @@ "type": "github" } ], - "time": "2024-11-08T07:07:54+00:00" + "time": "2024-11-19T20:48:31+00:00" }, { "name": "fig/link-util", @@ -3252,28 +3252,28 @@ }, { "name": "jean85/pretty-package-versions", - "version": "2.0.6", + "version": "2.1.0", "source": { "type": "git", "url": "https://github.com/Jean85/pretty-package-versions.git", - "reference": "f9fdd29ad8e6d024f52678b570e5593759b550b4" + "reference": "3c4e5f62ba8d7de1734312e4fff32f67a8daaf10" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/f9fdd29ad8e6d024f52678b570e5593759b550b4", - "reference": "f9fdd29ad8e6d024f52678b570e5593759b550b4", + "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/3c4e5f62ba8d7de1734312e4fff32f67a8daaf10", + "reference": "3c4e5f62ba8d7de1734312e4fff32f67a8daaf10", "shasum": "" }, "require": { - "composer-runtime-api": "^2.0.0", - "php": "^7.1|^8.0" + "composer-runtime-api": "^2.1.0", + "php": "^7.4|^8.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.2", "jean85/composer-provided-replaced-stub-package": "^1.0", "phpstan/phpstan": "^1.4", - "phpunit/phpunit": "^7.5|^8.5|^9.4", - "vimeo/psalm": "^4.3" + "phpunit/phpunit": "^7.5|^8.5|^9.6", + "vimeo/psalm": "^4.3 || ^5.0" }, "type": "library", "extra": { @@ -3305,9 +3305,9 @@ ], "support": { "issues": "https://github.com/Jean85/pretty-package-versions/issues", - "source": "https://github.com/Jean85/pretty-package-versions/tree/2.0.6" + "source": "https://github.com/Jean85/pretty-package-versions/tree/2.1.0" }, - "time": "2024-03-08T09:58:59+00:00" + "time": "2024-11-18T16:19:46+00:00" }, { "name": "lcobucci/jwt", @@ -12757,16 +12757,16 @@ }, { "name": "phpstan/phpstan", - "version": "1.12.10", + "version": "1.12.11", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "fc463b5d0fe906dcf19689be692c65c50406a071" + "reference": "0d1fc20a962a91be578bcfe7cf939e6e1a2ff733" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/fc463b5d0fe906dcf19689be692c65c50406a071", - "reference": "fc463b5d0fe906dcf19689be692c65c50406a071", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0d1fc20a962a91be578bcfe7cf939e6e1a2ff733", + "reference": "0d1fc20a962a91be578bcfe7cf939e6e1a2ff733", "shasum": "" }, "require": { @@ -12811,7 +12811,7 @@ "type": "github" } ], - "time": "2024-11-11T15:37:09+00:00" + "time": "2024-11-17T14:08:01+00:00" }, { "name": "phpunit/php-code-coverage", diff --git a/uploader/api/docker/caching/composer.json b/uploader/api/docker/caching/composer.json index 4f43e3e34..c02f7f1e6 100644 --- a/uploader/api/docker/caching/composer.json +++ b/uploader/api/docker/caching/composer.json @@ -94,7 +94,7 @@ "phpdocumentor/reflection-docblock": "^5.2", "predis/predis": "^1.1", "ramsey/uuid": "^4.2.3", - "ramsey/uuid-doctrine": "^1.6 || ^2.1.0", + "ramsey/uuid-doctrine": "^1.5", "sensio/framework-extra-bundle": "^6.2", "stof/doctrine-extensions-bundle": "^1.7", "symfony/asset": "^6.3", @@ -103,15 +103,15 @@ "symfony/expression-language": "^6.3", "symfony/flex": "^1.1", "symfony/form": "^6.3", - "symfony/framework-bundle": "^6.4", + "symfony/framework-bundle": "^6.3", "symfony/amqp-messenger": "^6.3", - "symfony/mime": "^6|^7", + "symfony/mime": "^6.3", "symfony/process": "^6.3", "symfony/property-access": "^6.3", "symfony/property-info": "^6.3", "symfony/psr-http-message-bridge": "^2.1.4", - "symfony/security-bundle": "^4.0 || ^5 || ^6", - "symfony/serializer": "^6.4", + "symfony/security-bundle": "^6.3", + "symfony/serializer": "^6.3", "symfony/translation": "^6.3", "symfony/twig-bundle": "^6.3", "symfony/validator": "^6.3", @@ -119,7 +119,7 @@ "symfony/yaml": "^6.3", "twig/extensions": "^1.5", "easycorp/easyadmin-bundle": "^4.0", - "aws/aws-sdk-php": "^3.20", + "aws/aws-sdk-php": "^3.325", "oneup/flysystem-bundle": "^4.4", "league/flysystem-aws-s3-v3": "^3.0", "lcobucci/jwt": "^5.0", diff --git a/uploader/api/docker/caching/composer.lock b/uploader/api/docker/caching/composer.lock index bbaabf1a6..4d5d370be 100644 --- a/uploader/api/docker/caching/composer.lock +++ b/uploader/api/docker/caching/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "83948eaaea6b26c815386b3f6d9b43b9", + "content-hash": "e02476eb14d29ca737fb5f8726354d57", "packages": [ { "name": "alchemy/acl-bundle", @@ -60,16 +60,16 @@ }, { "name": "api-platform/core", - "version": "v3.4.5", + "version": "v3.4.6", "source": { "type": "git", "url": "https://github.com/api-platform/core.git", - "reference": "8bdf04409a4e873c889d22c4e05a3a81137f2a57" + "reference": "f251ed152d8c3709cef177a6ce5e0f34c7abb680" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/api-platform/core/zipball/8bdf04409a4e873c889d22c4e05a3a81137f2a57", - "reference": "8bdf04409a4e873c889d22c4e05a3a81137f2a57", + "url": "https://api.github.com/repos/api-platform/core/zipball/f251ed152d8c3709cef177a6ce5e0f34c7abb680", + "reference": "f251ed152d8c3709cef177a6ce5e0f34c7abb680", "shasum": "" }, "require": { @@ -96,7 +96,7 @@ "elasticsearch/elasticsearch": ">=8.0,<8.4", "phpspec/prophecy": "<1.15", "phpunit/phpunit": "<9.5", - "symfony/framework-bundle": "6.4.6 || 7.1.6", + "symfony/framework-bundle": "6.4.6 || 7.0.6", "symfony/var-exporter": "<6.1.1" }, "replace": { @@ -159,7 +159,7 @@ "justinrainbow/json-schema": "^5.2.1", "phpspec/prophecy-phpunit": "^2.0", "phpstan/extension-installer": "^1.1", - "phpstan/phpdoc-parser": "^1.13", + "phpstan/phpdoc-parser": "^1.13|^2.0", "phpstan/phpstan": "^1.10", "phpstan/phpstan-doctrine": "^1.0", "phpstan/phpstan-phpunit": "^1.0", @@ -275,9 +275,9 @@ ], "support": { "issues": "https://github.com/api-platform/core/issues", - "source": "https://github.com/api-platform/core/tree/v3.4.5" + "source": "https://github.com/api-platform/core/tree/v3.4.6" }, - "time": "2024-10-26T07:20:01+00:00" + "time": "2024-11-15T09:41:19+00:00" }, { "name": "aws/aws-crt-php", @@ -335,16 +335,16 @@ }, { "name": "aws/aws-sdk-php", - "version": "3.326.0", + "version": "3.328.2", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "5420284de9aad84e375fa8012cefd834bebfd623" + "reference": "63a6366a8011dffec3d1ef838c97ca6b6ddb17a2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/5420284de9aad84e375fa8012cefd834bebfd623", - "reference": "5420284de9aad84e375fa8012cefd834bebfd623", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/63a6366a8011dffec3d1ef838c97ca6b6ddb17a2", + "reference": "63a6366a8011dffec3d1ef838c97ca6b6ddb17a2", "shasum": "" }, "require": { @@ -427,9 +427,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.326.0" + "source": "https://github.com/aws/aws-sdk-php/tree/3.328.2" }, - "time": "2024-11-13T19:07:44+00:00" + "time": "2024-11-19T20:28:51+00:00" }, { "name": "behat/transliterator", @@ -1187,16 +1187,16 @@ }, { "name": "doctrine/doctrine-bundle", - "version": "2.13.0", + "version": "2.13.1", "source": { "type": "git", "url": "https://github.com/doctrine/DoctrineBundle.git", - "reference": "ca59d84b8e63143ce1aed90cdb333ba329d71563" + "reference": "2740ad8b8739b39ab37d409c972b092f632b025a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/ca59d84b8e63143ce1aed90cdb333ba329d71563", - "reference": "ca59d84b8e63143ce1aed90cdb333ba329d71563", + "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/2740ad8b8739b39ab37d409c972b092f632b025a", + "reference": "2740ad8b8739b39ab37d409c972b092f632b025a", "shasum": "" }, "require": { @@ -1210,7 +1210,7 @@ "symfony/console": "^5.4 || ^6.0 || ^7.0", "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0", "symfony/deprecation-contracts": "^2.1 || ^3", - "symfony/doctrine-bridge": "^5.4.19 || ^6.0.7 || ^7.0", + "symfony/doctrine-bridge": "^5.4.46 || ^6.4.3 || ^7.0.3", "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0", "symfony/polyfill-php80": "^1.15", "symfony/service-contracts": "^1.1.1 || ^2.0 || ^3" @@ -1287,7 +1287,7 @@ ], "support": { "issues": "https://github.com/doctrine/DoctrineBundle/issues", - "source": "https://github.com/doctrine/DoctrineBundle/tree/2.13.0" + "source": "https://github.com/doctrine/DoctrineBundle/tree/2.13.1" }, "funding": [ { @@ -1303,7 +1303,7 @@ "type": "tidelift" } ], - "time": "2024-09-01T09:46:40+00:00" + "time": "2024-11-08T23:27:54+00:00" }, { "name": "doctrine/doctrine-migrations-bundle", @@ -2086,23 +2086,23 @@ }, { "name": "easycorp/easyadmin-bundle", - "version": "v4.14.5", + "version": "v4.15.0", "source": { "type": "git", "url": "https://github.com/EasyCorp/EasyAdminBundle.git", - "reference": "575b251366c2a88c5f0c1562e517b5243bdc4bd2" + "reference": "ae4af70160783b357ccc69c81ea002b661aa3396" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/EasyCorp/EasyAdminBundle/zipball/575b251366c2a88c5f0c1562e517b5243bdc4bd2", - "reference": "575b251366c2a88c5f0c1562e517b5243bdc4bd2", + "url": "https://api.github.com/repos/EasyCorp/EasyAdminBundle/zipball/ae4af70160783b357ccc69c81ea002b661aa3396", + "reference": "ae4af70160783b357ccc69c81ea002b661aa3396", "shasum": "" }, "require": { "doctrine/doctrine-bundle": "^2.5", - "doctrine/orm": "^2.10|^3.0", + "doctrine/orm": "^2.12|^3.0", "ext-json": "*", - "php": ">=8.0.2", + "php": ">=8.1", "symfony/asset": "^5.4|^6.0|^7.0", "symfony/cache": "^5.4|^6.0|^7.0", "symfony/config": "^5.4|^6.0|^7.0", @@ -2169,7 +2169,7 @@ ], "support": { "issues": "https://github.com/EasyCorp/EasyAdminBundle/issues", - "source": "https://github.com/EasyCorp/EasyAdminBundle/tree/v4.14.5" + "source": "https://github.com/EasyCorp/EasyAdminBundle/tree/v4.15.0" }, "funding": [ { @@ -2177,7 +2177,7 @@ "type": "github" } ], - "time": "2024-11-08T07:07:54+00:00" + "time": "2024-11-19T20:48:31+00:00" }, { "name": "fig/link-util", @@ -2755,28 +2755,28 @@ }, { "name": "jean85/pretty-package-versions", - "version": "2.0.6", + "version": "2.1.0", "source": { "type": "git", "url": "https://github.com/Jean85/pretty-package-versions.git", - "reference": "f9fdd29ad8e6d024f52678b570e5593759b550b4" + "reference": "3c4e5f62ba8d7de1734312e4fff32f67a8daaf10" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/f9fdd29ad8e6d024f52678b570e5593759b550b4", - "reference": "f9fdd29ad8e6d024f52678b570e5593759b550b4", + "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/3c4e5f62ba8d7de1734312e4fff32f67a8daaf10", + "reference": "3c4e5f62ba8d7de1734312e4fff32f67a8daaf10", "shasum": "" }, "require": { - "composer-runtime-api": "^2.0.0", - "php": "^7.1|^8.0" + "composer-runtime-api": "^2.1.0", + "php": "^7.4|^8.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.2", "jean85/composer-provided-replaced-stub-package": "^1.0", "phpstan/phpstan": "^1.4", - "phpunit/phpunit": "^7.5|^8.5|^9.4", - "vimeo/psalm": "^4.3" + "phpunit/phpunit": "^7.5|^8.5|^9.6", + "vimeo/psalm": "^4.3 || ^5.0" }, "type": "library", "extra": { @@ -2808,9 +2808,9 @@ ], "support": { "issues": "https://github.com/Jean85/pretty-package-versions/issues", - "source": "https://github.com/Jean85/pretty-package-versions/tree/2.0.6" + "source": "https://github.com/Jean85/pretty-package-versions/tree/2.1.0" }, - "time": "2024-03-08T09:58:59+00:00" + "time": "2024-11-18T16:19:46+00:00" }, { "name": "lcobucci/jwt", @@ -7681,20 +7681,21 @@ }, { "name": "symfony/mime", - "version": "v7.1.6", + "version": "v6.4.13", "source": { "type": "git", "url": "https://github.com/symfony/mime.git", - "reference": "caa1e521edb2650b8470918dfe51708c237f0598" + "reference": "1de1cf14d99b12c7ebbb850491ec6ae3ed468855" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/caa1e521edb2650b8470918dfe51708c237f0598", - "reference": "caa1e521edb2650b8470918dfe51708c237f0598", + "url": "https://api.github.com/repos/symfony/mime/zipball/1de1cf14d99b12c7ebbb850491ec6ae3ed468855", + "reference": "1de1cf14d99b12c7ebbb850491ec6ae3ed468855", "shasum": "" }, "require": { - "php": ">=8.2", + "php": ">=8.1", + "symfony/deprecation-contracts": "^2.5|^3", "symfony/polyfill-intl-idn": "^1.10", "symfony/polyfill-mbstring": "^1.0" }, @@ -7702,17 +7703,17 @@ "egulias/email-validator": "~3.0.0", "phpdocumentor/reflection-docblock": "<3.2.2", "phpdocumentor/type-resolver": "<1.4.0", - "symfony/mailer": "<6.4", + "symfony/mailer": "<5.4", "symfony/serializer": "<6.4.3|>7.0,<7.0.3" }, "require-dev": { "egulias/email-validator": "^2.1.10|^3.1|^4", "league/html-to-markdown": "^5.0", "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", - "symfony/dependency-injection": "^6.4|^7.0", - "symfony/process": "^6.4|^7.0", - "symfony/property-access": "^6.4|^7.0", - "symfony/property-info": "^6.4|^7.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.4|^7.0", + "symfony/property-access": "^5.4|^6.0|^7.0", + "symfony/property-info": "^5.4|^6.0|^7.0", "symfony/serializer": "^6.4.3|^7.0.3" }, "type": "library", @@ -7745,7 +7746,7 @@ "mime-type" ], "support": { - "source": "https://github.com/symfony/mime/tree/v7.1.6" + "source": "https://github.com/symfony/mime/tree/v6.4.13" }, "funding": [ { @@ -7761,7 +7762,7 @@ "type": "tidelift" } ], - "time": "2024-10-25T15:11:02+00:00" + "time": "2024-10-25T15:07:50+00:00" }, { "name": "symfony/monolog-bridge", @@ -12260,16 +12261,16 @@ }, { "name": "phpstan/phpstan", - "version": "1.12.10", + "version": "1.12.11", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "fc463b5d0fe906dcf19689be692c65c50406a071" + "reference": "0d1fc20a962a91be578bcfe7cf939e6e1a2ff733" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/fc463b5d0fe906dcf19689be692c65c50406a071", - "reference": "fc463b5d0fe906dcf19689be692c65c50406a071", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0d1fc20a962a91be578bcfe7cf939e6e1a2ff733", + "reference": "0d1fc20a962a91be578bcfe7cf939e6e1a2ff733", "shasum": "" }, "require": { @@ -12314,7 +12315,7 @@ "type": "github" } ], - "time": "2024-11-11T15:37:09+00:00" + "time": "2024-11-17T14:08:01+00:00" }, { "name": "phpunit/php-code-coverage",