diff --git a/CHANGELOG-5.x.md b/CHANGELOG-5.x.md index 64f281ccd..7eba17b39 100644 --- a/CHANGELOG-5.x.md +++ b/CHANGELOG-5.x.md @@ -1,5 +1,25 @@ # Changelog 5.x +## 5.18.0 (2024-06-25) +### Features +* feat(common/admin): update command dump file and onlyMissing option by @theus77 in https://github.com/ems-project/elasticms/pull/897 +* feat(common/api): add EMS_BACKEND_API_TIMEOUT config by @theus77 in https://github.com/ems-project/elasticms/pull/900 +* feat(core/twig): add emsco_save_contents twig function by @theus77 in https://github.com/ems-project/elasticms/pull/901 +* feat(core/twig): add emsco_warning and emsco_notice functions by @theus77 in https://github.com/ems-project/elasticms/pull/905 +* feat(core/view): define contentType default overview by @Davidmattei in https://github.com/ems-project/elasticms/pull/910 +* feat(demo): add asset content type (documentation) by @Davidmattei in https://github.com/ems-project/elasticms/pull/907 +* feat(demo): implement emsco_display for content types by @Davidmattei in https://github.com/ems-project/elasticms/pull/913 +* feat(elasticms): add file structure commands for static websites by @theus77 in https://github.com/ems-project/elasticms/pull/917 +* feat(elasticms): add force option to file structure publish (target out of sync) by @theus77 in https://github.com/ems-project/elasticms/pull/919 +* feat(ems/command): add ems:batch command by @Davidmattei in https://github.com/ems-project/elasticms/pull/918 +### Bug Fixes +* fix(cli): load twig bundle for (ems:batch) command by @Davidmattei in https://github.com/ems-project/elasticms/pull/927 +* fix(cli/import): trim import headers by @Davidmattei in https://github.com/ems-project/elasticms/pull/908 +* fix(core/release): rework publish and unpublish by @Davidmattei in https://github.com/ems-project/elasticms/pull/912 +### Code Refactoring +* refactor(core): extract translations by @Davidmattei in https://github.com/ems-project/elasticms/pull/916 +* refactor: build translations with symfony 6 by @Davidmattei in https://github.com/ems-project/elasticms/pull/920 + ## 5.17.2 (2024-06-24) ### Bug Fixes * fix(common/storage): S3StreamPromise read by @theus77 in https://github.com/ems-project/elasticms/pull/924 diff --git a/EMS/admin-ui-bundle/composer.json b/EMS/admin-ui-bundle/composer.json index 2d920104c..50eb7d7dc 100644 --- a/EMS/admin-ui-bundle/composer.json +++ b/EMS/admin-ui-bundle/composer.json @@ -16,7 +16,7 @@ ], "require" : { "php": "^8.1", - "elasticms/core-bundle": "5.17.*" + "elasticms/core-bundle": "5.18.*" }, "autoload" : { "psr-4" : { diff --git a/EMS/client-helper-bundle/composer.json b/EMS/client-helper-bundle/composer.json index 26ba0ac8d..591feb4cb 100644 --- a/EMS/client-helper-bundle/composer.json +++ b/EMS/client-helper-bundle/composer.json @@ -15,7 +15,7 @@ "require" : { "php": "^8.1", "composer/ca-bundle": "^1.1", - "elasticms/common-bundle": "5.17.*", + "elasticms/common-bundle": "5.18.*", "onelogin/php-saml": "^4.1", "stevenmaguire/oauth2-keycloak": "^5.1", "symfony-cmf/routing": "^2.3", diff --git a/EMS/common-bundle/composer.json b/EMS/common-bundle/composer.json index c460c6cc1..b44b40497 100644 --- a/EMS/common-bundle/composer.json +++ b/EMS/common-bundle/composer.json @@ -27,7 +27,7 @@ "doctrine/doctrine-bundle": "^2.8", "doctrine/orm": "^2.6", "dompdf/dompdf": "^v2.0", - "elasticms/helpers": "5.17.*", + "elasticms/helpers": "5.18.*", "guzzlehttp/guzzle": "^6.3", "maennchen/zipstream-php": "^2.4", "phpoffice/phpspreadsheet": "^1.16", diff --git a/EMS/core-bundle/composer.json b/EMS/core-bundle/composer.json index 705e0a285..02e58b37f 100644 --- a/EMS/core-bundle/composer.json +++ b/EMS/core-bundle/composer.json @@ -24,8 +24,8 @@ "doctrine/doctrine-bundle": "^2.8", "doctrine/doctrine-migrations-bundle": "^3.2", "dragonmantank/cron-expression": "^3.1", - "elasticms/submission-bundle": "5.17.*", - "elasticms/xliff": "5.17.*", + "elasticms/submission-bundle": "5.18.*", + "elasticms/xliff": "5.18.*", "guzzlehttp/guzzle": "^6.3", "maennchen/zipstream-php": "^2.4", "ocramius/doctrine-batch-utils": "^2.5", diff --git a/EMS/form-bundle/composer.json b/EMS/form-bundle/composer.json index 75082bc8c..9dbcccbee 100644 --- a/EMS/form-bundle/composer.json +++ b/EMS/form-bundle/composer.json @@ -14,7 +14,7 @@ ], "require" : { "php": "^8.1", - "elasticms/client-helper-bundle": "5.17.*", + "elasticms/client-helper-bundle": "5.18.*", "giggsey/libphonenumber-for-php": "^8.12", "symfony/form": "^5.4", "symfony/intl": "^5.4", diff --git a/EMS/submission-bundle/composer.json b/EMS/submission-bundle/composer.json index 711c2397d..d1c0ef2d5 100644 --- a/EMS/submission-bundle/composer.json +++ b/EMS/submission-bundle/composer.json @@ -14,7 +14,7 @@ ], "require" : { "php" : "^8.1", - "elasticms/form-bundle" : "5.17.*", + "elasticms/form-bundle" : "5.18.*", "league/flysystem-memory": "^2.0", "league/flysystem-sftp-v3": "^2.0", "symfony/console": "^5.4", diff --git a/EMS/xliff/composer.json b/EMS/xliff/composer.json index c26ef8fc6..483283271 100644 --- a/EMS/xliff/composer.json +++ b/EMS/xliff/composer.json @@ -17,7 +17,7 @@ "require" : { "php": "^8.1", "ext-dom": "*", - "elasticms/helpers": "5.17.*", + "elasticms/helpers": "5.18.*", "symfony/dom-crawler": "^5.4", "symfony/property-access": "^5.4" }, diff --git a/build/src/Release/Command/AbstractCommand.php b/build/src/Release/Command/AbstractCommand.php index 5a96fe045..45ff82c53 100644 --- a/build/src/Release/Command/AbstractCommand.php +++ b/build/src/Release/Command/AbstractCommand.php @@ -75,9 +75,7 @@ protected function confirm(string $question, bool $default = true): bool protected function runProcess(Process $process): void { $this->processHelper->run($this->output, $process, null, function (string $type, string $data): void { - if (Process::ERR === $type) { - $this->io->warning($data); - } else { + if (Process::ERR !== $type) { $this->output->write($data); } }); diff --git a/composer.lock b/composer.lock index 48b759d50..0d2e0721e 100644 --- a/composer.lock +++ b/composer.lock @@ -8,16 +8,16 @@ "packages": [ { "name": "aws/aws-crt-php", - "version": "v1.2.5", + "version": "v1.2.6", "source": { "type": "git", "url": "https://github.com/awslabs/aws-crt-php.git", - "reference": "0ea1f04ec5aa9f049f97e012d1ed63b76834a31b" + "reference": "a63485b65b6b3367039306496d49737cf1995408" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/0ea1f04ec5aa9f049f97e012d1ed63b76834a31b", - "reference": "0ea1f04ec5aa9f049f97e012d1ed63b76834a31b", + "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/a63485b65b6b3367039306496d49737cf1995408", + "reference": "a63485b65b6b3367039306496d49737cf1995408", "shasum": "" }, "require": { @@ -56,22 +56,22 @@ ], "support": { "issues": "https://github.com/awslabs/aws-crt-php/issues", - "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.5" + "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.6" }, - "time": "2024-04-19T21:30:56+00:00" + "time": "2024-06-13T17:21:28+00:00" }, { "name": "aws/aws-sdk-php", - "version": "3.314.3", + "version": "3.314.7", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "c9e8a31cfa07f47b7ab9ecc741845a3a9d50fc61" + "reference": "3a7ea3e49ae50eaaa969dc15d69b2dd46b4d7284" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/c9e8a31cfa07f47b7ab9ecc741845a3a9d50fc61", - "reference": "c9e8a31cfa07f47b7ab9ecc741845a3a9d50fc61", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/3a7ea3e49ae50eaaa969dc15d69b2dd46b4d7284", + "reference": "3a7ea3e49ae50eaaa969dc15d69b2dd46b4d7284", "shasum": "" }, "require": { @@ -151,9 +151,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.314.3" + "source": "https://github.com/aws/aws-sdk-php/tree/3.314.7" }, - "time": "2024-06-17T18:13:22+00:00" + "time": "2024-06-24T21:03:27+00:00" }, { "name": "bacon/bacon-qr-code", @@ -868,16 +868,16 @@ }, { "name": "doctrine/dbal", - "version": "3.8.5", + "version": "3.8.6", "source": { "type": "git", "url": "https://github.com/doctrine/dbal.git", - "reference": "0e3536ba088a749985c8801105b6b3ac6c1280b6" + "reference": "b7411825cf7efb7e51f9791dea19d86e43b399a1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/dbal/zipball/0e3536ba088a749985c8801105b6b3ac6c1280b6", - "reference": "0e3536ba088a749985c8801105b6b3ac6c1280b6", + "url": "https://api.github.com/repos/doctrine/dbal/zipball/b7411825cf7efb7e51f9791dea19d86e43b399a1", + "reference": "b7411825cf7efb7e51f9791dea19d86e43b399a1", "shasum": "" }, "require": { @@ -893,12 +893,12 @@ "doctrine/coding-standard": "12.0.0", "fig/log-test": "^1", "jetbrains/phpstorm-stubs": "2023.1", - "phpstan/phpstan": "1.11.1", + "phpstan/phpstan": "1.11.5", "phpstan/phpstan-strict-rules": "^1.6", "phpunit/phpunit": "9.6.19", "psalm/plugin-phpunit": "0.18.4", "slevomat/coding-standard": "8.13.1", - "squizlabs/php_codesniffer": "3.9.2", + "squizlabs/php_codesniffer": "3.10.1", "symfony/cache": "^5.4|^6.0|^7.0", "symfony/console": "^4.4|^5.4|^6.0|^7.0", "vimeo/psalm": "4.30.0" @@ -961,7 +961,7 @@ ], "support": { "issues": "https://github.com/doctrine/dbal/issues", - "source": "https://github.com/doctrine/dbal/tree/3.8.5" + "source": "https://github.com/doctrine/dbal/tree/3.8.6" }, "funding": [ { @@ -977,7 +977,7 @@ "type": "tidelift" } ], - "time": "2024-06-08T17:49:56+00:00" + "time": "2024-06-19T10:38:17+00:00" }, { "name": "doctrine/deprecations", @@ -1774,16 +1774,16 @@ }, { "name": "doctrine/persistence", - "version": "3.3.2", + "version": "3.3.3", "source": { "type": "git", "url": "https://github.com/doctrine/persistence.git", - "reference": "477da35bd0255e032826f440b94b3e37f2d56f42" + "reference": "b337726451f5d530df338fc7f68dee8781b49779" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/persistence/zipball/477da35bd0255e032826f440b94b3e37f2d56f42", - "reference": "477da35bd0255e032826f440b94b3e37f2d56f42", + "url": "https://api.github.com/repos/doctrine/persistence/zipball/b337726451f5d530df338fc7f68dee8781b49779", + "reference": "b337726451f5d530df338fc7f68dee8781b49779", "shasum": "" }, "require": { @@ -1795,15 +1795,14 @@ "doctrine/common": "<2.10" }, "require-dev": { - "composer/package-versions-deprecated": "^1.11", - "doctrine/coding-standard": "^11", + "doctrine/coding-standard": "^12", "doctrine/common": "^3.0", - "phpstan/phpstan": "1.9.4", + "phpstan/phpstan": "1.11.1", "phpstan/phpstan-phpunit": "^1", "phpstan/phpstan-strict-rules": "^1.1", "phpunit/phpunit": "^8.5 || ^9.5", "symfony/cache": "^4.4 || ^5.4 || ^6.0", - "vimeo/psalm": "4.30.0 || 5.3.0" + "vimeo/psalm": "4.30.0 || 5.24.0" }, "type": "library", "autoload": { @@ -1852,7 +1851,7 @@ ], "support": { "issues": "https://github.com/doctrine/persistence/issues", - "source": "https://github.com/doctrine/persistence/tree/3.3.2" + "source": "https://github.com/doctrine/persistence/tree/3.3.3" }, "funding": [ { @@ -1868,7 +1867,7 @@ "type": "tidelift" } ], - "time": "2024-03-12T14:54:36+00:00" + "time": "2024-06-20T10:14:30+00:00" }, { "name": "doctrine/sql-formatter", @@ -4819,16 +4818,16 @@ }, { "name": "phpseclib/phpseclib", - "version": "3.0.38", + "version": "3.0.39", "source": { "type": "git", "url": "https://github.com/phpseclib/phpseclib.git", - "reference": "b18b8788e51156c4dd97b7f220a31149a0052067" + "reference": "211ebc399c6e73c225a018435fe5ae209d1d1485" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/b18b8788e51156c4dd97b7f220a31149a0052067", - "reference": "b18b8788e51156c4dd97b7f220a31149a0052067", + "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/211ebc399c6e73c225a018435fe5ae209d1d1485", + "reference": "211ebc399c6e73c225a018435fe5ae209d1d1485", "shasum": "" }, "require": { @@ -4909,7 +4908,7 @@ ], "support": { "issues": "https://github.com/phpseclib/phpseclib/issues", - "source": "https://github.com/phpseclib/phpseclib/tree/3.0.38" + "source": "https://github.com/phpseclib/phpseclib/tree/3.0.39" }, "funding": [ { @@ -4925,7 +4924,7 @@ "type": "tidelift" } ], - "time": "2024-06-17T10:11:32+00:00" + "time": "2024-06-24T06:27:33+00:00" }, { "name": "promphp/prometheus_client_php", @@ -8970,16 +8969,16 @@ }, { "name": "symfony/polyfill-intl-grapheme", - "version": "v1.29.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-grapheme.git", - "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f" + "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f", - "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/64647a7c30b2283f5d49b874d84a18fc22054b7a", + "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a", "shasum": "" }, "require": { @@ -9028,7 +9027,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.30.0" }, "funding": [ { @@ -9044,20 +9043,20 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-05-31T15:07:36+00:00" }, { "name": "symfony/polyfill-intl-icu", - "version": "v1.29.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-icu.git", - "reference": "07094a28851a49107f3ab4f9120ca2975a64b6e1" + "reference": "e76343c631b453088e2260ac41dfebe21954de81" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/07094a28851a49107f3ab4f9120ca2975a64b6e1", - "reference": "07094a28851a49107f3ab4f9120ca2975a64b6e1", + "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/e76343c631b453088e2260ac41dfebe21954de81", + "reference": "e76343c631b453088e2260ac41dfebe21954de81", "shasum": "" }, "require": { @@ -9112,7 +9111,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.30.0" }, "funding": [ { @@ -9128,20 +9127,20 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:12:16+00:00" + "time": "2024-05-31T15:07:36+00:00" }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.29.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "a287ed7475f85bf6f61890146edbc932c0fff919" + "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a287ed7475f85bf6f61890146edbc932c0fff919", - "reference": "a287ed7475f85bf6f61890146edbc932c0fff919", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a6e83bdeb3c84391d1dfe16f42e40727ce524a5c", + "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c", "shasum": "" }, "require": { @@ -9196,7 +9195,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.30.0" }, "funding": [ { @@ -9212,20 +9211,20 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-05-31T15:07:36+00:00" }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.29.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "bc45c394692b948b4d383a08d7753968bed9a83d" + "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d", - "reference": "bc45c394692b948b4d383a08d7753968bed9a83d", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/a95281b0be0d9ab48050ebd988b967875cdb9fdb", + "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb", "shasum": "" }, "require": { @@ -9277,7 +9276,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.30.0" }, "funding": [ { @@ -9293,7 +9292,7 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-05-31T15:07:36+00:00" }, { "name": "symfony/process", diff --git a/demo/.env b/demo/.env index cd90048b8..ca66dd8bc 100644 --- a/demo/.env +++ b/demo/.env @@ -1,7 +1,7 @@ # Project namespace (defaults to the current folder name if not set) COMPOSE_PROJECT_NAME=elasticms_demo -EMS_VERSION=5.17.0 +EMS_VERSION=5.18.0 INSTANCE_ID='ems_promo_v2_' EMS_BACKEND_URL=http://local.ems-demo-admin:9000 EMS_ADMIN_URL=http://local.ems-demo-admin.localhost diff --git a/docs/elasticms-admin/commands/commands.md b/docs/elasticms-admin/commands/commands.md index 9cac7fb2a..cbb0a5ed9 100644 --- a/docs/elasticms-admin/commands/commands.md +++ b/docs/elasticms-admin/commands/commands.md @@ -464,7 +464,7 @@ Options: --bulk-size=BULK-SIZE Size of the elasticsearch scroll request [default: 500] --target-environment[=TARGET-ENVIRONMENT] Environment with the target documents --xliff-version[=XLIFF-VERSION] XLIFF format version: 1.2 2.0 [default: "1.2"] - --filename[=FILENAME] Generate the XLIFF specified file + --basename[=BASENAME] XLIFF export file basename [default: "ems-extract.xlf"] --base-url[=BASE-URL] Base url, in order to generate a download link to the XLIFF file --locale-field[=LOCALE-FIELD] Field containing the locale --encoding[=ENCODING] Encoding used to generate the XLIFF file [default: "UTF-8"] @@ -507,7 +507,9 @@ Arguments: Options: --publish-to[=PUBLISH-TO] If defined the revision will be published in the defined environment --archive If set another revision will be flagged as archived - --locale-field[=LOCALE-FIELD] Field containing the locale [default: "locale"] - --translation-field[=TRANSLATION-FIELD] Field containing the translation field [default: "translation_id"] + --locale-field[=LOCALE-FIELD] Field containing the locale + --translation-field[=TRANSLATION-FIELD] Field containing the translation field --dry-run If set nothing is saved in the database + --current-revision-only Translations will be updated only is the source revision is still a current revision + --base-url[=BASE-URL] Base url, in order to generate a download link to the error report ``` diff --git a/docs/upgrade.md b/docs/upgrade.md index 0f22478b4..2152a7dc4 100644 --- a/docs/upgrade.md +++ b/docs/upgrade.md @@ -1,5 +1,6 @@ # Upgrade + * [version 5.19.x](#version-519x) * [version 5.17.x](#version-517x) * [version 5.15.x](#version-515x) * [version 5.14.x](#version-514x) @@ -9,6 +10,17 @@ * [version 4.x](#version-4x) * [Tips and tricks](#tips-and-tricks) +## version 5.19.x + +* Xliff command options have been updated + * The `--filename` option in the `emsco:xliff:extract` command has been replaced by a `--basename` option and does not contains a path anymore, just a file basename. + + Example replace ```emsco:xliff:extract live '{}' nl de title --filename=/tmp/pages-nl-to-de.xlf``` + by ```emsco:xliff:extract live '{}' nl de title --basename=pages-nl-to-de.xlf``` + * In case of warning or error in the `emsco:xliff:update` command the report file is no more available locally. The report is upladed in the admin's storages. The directly get a link to the report you need to specify a `--base-url` option. + + Example ```emsco:xliff:update /tmp/pages-nl-to-de.xlf --base-url=https://my-admin.my-project.tld``` + ## version 5.17.x * Check routes single colon is deprecated diff --git a/elasticms-admin/composer.json b/elasticms-admin/composer.json index cd1e8f475..e8fa3a393 100644 --- a/elasticms-admin/composer.json +++ b/elasticms-admin/composer.json @@ -24,8 +24,8 @@ "doctrine/doctrine-bundle": "^2.8", "doctrine/doctrine-migrations-bundle": "^3.2", "doctrine/orm": "^2.6", - "elasticms/core-bundle": "5.17.*", - "elasticms/admin-ui-bundle": "5.17.*", + "elasticms/core-bundle": "5.18.*", + "elasticms/admin-ui-bundle": "5.18.*", "symfony/console": "^5.4", "symfony/dotenv": "^5.4", "symfony/expression-language": "^6.2", diff --git a/elasticms-admin/composer.lock b/elasticms-admin/composer.lock index 5e2bcd47c..41d7730d2 100644 --- a/elasticms-admin/composer.lock +++ b/elasticms-admin/composer.lock @@ -4,20 +4,20 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "8aab3c3e1df78492977d4270ddd9b487", + "content-hash": "e215ee89813cba44f67ac05b6f4e9e4c", "packages": [ { "name": "aws/aws-crt-php", - "version": "v1.2.5", + "version": "v1.2.6", "source": { "type": "git", "url": "https://github.com/awslabs/aws-crt-php.git", - "reference": "0ea1f04ec5aa9f049f97e012d1ed63b76834a31b" + "reference": "a63485b65b6b3367039306496d49737cf1995408" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/0ea1f04ec5aa9f049f97e012d1ed63b76834a31b", - "reference": "0ea1f04ec5aa9f049f97e012d1ed63b76834a31b", + "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/a63485b65b6b3367039306496d49737cf1995408", + "reference": "a63485b65b6b3367039306496d49737cf1995408", "shasum": "" }, "require": { @@ -56,22 +56,22 @@ ], "support": { "issues": "https://github.com/awslabs/aws-crt-php/issues", - "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.5" + "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.6" }, - "time": "2024-04-19T21:30:56+00:00" + "time": "2024-06-13T17:21:28+00:00" }, { "name": "aws/aws-sdk-php", - "version": "3.308.7", + "version": "3.314.7", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "97074bd8cdd9fe498570821cefa4868fa3353cf3" + "reference": "3a7ea3e49ae50eaaa969dc15d69b2dd46b4d7284" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/97074bd8cdd9fe498570821cefa4868fa3353cf3", - "reference": "97074bd8cdd9fe498570821cefa4868fa3353cf3", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/3a7ea3e49ae50eaaa969dc15d69b2dd46b4d7284", + "reference": "3a7ea3e49ae50eaaa969dc15d69b2dd46b4d7284", "shasum": "" }, "require": { @@ -151,9 +151,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.308.7" + "source": "https://github.com/aws/aws-sdk-php/tree/3.314.7" }, - "time": "2024-05-31T18:17:12+00:00" + "time": "2024-06-24T21:03:27+00:00" }, { "name": "brick/math", @@ -764,16 +764,16 @@ }, { "name": "doctrine/dbal", - "version": "3.8.4", + "version": "3.8.6", "source": { "type": "git", "url": "https://github.com/doctrine/dbal.git", - "reference": "b05e48a745f722801f55408d0dbd8003b403dbbd" + "reference": "b7411825cf7efb7e51f9791dea19d86e43b399a1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/dbal/zipball/b05e48a745f722801f55408d0dbd8003b403dbbd", - "reference": "b05e48a745f722801f55408d0dbd8003b403dbbd", + "url": "https://api.github.com/repos/doctrine/dbal/zipball/b7411825cf7efb7e51f9791dea19d86e43b399a1", + "reference": "b7411825cf7efb7e51f9791dea19d86e43b399a1", "shasum": "" }, "require": { @@ -789,12 +789,12 @@ "doctrine/coding-standard": "12.0.0", "fig/log-test": "^1", "jetbrains/phpstorm-stubs": "2023.1", - "phpstan/phpstan": "1.10.58", - "phpstan/phpstan-strict-rules": "^1.5", - "phpunit/phpunit": "9.6.16", + "phpstan/phpstan": "1.11.5", + "phpstan/phpstan-strict-rules": "^1.6", + "phpunit/phpunit": "9.6.19", "psalm/plugin-phpunit": "0.18.4", "slevomat/coding-standard": "8.13.1", - "squizlabs/php_codesniffer": "3.9.0", + "squizlabs/php_codesniffer": "3.10.1", "symfony/cache": "^5.4|^6.0|^7.0", "symfony/console": "^4.4|^5.4|^6.0|^7.0", "vimeo/psalm": "4.30.0" @@ -857,7 +857,7 @@ ], "support": { "issues": "https://github.com/doctrine/dbal/issues", - "source": "https://github.com/doctrine/dbal/tree/3.8.4" + "source": "https://github.com/doctrine/dbal/tree/3.8.6" }, "funding": [ { @@ -873,7 +873,7 @@ "type": "tidelift" } ], - "time": "2024-04-25T07:04:44+00:00" + "time": "2024-06-19T10:38:17+00:00" }, { "name": "doctrine/deprecations", @@ -1670,16 +1670,16 @@ }, { "name": "doctrine/persistence", - "version": "3.3.2", + "version": "3.3.3", "source": { "type": "git", "url": "https://github.com/doctrine/persistence.git", - "reference": "477da35bd0255e032826f440b94b3e37f2d56f42" + "reference": "b337726451f5d530df338fc7f68dee8781b49779" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/persistence/zipball/477da35bd0255e032826f440b94b3e37f2d56f42", - "reference": "477da35bd0255e032826f440b94b3e37f2d56f42", + "url": "https://api.github.com/repos/doctrine/persistence/zipball/b337726451f5d530df338fc7f68dee8781b49779", + "reference": "b337726451f5d530df338fc7f68dee8781b49779", "shasum": "" }, "require": { @@ -1691,15 +1691,14 @@ "doctrine/common": "<2.10" }, "require-dev": { - "composer/package-versions-deprecated": "^1.11", - "doctrine/coding-standard": "^11", + "doctrine/coding-standard": "^12", "doctrine/common": "^3.0", - "phpstan/phpstan": "1.9.4", + "phpstan/phpstan": "1.11.1", "phpstan/phpstan-phpunit": "^1", "phpstan/phpstan-strict-rules": "^1.1", "phpunit/phpunit": "^8.5 || ^9.5", "symfony/cache": "^4.4 || ^5.4 || ^6.0", - "vimeo/psalm": "4.30.0 || 5.3.0" + "vimeo/psalm": "4.30.0 || 5.24.0" }, "type": "library", "autoload": { @@ -1748,7 +1747,7 @@ ], "support": { "issues": "https://github.com/doctrine/persistence/issues", - "source": "https://github.com/doctrine/persistence/tree/3.3.2" + "source": "https://github.com/doctrine/persistence/tree/3.3.3" }, "funding": [ { @@ -1764,7 +1763,7 @@ "type": "tidelift" } ], - "time": "2024-03-12T14:54:36+00:00" + "time": "2024-06-20T10:14:30+00:00" }, { "name": "doctrine/sql-formatter", @@ -2013,20 +2012,20 @@ }, { "name": "elasticms/admin-ui-bundle", - "version": "5.17.2", + "version": "5.18.0", "source": { "type": "git", "url": "https://github.com/ems-project/EMSAdminUIBundle.git", - "reference": "6de66c23dbd96acb1d92c52ad84a7492e00b5d02" + "reference": "e95f6d1a8afd7f152bfdc2cb82d75998d789f1ee" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ems-project/EMSAdminUIBundle/zipball/6de66c23dbd96acb1d92c52ad84a7492e00b5d02", - "reference": "6de66c23dbd96acb1d92c52ad84a7492e00b5d02", + "url": "https://api.github.com/repos/ems-project/EMSAdminUIBundle/zipball/e95f6d1a8afd7f152bfdc2cb82d75998d789f1ee", + "reference": "e95f6d1a8afd7f152bfdc2cb82d75998d789f1ee", "shasum": "" }, "require": { - "elasticms/core-bundle": "5.17.*", + "elasticms/core-bundle": "5.18.*", "php": "^8.1" }, "type": "symfony-bundle", @@ -2052,27 +2051,27 @@ "ui" ], "support": { - "source": "https://github.com/ems-project/EMSAdminUIBundle/tree/5.17.2" + "source": "https://github.com/ems-project/EMSAdminUIBundle/tree/5.18.0" }, - "time": "2024-06-03T12:39:52+00:00" + "time": "2024-06-25T05:20:33+00:00" }, { "name": "elasticms/client-helper-bundle", - "version": "5.17.2", + "version": "5.18.0", "source": { "type": "git", "url": "https://github.com/ems-project/EMSClientHelperBundle.git", - "reference": "5942f2a18c3a0ac0de54118ebc1e209db44cf6b8" + "reference": "564cb841bb400e65fe9ece3feb1f4b9919389dfd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ems-project/EMSClientHelperBundle/zipball/5942f2a18c3a0ac0de54118ebc1e209db44cf6b8", - "reference": "5942f2a18c3a0ac0de54118ebc1e209db44cf6b8", + "url": "https://api.github.com/repos/ems-project/EMSClientHelperBundle/zipball/564cb841bb400e65fe9ece3feb1f4b9919389dfd", + "reference": "564cb841bb400e65fe9ece3feb1f4b9919389dfd", "shasum": "" }, "require": { "composer/ca-bundle": "^1.1", - "elasticms/common-bundle": "5.17.*", + "elasticms/common-bundle": "5.18.*", "onelogin/php-saml": "^4.1", "php": "^8.1", "stevenmaguire/oauth2-keycloak": "^5.1", @@ -2110,22 +2109,22 @@ "elasticms" ], "support": { - "source": "https://github.com/ems-project/EMSClientHelperBundle/tree/5.17.2" + "source": "https://github.com/ems-project/EMSClientHelperBundle/tree/5.18.0" }, - "time": "2024-06-03T12:39:52+00:00" + "time": "2024-06-25T05:20:33+00:00" }, { "name": "elasticms/common-bundle", - "version": "5.17.2", + "version": "5.18.0", "source": { "type": "git", "url": "https://github.com/ems-project/EMSCommonBundle.git", - "reference": "d28160255829ae156d1facd2e4d59f949743d486" + "reference": "5fb6f48b371303cc6af9f903ce4f02e543024d8a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ems-project/EMSCommonBundle/zipball/d28160255829ae156d1facd2e4d59f949743d486", - "reference": "d28160255829ae156d1facd2e4d59f949743d486", + "url": "https://api.github.com/repos/ems-project/EMSCommonBundle/zipball/5fb6f48b371303cc6af9f903ce4f02e543024d8a", + "reference": "5fb6f48b371303cc6af9f903ce4f02e543024d8a", "shasum": "" }, "require": { @@ -2135,7 +2134,7 @@ "doctrine/doctrine-bundle": "^2.8", "doctrine/orm": "^2.6", "dompdf/dompdf": "^v2.0", - "elasticms/helpers": "5.17.*", + "elasticms/helpers": "5.18.*", "ext-dom": "*", "ext-exif": "*", "ext-gd": "*", @@ -2167,6 +2166,7 @@ "symfony/serializer": "^5.4", "symfony/stopwatch": "^5.4", "symfony/translation": "^5.4", + "symfony/twig-bundle": "^5.4", "twig/cache-extra": "^3.4", "twig/cssinliner-extra": "^3.4", "twig/extra-bundle": "^3.4", @@ -2202,22 +2202,22 @@ "elasticms" ], "support": { - "source": "https://github.com/ems-project/EMSCommonBundle/tree/5.17.2" + "source": "https://github.com/ems-project/EMSCommonBundle/tree/5.18.0" }, - "time": "2024-06-24T16:41:36+00:00" + "time": "2024-06-25T05:20:33+00:00" }, { "name": "elasticms/core-bundle", - "version": "5.17.2", + "version": "5.18.0", "source": { "type": "git", "url": "https://github.com/ems-project/EMSCoreBundle.git", - "reference": "223b68c0f255db2d0de3cb9b5d6d46d26a3aca05" + "reference": "30b635ea4b1385859d86ecf815b9a82830b8aaf6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ems-project/EMSCoreBundle/zipball/223b68c0f255db2d0de3cb9b5d6d46d26a3aca05", - "reference": "223b68c0f255db2d0de3cb9b5d6d46d26a3aca05", + "url": "https://api.github.com/repos/ems-project/EMSCoreBundle/zipball/30b635ea4b1385859d86ecf815b9a82830b8aaf6", + "reference": "30b635ea4b1385859d86ecf815b9a82830b8aaf6", "shasum": "" }, "require": { @@ -2226,8 +2226,8 @@ "doctrine/doctrine-bundle": "^2.8", "doctrine/doctrine-migrations-bundle": "^3.2", "dragonmantank/cron-expression": "^3.1", - "elasticms/submission-bundle": "5.17.*", - "elasticms/xliff": "5.17.*", + "elasticms/submission-bundle": "5.18.*", + "elasticms/xliff": "5.18.*", "ext-libxml": "*", "ext-openssl": "*", "ext-simplexml": "*", @@ -2276,26 +2276,26 @@ "elasticms" ], "support": { - "source": "https://github.com/ems-project/EMSCoreBundle/tree/5.17.2" + "source": "https://github.com/ems-project/EMSCoreBundle/tree/5.18.0" }, - "time": "2024-06-24T16:41:36+00:00" + "time": "2024-06-25T05:20:33+00:00" }, { "name": "elasticms/form-bundle", - "version": "5.17.2", + "version": "5.18.0", "source": { "type": "git", "url": "https://github.com/ems-project/EMSFormBundle.git", - "reference": "2ace87ff5086f55d56c3dece394e57095f8a5de3" + "reference": "c56438eb733b1d4b45b8bc30a18d2a8e7075bed2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ems-project/EMSFormBundle/zipball/2ace87ff5086f55d56c3dece394e57095f8a5de3", - "reference": "2ace87ff5086f55d56c3dece394e57095f8a5de3", + "url": "https://api.github.com/repos/ems-project/EMSFormBundle/zipball/c56438eb733b1d4b45b8bc30a18d2a8e7075bed2", + "reference": "c56438eb733b1d4b45b8bc30a18d2a8e7075bed2", "shasum": "" }, "require": { - "elasticms/client-helper-bundle": "5.17.*", + "elasticms/client-helper-bundle": "5.18.*", "giggsey/libphonenumber-for-php": "^8.12", "php": "^8.1", "symfony/form": "^5.4", @@ -2328,22 +2328,22 @@ "elasticms" ], "support": { - "source": "https://github.com/ems-project/EMSFormBundle/tree/5.17.2" + "source": "https://github.com/ems-project/EMSFormBundle/tree/5.18.0" }, - "time": "2024-06-03T12:39:52+00:00" + "time": "2024-06-25T05:20:33+00:00" }, { "name": "elasticms/helpers", - "version": "5.17.2", + "version": "5.18.0", "source": { "type": "git", "url": "https://github.com/ems-project/helpers.git", - "reference": "0713cb2dec203045337e575270312843278867ae" + "reference": "fd6109dd739238fafd1563b78488a1f5b3b4f2d6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ems-project/helpers/zipball/0713cb2dec203045337e575270312843278867ae", - "reference": "0713cb2dec203045337e575270312843278867ae", + "url": "https://api.github.com/repos/ems-project/helpers/zipball/fd6109dd739238fafd1563b78488a1f5b3b4f2d6", + "reference": "fd6109dd739238fafd1563b78488a1f5b3b4f2d6", "shasum": "" }, "require": { @@ -2389,26 +2389,26 @@ "php" ], "support": { - "source": "https://github.com/ems-project/helpers/tree/5.17.2" + "source": "https://github.com/ems-project/helpers/tree/5.18.0" }, - "time": "2024-06-24T12:47:24+00:00" + "time": "2024-06-24T17:42:48+00:00" }, { "name": "elasticms/submission-bundle", - "version": "5.17.2", + "version": "5.18.0", "source": { "type": "git", "url": "https://github.com/ems-project/EMSSubmissionBundle.git", - "reference": "e1059bfa19f8eef1c7573f2f45ad308580e88fa2" + "reference": "0bc9f5fdad6e867471689669b4c56bc7ec4bc31a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ems-project/EMSSubmissionBundle/zipball/e1059bfa19f8eef1c7573f2f45ad308580e88fa2", - "reference": "e1059bfa19f8eef1c7573f2f45ad308580e88fa2", + "url": "https://api.github.com/repos/ems-project/EMSSubmissionBundle/zipball/0bc9f5fdad6e867471689669b4c56bc7ec4bc31a", + "reference": "0bc9f5fdad6e867471689669b4c56bc7ec4bc31a", "shasum": "" }, "require": { - "elasticms/form-bundle": "5.17.*", + "elasticms/form-bundle": "5.18.*", "league/flysystem-memory": "^2.0", "league/flysystem-sftp-v3": "^2.0", "php": "^8.1", @@ -2444,26 +2444,26 @@ "elasticms" ], "support": { - "source": "https://github.com/ems-project/EMSSubmissionBundle/tree/5.17.2" + "source": "https://github.com/ems-project/EMSSubmissionBundle/tree/5.18.0" }, - "time": "2024-06-03T14:36:09+00:00" + "time": "2024-06-25T05:20:33+00:00" }, { "name": "elasticms/xliff", - "version": "5.17.2", + "version": "5.18.0", "source": { "type": "git", "url": "https://github.com/ems-project/xliff.git", - "reference": "e923850473aeea49b5fce8e5c99f9d61da1c3f4d" + "reference": "e28003a020350af03a0dc0363502928e1329e884" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ems-project/xliff/zipball/e923850473aeea49b5fce8e5c99f9d61da1c3f4d", - "reference": "e923850473aeea49b5fce8e5c99f9d61da1c3f4d", + "url": "https://api.github.com/repos/ems-project/xliff/zipball/e28003a020350af03a0dc0363502928e1329e884", + "reference": "e28003a020350af03a0dc0363502928e1329e884", "shasum": "" }, "require": { - "elasticms/helpers": "5.17.*", + "elasticms/helpers": "5.18.*", "ext-dom": "*", "php": "^8.1", "symfony/dom-crawler": "^5.4", @@ -2504,9 +2504,9 @@ "xliff" ], "support": { - "source": "https://github.com/ems-project/xliff/tree/5.17.2" + "source": "https://github.com/ems-project/xliff/tree/5.18.0" }, - "time": "2024-06-03T12:39:52+00:00" + "time": "2024-06-25T05:20:33+00:00" }, { "name": "elasticsearch/elasticsearch", @@ -2893,16 +2893,16 @@ }, { "name": "giggsey/libphonenumber-for-php", - "version": "8.13.37", + "version": "8.13.39", "source": { "type": "git", "url": "https://github.com/giggsey/libphonenumber-for-php.git", - "reference": "536c747ff1af433dddc615b26b9674047e013076" + "reference": "5a36692616dba1ec4a24217f248021b1ec9cdade" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/536c747ff1af433dddc615b26b9674047e013076", - "reference": "536c747ff1af433dddc615b26b9674047e013076", + "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/5a36692616dba1ec4a24217f248021b1ec9cdade", + "reference": "5a36692616dba1ec4a24217f248021b1ec9cdade", "shasum": "" }, "require": { @@ -2964,7 +2964,7 @@ "issues": "https://github.com/giggsey/libphonenumber-for-php/issues", "source": "https://github.com/giggsey/libphonenumber-for-php" }, - "time": "2024-05-16T09:01:39+00:00" + "time": "2024-06-14T12:43:12+00:00" }, { "name": "giggsey/locale", @@ -3321,16 +3321,16 @@ }, { "name": "laminas/laminas-code", - "version": "4.13.0", + "version": "4.14.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-code.git", - "reference": "7353d4099ad5388e84737dd16994316a04f48dbf" + "reference": "562e02b7d85cb9142b5116cc76c4c7c162a11a1c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-code/zipball/7353d4099ad5388e84737dd16994316a04f48dbf", - "reference": "7353d4099ad5388e84737dd16994316a04f48dbf", + "url": "https://api.github.com/repos/laminas/laminas-code/zipball/562e02b7d85cb9142b5116cc76c4c7c162a11a1c", + "reference": "562e02b7d85cb9142b5116cc76c4c7c162a11a1c", "shasum": "" }, "require": { @@ -3342,7 +3342,7 @@ "laminas/laminas-coding-standard": "^2.5.0", "laminas/laminas-stdlib": "^3.17.0", "phpunit/phpunit": "^10.3.3", - "psalm/plugin-phpunit": "^0.18.4", + "psalm/plugin-phpunit": "^0.19.0", "vimeo/psalm": "^5.15.0" }, "suggest": { @@ -3380,7 +3380,7 @@ "type": "community_bridge" } ], - "time": "2023-10-18T10:00:55+00:00" + "time": "2024-06-17T08:50:25+00:00" }, { "name": "league/flysystem", @@ -4609,24 +4609,24 @@ }, { "name": "paragonie/constant_time_encoding", - "version": "v2.7.0", + "version": "v3.0.0", "source": { "type": "git", "url": "https://github.com/paragonie/constant_time_encoding.git", - "reference": "52a0d99e69f56b9ec27ace92ba56897fe6993105" + "reference": "df1e7fde177501eee2037dd159cf04f5f301a512" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/52a0d99e69f56b9ec27ace92ba56897fe6993105", - "reference": "52a0d99e69f56b9ec27ace92ba56897fe6993105", + "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512", + "reference": "df1e7fde177501eee2037dd159cf04f5f301a512", "shasum": "" }, "require": { - "php": "^7|^8" + "php": "^8" }, "require-dev": { - "phpunit/phpunit": "^6|^7|^8|^9", - "vimeo/psalm": "^1|^2|^3|^4" + "phpunit/phpunit": "^9", + "vimeo/psalm": "^4|^5" }, "type": "library", "autoload": { @@ -4672,7 +4672,7 @@ "issues": "https://github.com/paragonie/constant_time_encoding/issues", "source": "https://github.com/paragonie/constant_time_encoding" }, - "time": "2024-05-08T12:18:48+00:00" + "time": "2024-05-08T12:36:18+00:00" }, { "name": "paragonie/random_compat", @@ -4921,20 +4921,20 @@ }, { "name": "phpseclib/phpseclib", - "version": "3.0.37", + "version": "3.0.39", "source": { "type": "git", "url": "https://github.com/phpseclib/phpseclib.git", - "reference": "cfa2013d0f68c062055180dd4328cc8b9d1f30b8" + "reference": "211ebc399c6e73c225a018435fe5ae209d1d1485" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/cfa2013d0f68c062055180dd4328cc8b9d1f30b8", - "reference": "cfa2013d0f68c062055180dd4328cc8b9d1f30b8", + "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/211ebc399c6e73c225a018435fe5ae209d1d1485", + "reference": "211ebc399c6e73c225a018435fe5ae209d1d1485", "shasum": "" }, "require": { - "paragonie/constant_time_encoding": "^1|^2", + "paragonie/constant_time_encoding": "^1|^2|^3", "paragonie/random_compat": "^1.4|^2.0|^9.99.99", "php": ">=5.6.1" }, @@ -5011,7 +5011,7 @@ ], "support": { "issues": "https://github.com/phpseclib/phpseclib/issues", - "source": "https://github.com/phpseclib/phpseclib/tree/3.0.37" + "source": "https://github.com/phpseclib/phpseclib/tree/3.0.39" }, "funding": [ { @@ -5027,7 +5027,7 @@ "type": "tidelift" } ], - "time": "2024-03-03T02:14:58+00:00" + "time": "2024-06-24T06:27:33+00:00" }, { "name": "promphp/prometheus_client_php", @@ -9072,16 +9072,16 @@ }, { "name": "symfony/polyfill-intl-grapheme", - "version": "v1.29.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-grapheme.git", - "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f" + "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f", - "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/64647a7c30b2283f5d49b874d84a18fc22054b7a", + "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a", "shasum": "" }, "require": { @@ -9130,7 +9130,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.30.0" }, "funding": [ { @@ -9146,20 +9146,20 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-05-31T15:07:36+00:00" }, { "name": "symfony/polyfill-intl-icu", - "version": "v1.29.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-icu.git", - "reference": "07094a28851a49107f3ab4f9120ca2975a64b6e1" + "reference": "e76343c631b453088e2260ac41dfebe21954de81" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/07094a28851a49107f3ab4f9120ca2975a64b6e1", - "reference": "07094a28851a49107f3ab4f9120ca2975a64b6e1", + "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/e76343c631b453088e2260ac41dfebe21954de81", + "reference": "e76343c631b453088e2260ac41dfebe21954de81", "shasum": "" }, "require": { @@ -9214,7 +9214,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.30.0" }, "funding": [ { @@ -9230,20 +9230,20 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:12:16+00:00" + "time": "2024-05-31T15:07:36+00:00" }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.29.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "a287ed7475f85bf6f61890146edbc932c0fff919" + "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a287ed7475f85bf6f61890146edbc932c0fff919", - "reference": "a287ed7475f85bf6f61890146edbc932c0fff919", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a6e83bdeb3c84391d1dfe16f42e40727ce524a5c", + "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c", "shasum": "" }, "require": { @@ -9298,7 +9298,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.30.0" }, "funding": [ { @@ -9314,20 +9314,20 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-05-31T15:07:36+00:00" }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.29.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "bc45c394692b948b4d383a08d7753968bed9a83d" + "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d", - "reference": "bc45c394692b948b4d383a08d7753968bed9a83d", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/a95281b0be0d9ab48050ebd988b967875cdb9fdb", + "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb", "shasum": "" }, "require": { @@ -9379,7 +9379,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.30.0" }, "funding": [ { @@ -9395,20 +9395,20 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-05-31T15:07:36+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.29.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec" + "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec", - "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fd22ab50000ef01661e2a31d850ebaa297f8e03c", + "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c", "shasum": "" }, "require": { @@ -9459,7 +9459,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.30.0" }, "funding": [ { @@ -9475,7 +9475,7 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-06-19T12:30:46+00:00" }, { "name": "symfony/process", @@ -11027,16 +11027,16 @@ }, { "name": "symfony/ux-twig-component", - "version": "v2.17.0", + "version": "v2.18.1", "source": { "type": "git", "url": "https://github.com/symfony/ux-twig-component.git", - "reference": "fb3d978b7f19e9a94533a3bf30d68269908ffae1" + "reference": "c5ba36dc0f55b75d4c6d7dc546dfdbe4002f82e7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/ux-twig-component/zipball/fb3d978b7f19e9a94533a3bf30d68269908ffae1", - "reference": "fb3d978b7f19e9a94533a3bf30d68269908ffae1", + "url": "https://api.github.com/repos/symfony/ux-twig-component/zipball/c5ba36dc0f55b75d4c6d7dc546dfdbe4002f82e7", + "reference": "c5ba36dc0f55b75d4c6d7dc546dfdbe4002f82e7", "shasum": "" }, "require": { @@ -11091,7 +11091,7 @@ "twig" ], "support": { - "source": "https://github.com/symfony/ux-twig-component/tree/v2.17.0" + "source": "https://github.com/symfony/ux-twig-component/tree/v2.18.1" }, "funding": [ { @@ -11107,7 +11107,7 @@ "type": "tidelift" } ], - "time": "2024-04-19T16:14:05+00:00" + "time": "2024-06-11T18:51:33+00:00" }, { "name": "symfony/validator", @@ -12289,16 +12289,16 @@ "packages-dev": [ { "name": "myclabs/deep-copy", - "version": "1.11.1", + "version": "1.12.0", "source": { "type": "git", "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c" + "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", - "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c", + "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c", "shasum": "" }, "require": { @@ -12306,11 +12306,12 @@ }, "conflict": { "doctrine/collections": "<1.6.8", - "doctrine/common": "<2.13.3 || >=3,<3.2.2" + "doctrine/common": "<2.13.3 || >=3 <3.2.2" }, "require-dev": { "doctrine/collections": "^1.6.8", "doctrine/common": "^2.13.3 || ^3.2.2", + "phpspec/prophecy": "^1.10", "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" }, "type": "library", @@ -12336,7 +12337,7 @@ ], "support": { "issues": "https://github.com/myclabs/DeepCopy/issues", - "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1" + "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0" }, "funding": [ { @@ -12344,7 +12345,7 @@ "type": "tidelift" } ], - "time": "2023-03-08T13:26:56+00:00" + "time": "2024-06-12T14:39:25+00:00" }, { "name": "nikic/php-parser", @@ -14283,6 +14284,7 @@ "ext-ctype": "*", "ext-gd": "*", "ext-iconv": "*", + "ext-intl": "*", "ext-json": "*", "ext-openssl": "*", "ext-tidy": "*" diff --git a/elasticms-cli/composer.json b/elasticms-cli/composer.json index 5b49df24f..79adede1d 100644 --- a/elasticms-cli/composer.json +++ b/elasticms-cli/composer.json @@ -18,7 +18,7 @@ "ext-json": "*", "ext-sqlite3": "*", "doctrine/doctrine-migrations-bundle": "^3.2", - "elasticms/common-bundle": "5.17.*", + "elasticms/common-bundle": "5.18.*", "kevinrob/guzzle-cache-middleware": "^4.0", "symfony/console": "^5.4", "symfony/css-selector": "^5.4", diff --git a/elasticms-cli/composer.lock b/elasticms-cli/composer.lock index 17bcf6577..d28306c05 100644 --- a/elasticms-cli/composer.lock +++ b/elasticms-cli/composer.lock @@ -4,20 +4,20 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "5bf7db279180b11e505905431024246c", + "content-hash": "823dade7d30e12bf1eb1e7cba14fbcf7", "packages": [ { "name": "aws/aws-crt-php", - "version": "v1.2.5", + "version": "v1.2.6", "source": { "type": "git", "url": "https://github.com/awslabs/aws-crt-php.git", - "reference": "0ea1f04ec5aa9f049f97e012d1ed63b76834a31b" + "reference": "a63485b65b6b3367039306496d49737cf1995408" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/0ea1f04ec5aa9f049f97e012d1ed63b76834a31b", - "reference": "0ea1f04ec5aa9f049f97e012d1ed63b76834a31b", + "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/a63485b65b6b3367039306496d49737cf1995408", + "reference": "a63485b65b6b3367039306496d49737cf1995408", "shasum": "" }, "require": { @@ -56,22 +56,22 @@ ], "support": { "issues": "https://github.com/awslabs/aws-crt-php/issues", - "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.5" + "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.6" }, - "time": "2024-04-19T21:30:56+00:00" + "time": "2024-06-13T17:21:28+00:00" }, { "name": "aws/aws-sdk-php", - "version": "3.308.7", + "version": "3.314.7", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "97074bd8cdd9fe498570821cefa4868fa3353cf3" + "reference": "3a7ea3e49ae50eaaa969dc15d69b2dd46b4d7284" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/97074bd8cdd9fe498570821cefa4868fa3353cf3", - "reference": "97074bd8cdd9fe498570821cefa4868fa3353cf3", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/3a7ea3e49ae50eaaa969dc15d69b2dd46b4d7284", + "reference": "3a7ea3e49ae50eaaa969dc15d69b2dd46b4d7284", "shasum": "" }, "require": { @@ -151,9 +151,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.308.7" + "source": "https://github.com/aws/aws-sdk-php/tree/3.314.7" }, - "time": "2024-05-31T18:17:12+00:00" + "time": "2024-06-24T21:03:27+00:00" }, { "name": "brick/math", @@ -627,16 +627,16 @@ }, { "name": "doctrine/dbal", - "version": "3.8.4", + "version": "3.8.6", "source": { "type": "git", "url": "https://github.com/doctrine/dbal.git", - "reference": "b05e48a745f722801f55408d0dbd8003b403dbbd" + "reference": "b7411825cf7efb7e51f9791dea19d86e43b399a1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/dbal/zipball/b05e48a745f722801f55408d0dbd8003b403dbbd", - "reference": "b05e48a745f722801f55408d0dbd8003b403dbbd", + "url": "https://api.github.com/repos/doctrine/dbal/zipball/b7411825cf7efb7e51f9791dea19d86e43b399a1", + "reference": "b7411825cf7efb7e51f9791dea19d86e43b399a1", "shasum": "" }, "require": { @@ -652,12 +652,12 @@ "doctrine/coding-standard": "12.0.0", "fig/log-test": "^1", "jetbrains/phpstorm-stubs": "2023.1", - "phpstan/phpstan": "1.10.58", - "phpstan/phpstan-strict-rules": "^1.5", - "phpunit/phpunit": "9.6.16", + "phpstan/phpstan": "1.11.5", + "phpstan/phpstan-strict-rules": "^1.6", + "phpunit/phpunit": "9.6.19", "psalm/plugin-phpunit": "0.18.4", "slevomat/coding-standard": "8.13.1", - "squizlabs/php_codesniffer": "3.9.0", + "squizlabs/php_codesniffer": "3.10.1", "symfony/cache": "^5.4|^6.0|^7.0", "symfony/console": "^4.4|^5.4|^6.0|^7.0", "vimeo/psalm": "4.30.0" @@ -720,7 +720,7 @@ ], "support": { "issues": "https://github.com/doctrine/dbal/issues", - "source": "https://github.com/doctrine/dbal/tree/3.8.4" + "source": "https://github.com/doctrine/dbal/tree/3.8.6" }, "funding": [ { @@ -736,7 +736,7 @@ "type": "tidelift" } ], - "time": "2024-04-25T07:04:44+00:00" + "time": "2024-06-19T10:38:17+00:00" }, { "name": "doctrine/deprecations", @@ -1533,16 +1533,16 @@ }, { "name": "doctrine/persistence", - "version": "3.3.2", + "version": "3.3.3", "source": { "type": "git", "url": "https://github.com/doctrine/persistence.git", - "reference": "477da35bd0255e032826f440b94b3e37f2d56f42" + "reference": "b337726451f5d530df338fc7f68dee8781b49779" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/persistence/zipball/477da35bd0255e032826f440b94b3e37f2d56f42", - "reference": "477da35bd0255e032826f440b94b3e37f2d56f42", + "url": "https://api.github.com/repos/doctrine/persistence/zipball/b337726451f5d530df338fc7f68dee8781b49779", + "reference": "b337726451f5d530df338fc7f68dee8781b49779", "shasum": "" }, "require": { @@ -1554,15 +1554,14 @@ "doctrine/common": "<2.10" }, "require-dev": { - "composer/package-versions-deprecated": "^1.11", - "doctrine/coding-standard": "^11", + "doctrine/coding-standard": "^12", "doctrine/common": "^3.0", - "phpstan/phpstan": "1.9.4", + "phpstan/phpstan": "1.11.1", "phpstan/phpstan-phpunit": "^1", "phpstan/phpstan-strict-rules": "^1.1", "phpunit/phpunit": "^8.5 || ^9.5", "symfony/cache": "^4.4 || ^5.4 || ^6.0", - "vimeo/psalm": "4.30.0 || 5.3.0" + "vimeo/psalm": "4.30.0 || 5.24.0" }, "type": "library", "autoload": { @@ -1611,7 +1610,7 @@ ], "support": { "issues": "https://github.com/doctrine/persistence/issues", - "source": "https://github.com/doctrine/persistence/tree/3.3.2" + "source": "https://github.com/doctrine/persistence/tree/3.3.3" }, "funding": [ { @@ -1627,7 +1626,7 @@ "type": "tidelift" } ], - "time": "2024-03-12T14:54:36+00:00" + "time": "2024-06-20T10:14:30+00:00" }, { "name": "doctrine/sql-formatter", @@ -1748,16 +1747,16 @@ }, { "name": "elasticms/common-bundle", - "version": "5.17.2", + "version": "5.18.0", "source": { "type": "git", "url": "https://github.com/ems-project/EMSCommonBundle.git", - "reference": "d28160255829ae156d1facd2e4d59f949743d486" + "reference": "5fb6f48b371303cc6af9f903ce4f02e543024d8a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ems-project/EMSCommonBundle/zipball/d28160255829ae156d1facd2e4d59f949743d486", - "reference": "d28160255829ae156d1facd2e4d59f949743d486", + "url": "https://api.github.com/repos/ems-project/EMSCommonBundle/zipball/5fb6f48b371303cc6af9f903ce4f02e543024d8a", + "reference": "5fb6f48b371303cc6af9f903ce4f02e543024d8a", "shasum": "" }, "require": { @@ -1767,7 +1766,7 @@ "doctrine/doctrine-bundle": "^2.8", "doctrine/orm": "^2.6", "dompdf/dompdf": "^v2.0", - "elasticms/helpers": "5.17.*", + "elasticms/helpers": "5.18.*", "ext-dom": "*", "ext-exif": "*", "ext-gd": "*", @@ -1799,6 +1798,7 @@ "symfony/serializer": "^5.4", "symfony/stopwatch": "^5.4", "symfony/translation": "^5.4", + "symfony/twig-bundle": "^5.4", "twig/cache-extra": "^3.4", "twig/cssinliner-extra": "^3.4", "twig/extra-bundle": "^3.4", @@ -1834,22 +1834,22 @@ "elasticms" ], "support": { - "source": "https://github.com/ems-project/EMSCommonBundle/tree/5.17.2" + "source": "https://github.com/ems-project/EMSCommonBundle/tree/5.18.0" }, - "time": "2024-06-24T16:41:36+00:00" + "time": "2024-06-25T05:20:33+00:00" }, { "name": "elasticms/helpers", - "version": "5.17.2", + "version": "5.18.0", "source": { "type": "git", "url": "https://github.com/ems-project/helpers.git", - "reference": "0713cb2dec203045337e575270312843278867ae" + "reference": "fd6109dd739238fafd1563b78488a1f5b3b4f2d6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ems-project/helpers/zipball/0713cb2dec203045337e575270312843278867ae", - "reference": "0713cb2dec203045337e575270312843278867ae", + "url": "https://api.github.com/repos/ems-project/helpers/zipball/fd6109dd739238fafd1563b78488a1f5b3b4f2d6", + "reference": "fd6109dd739238fafd1563b78488a1f5b3b4f2d6", "shasum": "" }, "require": { @@ -1895,9 +1895,9 @@ "php" ], "support": { - "source": "https://github.com/ems-project/helpers/tree/5.17.2" + "source": "https://github.com/ems-project/helpers/tree/5.18.0" }, - "time": "2024-06-24T12:47:24+00:00" + "time": "2024-06-24T17:42:48+00:00" }, { "name": "elasticsearch/elasticsearch", @@ -2605,16 +2605,16 @@ }, { "name": "laminas/laminas-code", - "version": "4.13.0", + "version": "4.14.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-code.git", - "reference": "7353d4099ad5388e84737dd16994316a04f48dbf" + "reference": "562e02b7d85cb9142b5116cc76c4c7c162a11a1c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-code/zipball/7353d4099ad5388e84737dd16994316a04f48dbf", - "reference": "7353d4099ad5388e84737dd16994316a04f48dbf", + "url": "https://api.github.com/repos/laminas/laminas-code/zipball/562e02b7d85cb9142b5116cc76c4c7c162a11a1c", + "reference": "562e02b7d85cb9142b5116cc76c4c7c162a11a1c", "shasum": "" }, "require": { @@ -2626,7 +2626,7 @@ "laminas/laminas-coding-standard": "^2.5.0", "laminas/laminas-stdlib": "^3.17.0", "phpunit/phpunit": "^10.3.3", - "psalm/plugin-phpunit": "^0.18.4", + "psalm/plugin-phpunit": "^0.19.0", "vimeo/psalm": "^5.15.0" }, "suggest": { @@ -2664,7 +2664,7 @@ "type": "community_bridge" } ], - "time": "2023-10-18T10:00:55+00:00" + "time": "2024-06-17T08:50:25+00:00" }, { "name": "league/uri", @@ -6996,16 +6996,16 @@ }, { "name": "symfony/polyfill-intl-grapheme", - "version": "v1.29.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-grapheme.git", - "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f" + "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f", - "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/64647a7c30b2283f5d49b874d84a18fc22054b7a", + "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a", "shasum": "" }, "require": { @@ -7054,7 +7054,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.30.0" }, "funding": [ { @@ -7070,20 +7070,20 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-05-31T15:07:36+00:00" }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.29.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "a287ed7475f85bf6f61890146edbc932c0fff919" + "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a287ed7475f85bf6f61890146edbc932c0fff919", - "reference": "a287ed7475f85bf6f61890146edbc932c0fff919", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a6e83bdeb3c84391d1dfe16f42e40727ce524a5c", + "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c", "shasum": "" }, "require": { @@ -7138,7 +7138,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.30.0" }, "funding": [ { @@ -7154,20 +7154,20 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-05-31T15:07:36+00:00" }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.29.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "bc45c394692b948b4d383a08d7753968bed9a83d" + "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d", - "reference": "bc45c394692b948b4d383a08d7753968bed9a83d", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/a95281b0be0d9ab48050ebd988b967875cdb9fdb", + "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb", "shasum": "" }, "require": { @@ -7219,7 +7219,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.30.0" }, "funding": [ { @@ -7235,20 +7235,20 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-05-31T15:07:36+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.29.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec" + "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec", - "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fd22ab50000ef01661e2a31d850ebaa297f8e03c", + "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c", "shasum": "" }, "require": { @@ -7299,7 +7299,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.30.0" }, "funding": [ { @@ -7315,7 +7315,7 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-06-19T12:30:46+00:00" }, { "name": "symfony/process", @@ -9457,16 +9457,16 @@ "packages-dev": [ { "name": "myclabs/deep-copy", - "version": "1.11.1", + "version": "1.12.0", "source": { "type": "git", "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c" + "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", - "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c", + "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c", "shasum": "" }, "require": { @@ -9474,11 +9474,12 @@ }, "conflict": { "doctrine/collections": "<1.6.8", - "doctrine/common": "<2.13.3 || >=3,<3.2.2" + "doctrine/common": "<2.13.3 || >=3 <3.2.2" }, "require-dev": { "doctrine/collections": "^1.6.8", "doctrine/common": "^2.13.3 || ^3.2.2", + "phpspec/prophecy": "^1.10", "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" }, "type": "library", @@ -9504,7 +9505,7 @@ ], "support": { "issues": "https://github.com/myclabs/DeepCopy/issues", - "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1" + "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0" }, "funding": [ { @@ -9512,7 +9513,7 @@ "type": "tidelift" } ], - "time": "2023-03-08T13:26:56+00:00" + "time": "2024-06-12T14:39:25+00:00" }, { "name": "nikic/php-parser", diff --git a/elasticms-web/composer.json b/elasticms-web/composer.json index 396cadc94..c09f7ffca 100644 --- a/elasticms-web/composer.json +++ b/elasticms-web/composer.json @@ -21,9 +21,9 @@ "doctrine/doctrine-bundle": "^2.8", "doctrine/doctrine-migrations-bundle": "^3.2", "doctrine/orm": "^2.6", - "elasticms/client-helper-bundle": "5.17.*", - "elasticms/form-bundle": "5.17.*", - "elasticms/submission-bundle": "5.17.*", + "elasticms/client-helper-bundle": "5.18.*", + "elasticms/form-bundle": "5.18.*", + "elasticms/submission-bundle": "5.18.*", "endroid/qr-code-bundle": "^4.0", "sensio/framework-extra-bundle": "^6.2", "symfony/console": "^5.4", diff --git a/elasticms-web/composer.lock b/elasticms-web/composer.lock index f70071b48..6233ba344 100644 --- a/elasticms-web/composer.lock +++ b/elasticms-web/composer.lock @@ -4,20 +4,20 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "3cc163a9a947cb6ac3c1e97b31ba16e7", + "content-hash": "6854e0f1ec86db32e7eea7c7ff58b3b7", "packages": [ { "name": "aws/aws-crt-php", - "version": "v1.2.5", + "version": "v1.2.6", "source": { "type": "git", "url": "https://github.com/awslabs/aws-crt-php.git", - "reference": "0ea1f04ec5aa9f049f97e012d1ed63b76834a31b" + "reference": "a63485b65b6b3367039306496d49737cf1995408" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/0ea1f04ec5aa9f049f97e012d1ed63b76834a31b", - "reference": "0ea1f04ec5aa9f049f97e012d1ed63b76834a31b", + "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/a63485b65b6b3367039306496d49737cf1995408", + "reference": "a63485b65b6b3367039306496d49737cf1995408", "shasum": "" }, "require": { @@ -56,22 +56,22 @@ ], "support": { "issues": "https://github.com/awslabs/aws-crt-php/issues", - "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.5" + "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.6" }, - "time": "2024-04-19T21:30:56+00:00" + "time": "2024-06-13T17:21:28+00:00" }, { "name": "aws/aws-sdk-php", - "version": "3.308.7", + "version": "3.314.7", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "97074bd8cdd9fe498570821cefa4868fa3353cf3" + "reference": "3a7ea3e49ae50eaaa969dc15d69b2dd46b4d7284" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/97074bd8cdd9fe498570821cefa4868fa3353cf3", - "reference": "97074bd8cdd9fe498570821cefa4868fa3353cf3", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/3a7ea3e49ae50eaaa969dc15d69b2dd46b4d7284", + "reference": "3a7ea3e49ae50eaaa969dc15d69b2dd46b4d7284", "shasum": "" }, "require": { @@ -151,9 +151,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.308.7" + "source": "https://github.com/aws/aws-sdk-php/tree/3.314.7" }, - "time": "2024-05-31T18:17:12+00:00" + "time": "2024-06-24T21:03:27+00:00" }, { "name": "bacon/bacon-qr-code", @@ -807,16 +807,16 @@ }, { "name": "doctrine/dbal", - "version": "3.8.4", + "version": "3.8.6", "source": { "type": "git", "url": "https://github.com/doctrine/dbal.git", - "reference": "b05e48a745f722801f55408d0dbd8003b403dbbd" + "reference": "b7411825cf7efb7e51f9791dea19d86e43b399a1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/dbal/zipball/b05e48a745f722801f55408d0dbd8003b403dbbd", - "reference": "b05e48a745f722801f55408d0dbd8003b403dbbd", + "url": "https://api.github.com/repos/doctrine/dbal/zipball/b7411825cf7efb7e51f9791dea19d86e43b399a1", + "reference": "b7411825cf7efb7e51f9791dea19d86e43b399a1", "shasum": "" }, "require": { @@ -832,12 +832,12 @@ "doctrine/coding-standard": "12.0.0", "fig/log-test": "^1", "jetbrains/phpstorm-stubs": "2023.1", - "phpstan/phpstan": "1.10.58", - "phpstan/phpstan-strict-rules": "^1.5", - "phpunit/phpunit": "9.6.16", + "phpstan/phpstan": "1.11.5", + "phpstan/phpstan-strict-rules": "^1.6", + "phpunit/phpunit": "9.6.19", "psalm/plugin-phpunit": "0.18.4", "slevomat/coding-standard": "8.13.1", - "squizlabs/php_codesniffer": "3.9.0", + "squizlabs/php_codesniffer": "3.10.1", "symfony/cache": "^5.4|^6.0|^7.0", "symfony/console": "^4.4|^5.4|^6.0|^7.0", "vimeo/psalm": "4.30.0" @@ -900,7 +900,7 @@ ], "support": { "issues": "https://github.com/doctrine/dbal/issues", - "source": "https://github.com/doctrine/dbal/tree/3.8.4" + "source": "https://github.com/doctrine/dbal/tree/3.8.6" }, "funding": [ { @@ -916,7 +916,7 @@ "type": "tidelift" } ], - "time": "2024-04-25T07:04:44+00:00" + "time": "2024-06-19T10:38:17+00:00" }, { "name": "doctrine/deprecations", @@ -1713,16 +1713,16 @@ }, { "name": "doctrine/persistence", - "version": "3.3.2", + "version": "3.3.3", "source": { "type": "git", "url": "https://github.com/doctrine/persistence.git", - "reference": "477da35bd0255e032826f440b94b3e37f2d56f42" + "reference": "b337726451f5d530df338fc7f68dee8781b49779" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/persistence/zipball/477da35bd0255e032826f440b94b3e37f2d56f42", - "reference": "477da35bd0255e032826f440b94b3e37f2d56f42", + "url": "https://api.github.com/repos/doctrine/persistence/zipball/b337726451f5d530df338fc7f68dee8781b49779", + "reference": "b337726451f5d530df338fc7f68dee8781b49779", "shasum": "" }, "require": { @@ -1734,15 +1734,14 @@ "doctrine/common": "<2.10" }, "require-dev": { - "composer/package-versions-deprecated": "^1.11", - "doctrine/coding-standard": "^11", + "doctrine/coding-standard": "^12", "doctrine/common": "^3.0", - "phpstan/phpstan": "1.9.4", + "phpstan/phpstan": "1.11.1", "phpstan/phpstan-phpunit": "^1", "phpstan/phpstan-strict-rules": "^1.1", "phpunit/phpunit": "^8.5 || ^9.5", "symfony/cache": "^4.4 || ^5.4 || ^6.0", - "vimeo/psalm": "4.30.0 || 5.3.0" + "vimeo/psalm": "4.30.0 || 5.24.0" }, "type": "library", "autoload": { @@ -1791,7 +1790,7 @@ ], "support": { "issues": "https://github.com/doctrine/persistence/issues", - "source": "https://github.com/doctrine/persistence/tree/3.3.2" + "source": "https://github.com/doctrine/persistence/tree/3.3.3" }, "funding": [ { @@ -1807,7 +1806,7 @@ "type": "tidelift" } ], - "time": "2024-03-12T14:54:36+00:00" + "time": "2024-06-20T10:14:30+00:00" }, { "name": "doctrine/sql-formatter", @@ -1995,21 +1994,21 @@ }, { "name": "elasticms/client-helper-bundle", - "version": "5.17.2", + "version": "5.18.0", "source": { "type": "git", "url": "https://github.com/ems-project/EMSClientHelperBundle.git", - "reference": "5942f2a18c3a0ac0de54118ebc1e209db44cf6b8" + "reference": "564cb841bb400e65fe9ece3feb1f4b9919389dfd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ems-project/EMSClientHelperBundle/zipball/5942f2a18c3a0ac0de54118ebc1e209db44cf6b8", - "reference": "5942f2a18c3a0ac0de54118ebc1e209db44cf6b8", + "url": "https://api.github.com/repos/ems-project/EMSClientHelperBundle/zipball/564cb841bb400e65fe9ece3feb1f4b9919389dfd", + "reference": "564cb841bb400e65fe9ece3feb1f4b9919389dfd", "shasum": "" }, "require": { "composer/ca-bundle": "^1.1", - "elasticms/common-bundle": "5.17.*", + "elasticms/common-bundle": "5.18.*", "onelogin/php-saml": "^4.1", "php": "^8.1", "stevenmaguire/oauth2-keycloak": "^5.1", @@ -2047,22 +2046,22 @@ "elasticms" ], "support": { - "source": "https://github.com/ems-project/EMSClientHelperBundle/tree/5.17.2" + "source": "https://github.com/ems-project/EMSClientHelperBundle/tree/5.18.0" }, - "time": "2024-06-03T12:39:52+00:00" + "time": "2024-06-25T05:20:33+00:00" }, { "name": "elasticms/common-bundle", - "version": "5.17.2", + "version": "5.18.0", "source": { "type": "git", "url": "https://github.com/ems-project/EMSCommonBundle.git", - "reference": "d28160255829ae156d1facd2e4d59f949743d486" + "reference": "5fb6f48b371303cc6af9f903ce4f02e543024d8a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ems-project/EMSCommonBundle/zipball/d28160255829ae156d1facd2e4d59f949743d486", - "reference": "d28160255829ae156d1facd2e4d59f949743d486", + "url": "https://api.github.com/repos/ems-project/EMSCommonBundle/zipball/5fb6f48b371303cc6af9f903ce4f02e543024d8a", + "reference": "5fb6f48b371303cc6af9f903ce4f02e543024d8a", "shasum": "" }, "require": { @@ -2072,7 +2071,7 @@ "doctrine/doctrine-bundle": "^2.8", "doctrine/orm": "^2.6", "dompdf/dompdf": "^v2.0", - "elasticms/helpers": "5.17.*", + "elasticms/helpers": "5.18.*", "ext-dom": "*", "ext-exif": "*", "ext-gd": "*", @@ -2104,6 +2103,7 @@ "symfony/serializer": "^5.4", "symfony/stopwatch": "^5.4", "symfony/translation": "^5.4", + "symfony/twig-bundle": "^5.4", "twig/cache-extra": "^3.4", "twig/cssinliner-extra": "^3.4", "twig/extra-bundle": "^3.4", @@ -2139,26 +2139,26 @@ "elasticms" ], "support": { - "source": "https://github.com/ems-project/EMSCommonBundle/tree/5.17.2" + "source": "https://github.com/ems-project/EMSCommonBundle/tree/5.18.0" }, - "time": "2024-06-24T16:41:36+00:00" + "time": "2024-06-25T05:20:33+00:00" }, { "name": "elasticms/form-bundle", - "version": "5.17.2", + "version": "5.18.0", "source": { "type": "git", "url": "https://github.com/ems-project/EMSFormBundle.git", - "reference": "2ace87ff5086f55d56c3dece394e57095f8a5de3" + "reference": "c56438eb733b1d4b45b8bc30a18d2a8e7075bed2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ems-project/EMSFormBundle/zipball/2ace87ff5086f55d56c3dece394e57095f8a5de3", - "reference": "2ace87ff5086f55d56c3dece394e57095f8a5de3", + "url": "https://api.github.com/repos/ems-project/EMSFormBundle/zipball/c56438eb733b1d4b45b8bc30a18d2a8e7075bed2", + "reference": "c56438eb733b1d4b45b8bc30a18d2a8e7075bed2", "shasum": "" }, "require": { - "elasticms/client-helper-bundle": "5.17.*", + "elasticms/client-helper-bundle": "5.18.*", "giggsey/libphonenumber-for-php": "^8.12", "php": "^8.1", "symfony/form": "^5.4", @@ -2191,22 +2191,22 @@ "elasticms" ], "support": { - "source": "https://github.com/ems-project/EMSFormBundle/tree/5.17.2" + "source": "https://github.com/ems-project/EMSFormBundle/tree/5.18.0" }, - "time": "2024-06-03T12:39:52+00:00" + "time": "2024-06-25T05:20:33+00:00" }, { "name": "elasticms/helpers", - "version": "5.17.2", + "version": "5.18.0", "source": { "type": "git", "url": "https://github.com/ems-project/helpers.git", - "reference": "0713cb2dec203045337e575270312843278867ae" + "reference": "fd6109dd739238fafd1563b78488a1f5b3b4f2d6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ems-project/helpers/zipball/0713cb2dec203045337e575270312843278867ae", - "reference": "0713cb2dec203045337e575270312843278867ae", + "url": "https://api.github.com/repos/ems-project/helpers/zipball/fd6109dd739238fafd1563b78488a1f5b3b4f2d6", + "reference": "fd6109dd739238fafd1563b78488a1f5b3b4f2d6", "shasum": "" }, "require": { @@ -2252,26 +2252,26 @@ "php" ], "support": { - "source": "https://github.com/ems-project/helpers/tree/5.17.2" + "source": "https://github.com/ems-project/helpers/tree/5.18.0" }, - "time": "2024-06-24T12:47:24+00:00" + "time": "2024-06-24T17:42:48+00:00" }, { "name": "elasticms/submission-bundle", - "version": "5.17.2", + "version": "5.18.0", "source": { "type": "git", "url": "https://github.com/ems-project/EMSSubmissionBundle.git", - "reference": "e1059bfa19f8eef1c7573f2f45ad308580e88fa2" + "reference": "0bc9f5fdad6e867471689669b4c56bc7ec4bc31a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ems-project/EMSSubmissionBundle/zipball/e1059bfa19f8eef1c7573f2f45ad308580e88fa2", - "reference": "e1059bfa19f8eef1c7573f2f45ad308580e88fa2", + "url": "https://api.github.com/repos/ems-project/EMSSubmissionBundle/zipball/0bc9f5fdad6e867471689669b4c56bc7ec4bc31a", + "reference": "0bc9f5fdad6e867471689669b4c56bc7ec4bc31a", "shasum": "" }, "require": { - "elasticms/form-bundle": "5.17.*", + "elasticms/form-bundle": "5.18.*", "league/flysystem-memory": "^2.0", "league/flysystem-sftp-v3": "^2.0", "php": "^8.1", @@ -2307,9 +2307,9 @@ "elasticms" ], "support": { - "source": "https://github.com/ems-project/EMSSubmissionBundle/tree/5.17.2" + "source": "https://github.com/ems-project/EMSSubmissionBundle/tree/5.18.0" }, - "time": "2024-06-03T14:36:09+00:00" + "time": "2024-06-25T05:20:33+00:00" }, { "name": "elasticsearch/elasticsearch", @@ -2902,16 +2902,16 @@ }, { "name": "giggsey/libphonenumber-for-php", - "version": "8.13.37", + "version": "8.13.39", "source": { "type": "git", "url": "https://github.com/giggsey/libphonenumber-for-php.git", - "reference": "536c747ff1af433dddc615b26b9674047e013076" + "reference": "5a36692616dba1ec4a24217f248021b1ec9cdade" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/536c747ff1af433dddc615b26b9674047e013076", - "reference": "536c747ff1af433dddc615b26b9674047e013076", + "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/5a36692616dba1ec4a24217f248021b1ec9cdade", + "reference": "5a36692616dba1ec4a24217f248021b1ec9cdade", "shasum": "" }, "require": { @@ -2973,7 +2973,7 @@ "issues": "https://github.com/giggsey/libphonenumber-for-php/issues", "source": "https://github.com/giggsey/libphonenumber-for-php" }, - "time": "2024-05-16T09:01:39+00:00" + "time": "2024-06-14T12:43:12+00:00" }, { "name": "giggsey/locale", @@ -3330,16 +3330,16 @@ }, { "name": "laminas/laminas-code", - "version": "4.13.0", + "version": "4.14.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-code.git", - "reference": "7353d4099ad5388e84737dd16994316a04f48dbf" + "reference": "562e02b7d85cb9142b5116cc76c4c7c162a11a1c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-code/zipball/7353d4099ad5388e84737dd16994316a04f48dbf", - "reference": "7353d4099ad5388e84737dd16994316a04f48dbf", + "url": "https://api.github.com/repos/laminas/laminas-code/zipball/562e02b7d85cb9142b5116cc76c4c7c162a11a1c", + "reference": "562e02b7d85cb9142b5116cc76c4c7c162a11a1c", "shasum": "" }, "require": { @@ -3351,7 +3351,7 @@ "laminas/laminas-coding-standard": "^2.5.0", "laminas/laminas-stdlib": "^3.17.0", "phpunit/phpunit": "^10.3.3", - "psalm/plugin-phpunit": "^0.18.4", + "psalm/plugin-phpunit": "^0.19.0", "vimeo/psalm": "^5.15.0" }, "suggest": { @@ -3389,7 +3389,7 @@ "type": "community_bridge" } ], - "time": "2023-10-18T10:00:55+00:00" + "time": "2024-06-17T08:50:25+00:00" }, { "name": "league/flysystem", @@ -4553,24 +4553,24 @@ }, { "name": "paragonie/constant_time_encoding", - "version": "v2.7.0", + "version": "v3.0.0", "source": { "type": "git", "url": "https://github.com/paragonie/constant_time_encoding.git", - "reference": "52a0d99e69f56b9ec27ace92ba56897fe6993105" + "reference": "df1e7fde177501eee2037dd159cf04f5f301a512" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/52a0d99e69f56b9ec27ace92ba56897fe6993105", - "reference": "52a0d99e69f56b9ec27ace92ba56897fe6993105", + "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512", + "reference": "df1e7fde177501eee2037dd159cf04f5f301a512", "shasum": "" }, "require": { - "php": "^7|^8" + "php": "^8" }, "require-dev": { - "phpunit/phpunit": "^6|^7|^8|^9", - "vimeo/psalm": "^1|^2|^3|^4" + "phpunit/phpunit": "^9", + "vimeo/psalm": "^4|^5" }, "type": "library", "autoload": { @@ -4616,7 +4616,7 @@ "issues": "https://github.com/paragonie/constant_time_encoding/issues", "source": "https://github.com/paragonie/constant_time_encoding" }, - "time": "2024-05-08T12:18:48+00:00" + "time": "2024-05-08T12:36:18+00:00" }, { "name": "paragonie/random_compat", @@ -4865,20 +4865,20 @@ }, { "name": "phpseclib/phpseclib", - "version": "3.0.37", + "version": "3.0.39", "source": { "type": "git", "url": "https://github.com/phpseclib/phpseclib.git", - "reference": "cfa2013d0f68c062055180dd4328cc8b9d1f30b8" + "reference": "211ebc399c6e73c225a018435fe5ae209d1d1485" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/cfa2013d0f68c062055180dd4328cc8b9d1f30b8", - "reference": "cfa2013d0f68c062055180dd4328cc8b9d1f30b8", + "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/211ebc399c6e73c225a018435fe5ae209d1d1485", + "reference": "211ebc399c6e73c225a018435fe5ae209d1d1485", "shasum": "" }, "require": { - "paragonie/constant_time_encoding": "^1|^2", + "paragonie/constant_time_encoding": "^1|^2|^3", "paragonie/random_compat": "^1.4|^2.0|^9.99.99", "php": ">=5.6.1" }, @@ -4955,7 +4955,7 @@ ], "support": { "issues": "https://github.com/phpseclib/phpseclib/issues", - "source": "https://github.com/phpseclib/phpseclib/tree/3.0.37" + "source": "https://github.com/phpseclib/phpseclib/tree/3.0.39" }, "funding": [ { @@ -4971,7 +4971,7 @@ "type": "tidelift" } ], - "time": "2024-03-03T02:14:58+00:00" + "time": "2024-06-24T06:27:33+00:00" }, { "name": "promphp/prometheus_client_php", @@ -8886,16 +8886,16 @@ }, { "name": "symfony/polyfill-intl-grapheme", - "version": "v1.29.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-grapheme.git", - "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f" + "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f", - "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/64647a7c30b2283f5d49b874d84a18fc22054b7a", + "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a", "shasum": "" }, "require": { @@ -8944,7 +8944,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.30.0" }, "funding": [ { @@ -8960,20 +8960,20 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-05-31T15:07:36+00:00" }, { "name": "symfony/polyfill-intl-icu", - "version": "v1.29.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-icu.git", - "reference": "07094a28851a49107f3ab4f9120ca2975a64b6e1" + "reference": "e76343c631b453088e2260ac41dfebe21954de81" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/07094a28851a49107f3ab4f9120ca2975a64b6e1", - "reference": "07094a28851a49107f3ab4f9120ca2975a64b6e1", + "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/e76343c631b453088e2260ac41dfebe21954de81", + "reference": "e76343c631b453088e2260ac41dfebe21954de81", "shasum": "" }, "require": { @@ -9028,7 +9028,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.30.0" }, "funding": [ { @@ -9044,20 +9044,20 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:12:16+00:00" + "time": "2024-05-31T15:07:36+00:00" }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.29.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "a287ed7475f85bf6f61890146edbc932c0fff919" + "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a287ed7475f85bf6f61890146edbc932c0fff919", - "reference": "a287ed7475f85bf6f61890146edbc932c0fff919", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a6e83bdeb3c84391d1dfe16f42e40727ce524a5c", + "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c", "shasum": "" }, "require": { @@ -9112,7 +9112,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.30.0" }, "funding": [ { @@ -9128,20 +9128,20 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-05-31T15:07:36+00:00" }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.29.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "bc45c394692b948b4d383a08d7753968bed9a83d" + "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d", - "reference": "bc45c394692b948b4d383a08d7753968bed9a83d", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/a95281b0be0d9ab48050ebd988b967875cdb9fdb", + "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb", "shasum": "" }, "require": { @@ -9193,7 +9193,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.30.0" }, "funding": [ { @@ -9209,20 +9209,20 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-05-31T15:07:36+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.29.0", + "version": "v1.30.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec" + "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec", - "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fd22ab50000ef01661e2a31d850ebaa297f8e03c", + "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c", "shasum": "" }, "require": { @@ -9273,7 +9273,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.30.0" }, "funding": [ { @@ -9289,7 +9289,7 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2024-06-19T12:30:46+00:00" }, { "name": "symfony/process", @@ -11961,16 +11961,16 @@ "packages-dev": [ { "name": "myclabs/deep-copy", - "version": "1.11.1", + "version": "1.12.0", "source": { "type": "git", "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c" + "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", - "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c", + "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c", "shasum": "" }, "require": { @@ -11978,11 +11978,12 @@ }, "conflict": { "doctrine/collections": "<1.6.8", - "doctrine/common": "<2.13.3 || >=3,<3.2.2" + "doctrine/common": "<2.13.3 || >=3 <3.2.2" }, "require-dev": { "doctrine/collections": "^1.6.8", "doctrine/common": "^2.13.3 || ^3.2.2", + "phpspec/prophecy": "^1.10", "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" }, "type": "library", @@ -12008,7 +12009,7 @@ ], "support": { "issues": "https://github.com/myclabs/DeepCopy/issues", - "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1" + "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0" }, "funding": [ { @@ -12016,7 +12017,7 @@ "type": "tidelift" } ], - "time": "2023-03-08T13:26:56+00:00" + "time": "2024-06-12T14:39:25+00:00" }, { "name": "nikic/php-parser", @@ -13954,6 +13955,7 @@ "php": "^8.1", "ext-ctype": "*", "ext-iconv": "*", + "ext-intl": "*", "ext-json": "*" }, "platform-dev": [],