From 2020b09b1e572448141eb39190eac8c7b1319141 Mon Sep 17 00:00:00 2001 From: Merel Jossart Date: Fri, 12 Jan 2024 14:58:21 +0100 Subject: [PATCH 1/3] 239: hide cookiebanner for search engines --- composer.json | 1 + composer.lock | 54 ++++++++++++++++++- .../statik/src/web/twig/StatikExtension.php | 30 +++++------ templates/_site/_layout.twig | 11 ++-- 4 files changed, 73 insertions(+), 23 deletions(-) diff --git a/composer.json b/composer.json index ad2f8cbb..0b09cd25 100644 --- a/composer.json +++ b/composer.json @@ -16,6 +16,7 @@ "craftcms/postmark": "3.0.0", "hybridinteractive/craft-position-fieldtype": "4.0.0", "hybridinteractive/craft-width-fieldtype": "^4.0", + "jaybizzle/crawler-detect": "^1.2", "mikehaertl/php-shellcommand": "^1.6", "mmikkel/cp-field-inspect": "1.4.4", "nystudio107/craft-imageoptimize": "4.0.5", diff --git a/composer.lock b/composer.lock index 6e8d8715..3b9a3432 100644 --- a/composer.lock +++ b/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": "90a3e357406b657aa144cfa02e524d58", + "content-hash": "8963529b50d2d9ef4da481dc3f69f39e", "packages": [ { "name": "cebe/markdown", @@ -2931,6 +2931,58 @@ }, "time": "2021-03-25T15:10:34+00:00" }, + { + "name": "jaybizzle/crawler-detect", + "version": "v1.2.116", + "source": { + "type": "git", + "url": "https://github.com/JayBizzle/Crawler-Detect.git", + "reference": "97e9fe30219e60092e107651abb379a38b342921" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/97e9fe30219e60092e107651abb379a38b342921", + "reference": "97e9fe30219e60092e107651abb379a38b342921", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.8|^5.5|^6.5|^9.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Jaybizzle\\CrawlerDetect\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mark Beech", + "email": "m@rkbee.ch", + "role": "Developer" + } + ], + "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent", + "homepage": "https://github.com/JayBizzle/Crawler-Detect/", + "keywords": [ + "crawler", + "crawler detect", + "crawler detector", + "crawlerdetect", + "php crawler detect" + ], + "support": { + "issues": "https://github.com/JayBizzle/Crawler-Detect/issues", + "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.2.116" + }, + "time": "2023-07-21T15:49:49+00:00" + }, { "name": "justinrainbow/json-schema", "version": "v5.2.13", diff --git a/modules/statik/src/web/twig/StatikExtension.php b/modules/statik/src/web/twig/StatikExtension.php index 10f71579..a0f749c3 100644 --- a/modules/statik/src/web/twig/StatikExtension.php +++ b/modules/statik/src/web/twig/StatikExtension.php @@ -2,14 +2,15 @@ namespace modules\statik\web\twig; +use Jaybizzle\CrawlerDetect\CrawlerDetect; use Twig\Extension\AbstractExtension; +use Twig\Extension\GlobalsInterface; use Twig\TwigFilter; use Twig\TwigFunction; -use Twig\TwigTest; use craft\elements\Entry; use craft\helpers\ElementHelper; -class StatikExtension extends AbstractExtension +class StatikExtension extends AbstractExtension implements GlobalsInterface { private const SECTIONS_NO_INDEX_NO_FOLLOW = [ 'searchResults', @@ -25,18 +26,17 @@ class StatikExtension extends AbstractExtension 'setPasswordConfirmation', ]; + private CrawlerDetect $crawlerDetect; - public function getFilters(): array + public function __construct() { - return [ - new TwigFilter('slugify', [$this, 'slugify']), - ]; + $this->crawlerDetect = new CrawlerDetect(); } - public function getTests(): array + public function getFilters(): array { return [ - new TwigTest('isBot', [$this, 'isBot']), + new TwigFilter('slugify', [$this, 'slugify']), ]; } @@ -47,19 +47,15 @@ public function getFunctions(): array ]; } - - public function isBot(string $userAgent = '/bot|crawl|facebook|google|slurp|spider|mediapartners/i'): bool + public function getGlobals(): array { - if (isset($_SERVER['HTTP_USER_AGENT'])) { - return $_SERVER['HTTP_USER_AGENT'] && preg_match($userAgent, $_SERVER['HTTP_USER_AGENT']); - } - return false; + return [ + 'isBot' => $this->crawlerDetect->isCrawler(), + ]; } /** - * Create slugs from titles in contentbuilder for the anchor link - * @param $string - * @return string + * remove all non-alphanumeric characters and replace spaces with dashes */ public function slugify(string $string): string { diff --git a/templates/_site/_layout.twig b/templates/_site/_layout.twig index fc6a4685..d55b67ce 100644 --- a/templates/_site/_layout.twig +++ b/templates/_site/_layout.twig @@ -44,11 +44,12 @@ {% endif %} {# Cookiebanner #} - {{ craft.cookieBanner.render({ - supportIE: true, - showCookieBanner: (entry.type is defined and entry.type.handle != 'cookiePolicy') - }) }} - + {% if not isBot %} + {{ craft.cookieBanner.render({ + supportIE: true, + showCookieBanner: (entry.type is defined and entry.type.handle != 'cookiePolicy'), + }) }} + {% endif %}
From 3f9df84d24a3790c046981b304bc54859e045a68 Mon Sep 17 00:00:00 2001 From: Merel Jossart Date: Fri, 19 Jan 2024 12:49:56 +0100 Subject: [PATCH 2/3] update composer lock --- composer.lock | 580 +++++++++++++++++++++++++------------------------- 1 file changed, 291 insertions(+), 289 deletions(-) diff --git a/composer.lock b/composer.lock index 3b9a3432..a8b66011 100644 --- a/composer.lock +++ b/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": "8963529b50d2d9ef4da481dc3f69f39e", + "content-hash": "ed4cbe269df3b241ba6374302bcb8d68", "packages": [ { "name": "cebe/markdown", @@ -136,16 +136,16 @@ }, { "name": "composer/ca-bundle", - "version": "1.3.7", + "version": "1.4.0", "source": { "type": "git", "url": "https://github.com/composer/ca-bundle.git", - "reference": "76e46335014860eec1aa5a724799a00a2e47cc85" + "reference": "b66d11b7479109ab547f9405b97205640b17d385" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/ca-bundle/zipball/76e46335014860eec1aa5a724799a00a2e47cc85", - "reference": "76e46335014860eec1aa5a724799a00a2e47cc85", + "url": "https://api.github.com/repos/composer/ca-bundle/zipball/b66d11b7479109ab547f9405b97205640b17d385", + "reference": "b66d11b7479109ab547f9405b97205640b17d385", "shasum": "" }, "require": { @@ -157,7 +157,7 @@ "phpstan/phpstan": "^0.12.55", "psr/log": "^1.0", "symfony/phpunit-bridge": "^4.2 || ^5", - "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0" + "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0" }, "type": "library", "extra": { @@ -192,7 +192,7 @@ "support": { "irc": "irc://irc.freenode.org/composer", "issues": "https://github.com/composer/ca-bundle/issues", - "source": "https://github.com/composer/ca-bundle/tree/1.3.7" + "source": "https://github.com/composer/ca-bundle/tree/1.4.0" }, "funding": [ { @@ -208,7 +208,7 @@ "type": "tidelift" } ], - "time": "2023-08-30T09:31:38+00:00" + "time": "2023-12-18T12:05:55+00:00" }, { "name": "composer/class-map-generator", @@ -285,16 +285,16 @@ }, { "name": "composer/composer", - "version": "2.6.5", + "version": "2.6.6", "source": { "type": "git", "url": "https://github.com/composer/composer.git", - "reference": "4b0fe89db9e65b1e64df633a992e70a7a215ab33" + "reference": "683557bd2466072777309d039534bb1332d0dda5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/composer/zipball/4b0fe89db9e65b1e64df633a992e70a7a215ab33", - "reference": "4b0fe89db9e65b1e64df633a992e70a7a215ab33", + "url": "https://api.github.com/repos/composer/composer/zipball/683557bd2466072777309d039534bb1332d0dda5", + "reference": "683557bd2466072777309d039534bb1332d0dda5", "shasum": "" }, "require": { @@ -312,7 +312,7 @@ "seld/jsonlint": "^1.4", "seld/phar-utils": "^1.2", "seld/signal-handler": "^2.0", - "symfony/console": "^5.4.11 || ^6.0.11 || ^7", + "symfony/console": "^5.4.11 || ^6.0.11", "symfony/filesystem": "^5.4 || ^6.0 || ^7", "symfony/finder": "^5.4 || ^6.0 || ^7", "symfony/polyfill-php73": "^1.24", @@ -379,7 +379,7 @@ "irc": "ircs://irc.libera.chat:6697/composer", "issues": "https://github.com/composer/composer/issues", "security": "https://github.com/composer/composer/security/policy", - "source": "https://github.com/composer/composer/tree/2.6.5" + "source": "https://github.com/composer/composer/tree/2.6.6" }, "funding": [ { @@ -395,7 +395,7 @@ "type": "tidelift" } ], - "time": "2023-10-06T08:11:52+00:00" + "time": "2023-12-08T17:32:26+00:00" }, { "name": "composer/metadata-minifier", @@ -1644,16 +1644,16 @@ }, { "name": "embed/embed", - "version": "v4.4.8", + "version": "v4.4.10", "source": { "type": "git", "url": "https://github.com/oscarotero/Embed.git", - "reference": "49134080764018bc6b8a2488dd1c8cc2c47d15fc" + "reference": "8ac21505d048e8796c6cb9172ec5e81e5d0e0408" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/oscarotero/Embed/zipball/49134080764018bc6b8a2488dd1c8cc2c47d15fc", - "reference": "49134080764018bc6b8a2488dd1c8cc2c47d15fc", + "url": "https://api.github.com/repos/oscarotero/Embed/zipball/8ac21505d048e8796c6cb9172ec5e81e5d0e0408", + "reference": "8ac21505d048e8796c6cb9172ec5e81e5d0e0408", "shasum": "" }, "require": { @@ -1713,7 +1713,7 @@ "support": { "email": "oom@oscarotero.com", "issues": "https://github.com/oscarotero/Embed/issues", - "source": "https://github.com/oscarotero/Embed/tree/v4.4.8" + "source": "https://github.com/oscarotero/Embed/tree/v4.4.10" }, "funding": [ { @@ -1729,7 +1729,7 @@ "type": "patreon" } ], - "time": "2023-05-22T18:48:30+00:00" + "time": "2023-12-10T12:30:47+00:00" }, { "name": "enshrined/svg-sanitize", @@ -1840,16 +1840,16 @@ }, { "name": "fakerphp/faker", - "version": "v1.23.0", + "version": "v1.23.1", "source": { "type": "git", "url": "https://github.com/FakerPHP/Faker.git", - "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01" + "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e3daa170d00fde61ea7719ef47bb09bb8f1d9b01", - "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01", + "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b", + "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b", "shasum": "" }, "require": { @@ -1875,11 +1875,6 @@ "ext-mbstring": "Required for multibyte Unicode string functionality." }, "type": "library", - "extra": { - "branch-alias": { - "dev-main": "v1.21-dev" - } - }, "autoload": { "psr-4": { "Faker\\": "src/Faker/" @@ -1902,22 +1897,22 @@ ], "support": { "issues": "https://github.com/FakerPHP/Faker/issues", - "source": "https://github.com/FakerPHP/Faker/tree/v1.23.0" + "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1" }, - "time": "2023-06-12T08:44:38+00:00" + "time": "2024-01-02T13:46:09+00:00" }, { "name": "firebase/php-jwt", - "version": "v6.7.0", + "version": "v6.10.0", "source": { "type": "git", "url": "https://github.com/firebase/php-jwt.git", - "reference": "71278f20b0a623389beefe87a641d03948a38870" + "reference": "a49db6f0a5033aef5143295342f1c95521b075ff" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/firebase/php-jwt/zipball/71278f20b0a623389beefe87a641d03948a38870", - "reference": "71278f20b0a623389beefe87a641d03948a38870", + "url": "https://api.github.com/repos/firebase/php-jwt/zipball/a49db6f0a5033aef5143295342f1c95521b075ff", + "reference": "a49db6f0a5033aef5143295342f1c95521b075ff", "shasum": "" }, "require": { @@ -1965,22 +1960,22 @@ ], "support": { "issues": "https://github.com/firebase/php-jwt/issues", - "source": "https://github.com/firebase/php-jwt/tree/v6.7.0" + "source": "https://github.com/firebase/php-jwt/tree/v6.10.0" }, - "time": "2023-06-14T15:29:26+00:00" + "time": "2023-12-01T16:26:39+00:00" }, { "name": "giggsey/libphonenumber-for-php", - "version": "8.13.26", + "version": "8.13.28", "source": { "type": "git", "url": "https://github.com/giggsey/libphonenumber-for-php.git", - "reference": "1d730fe40d5f32641c12ca143a086757c95cfccf" + "reference": "f508ab946a60c1470c92e33cfc0393a0d580b9a1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/1d730fe40d5f32641c12ca143a086757c95cfccf", - "reference": "1d730fe40d5f32641c12ca143a086757c95cfccf", + "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/f508ab946a60c1470c92e33cfc0393a0d580b9a1", + "reference": "f508ab946a60c1470c92e33cfc0393a0d580b9a1", "shasum": "" }, "require": { @@ -2039,7 +2034,7 @@ "issues": "https://github.com/giggsey/libphonenumber-for-php/issues", "source": "https://github.com/giggsey/libphonenumber-for-php" }, - "time": "2023-11-23T07:57:25+00:00" + "time": "2024-01-17T08:09:20+00:00" }, { "name": "giggsey/locale", @@ -2159,16 +2154,16 @@ }, { "name": "guzzlehttp/guzzle", - "version": "7.8.0", + "version": "7.8.1", "source": { "type": "git", "url": "https://github.com/guzzle/guzzle.git", - "reference": "1110f66a6530a40fe7aea0378fe608ee2b2248f9" + "reference": "41042bc7ab002487b876a0683fc8dce04ddce104" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/1110f66a6530a40fe7aea0378fe608ee2b2248f9", - "reference": "1110f66a6530a40fe7aea0378fe608ee2b2248f9", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104", + "reference": "41042bc7ab002487b876a0683fc8dce04ddce104", "shasum": "" }, "require": { @@ -2183,11 +2178,11 @@ "psr/http-client-implementation": "1.0" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.8.1", + "bamarni/composer-bin-plugin": "^1.8.2", "ext-curl": "*", "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999", "php-http/message-factory": "^1.1", - "phpunit/phpunit": "^8.5.29 || ^9.5.23", + "phpunit/phpunit": "^8.5.36 || ^9.6.15", "psr/log": "^1.1 || ^2.0 || ^3.0" }, "suggest": { @@ -2265,7 +2260,7 @@ ], "support": { "issues": "https://github.com/guzzle/guzzle/issues", - "source": "https://github.com/guzzle/guzzle/tree/7.8.0" + "source": "https://github.com/guzzle/guzzle/tree/7.8.1" }, "funding": [ { @@ -2281,7 +2276,7 @@ "type": "tidelift" } ], - "time": "2023-08-27T10:20:53+00:00" + "time": "2023-12-03T20:35:24+00:00" }, { "name": "guzzlehttp/oauth-subscriber", @@ -2344,24 +2339,24 @@ }, { "name": "guzzlehttp/promises", - "version": "2.0.1", + "version": "2.0.2", "source": { "type": "git", "url": "https://github.com/guzzle/promises.git", - "reference": "111166291a0f8130081195ac4556a5587d7f1b5d" + "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/111166291a0f8130081195ac4556a5587d7f1b5d", - "reference": "111166291a0f8130081195ac4556a5587d7f1b5d", + "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223", + "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223", "shasum": "" }, "require": { "php": "^7.2.5 || ^8.0" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.8.1", - "phpunit/phpunit": "^8.5.29 || ^9.5.23" + "bamarni/composer-bin-plugin": "^1.8.2", + "phpunit/phpunit": "^8.5.36 || ^9.6.15" }, "type": "library", "extra": { @@ -2407,7 +2402,7 @@ ], "support": { "issues": "https://github.com/guzzle/promises/issues", - "source": "https://github.com/guzzle/promises/tree/2.0.1" + "source": "https://github.com/guzzle/promises/tree/2.0.2" }, "funding": [ { @@ -2423,20 +2418,20 @@ "type": "tidelift" } ], - "time": "2023-08-03T15:11:55+00:00" + "time": "2023-12-03T20:19:20+00:00" }, { "name": "guzzlehttp/psr7", - "version": "2.6.1", + "version": "2.6.2", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "be45764272e8873c72dbe3d2edcfdfcc3bc9f727" + "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/be45764272e8873c72dbe3d2edcfdfcc3bc9f727", - "reference": "be45764272e8873c72dbe3d2edcfdfcc3bc9f727", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221", + "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221", "shasum": "" }, "require": { @@ -2450,9 +2445,9 @@ "psr/http-message-implementation": "1.0" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.8.1", + "bamarni/composer-bin-plugin": "^1.8.2", "http-interop/http-factory-tests": "^0.9", - "phpunit/phpunit": "^8.5.29 || ^9.5.23" + "phpunit/phpunit": "^8.5.36 || ^9.6.15" }, "suggest": { "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" @@ -2523,7 +2518,7 @@ ], "support": { "issues": "https://github.com/guzzle/psr7/issues", - "source": "https://github.com/guzzle/psr7/tree/2.6.1" + "source": "https://github.com/guzzle/psr7/tree/2.6.2" }, "funding": [ { @@ -2539,7 +2534,7 @@ "type": "tidelift" } ], - "time": "2023-08-27T10:13:57+00:00" + "time": "2023-12-03T20:05:35+00:00" }, { "name": "html2text/html2text", @@ -3112,35 +3107,36 @@ }, { "name": "league/csv", - "version": "9.11.0", + "version": "9.14.0", "source": { "type": "git", "url": "https://github.com/thephpleague/csv.git", - "reference": "33149c4bea4949aa4fa3d03fb11ed28682168b39" + "reference": "34bf0df7340b60824b9449b5c526fcc3325070d5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/csv/zipball/33149c4bea4949aa4fa3d03fb11ed28682168b39", - "reference": "33149c4bea4949aa4fa3d03fb11ed28682168b39", + "url": "https://api.github.com/repos/thephpleague/csv/zipball/34bf0df7340b60824b9449b5c526fcc3325070d5", + "reference": "34bf0df7340b60824b9449b5c526fcc3325070d5", "shasum": "" }, "require": { + "ext-filter": "*", "ext-json": "*", "ext-mbstring": "*", "php": "^8.1.2" }, "require-dev": { - "doctrine/collections": "^2.1.3", + "doctrine/collections": "^2.1.4", "ext-dom": "*", "ext-xdebug": "*", "friendsofphp/php-cs-fixer": "^v3.22.0", - "phpbench/phpbench": "^1.2.14", - "phpstan/phpstan": "^1.10.26", - "phpstan/phpstan-deprecation-rules": "^1.1.3", - "phpstan/phpstan-phpunit": "^1.3.13", - "phpstan/phpstan-strict-rules": "^1.5.1", - "phpunit/phpunit": "^10.3.1", - "symfony/var-dumper": "^6.3.3" + "phpbench/phpbench": "^1.2.15", + "phpstan/phpstan": "^1.10.50", + "phpstan/phpstan-deprecation-rules": "^1.1.4", + "phpstan/phpstan-phpunit": "^1.3.15", + "phpstan/phpstan-strict-rules": "^1.5.2", + "phpunit/phpunit": "^10.5.3", + "symfony/var-dumper": "^6.4.0" }, "suggest": { "ext-dom": "Required to use the XMLConverter and the HTMLConverter classes", @@ -3196,7 +3192,7 @@ "type": "github" } ], - "time": "2023-09-23T10:09:54+00:00" + "time": "2023-12-29T07:34:53+00:00" }, { "name": "league/html-to-markdown", @@ -3958,23 +3954,23 @@ }, { "name": "nystudio107/craft-code-editor", - "version": "1.0.13", + "version": "1.0.16", "source": { "type": "git", "url": "https://github.com/nystudio107/craft-code-editor.git", - "reference": "66a1ba02c0ad5de8e89d4632d5e4da1dfa193dce" + "reference": "ea5d1866d891a09f1c2e5a482d47e555bdf34392" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nystudio107/craft-code-editor/zipball/66a1ba02c0ad5de8e89d4632d5e4da1dfa193dce", - "reference": "66a1ba02c0ad5de8e89d4632d5e4da1dfa193dce", + "url": "https://api.github.com/repos/nystudio107/craft-code-editor/zipball/ea5d1866d891a09f1c2e5a482d47e555bdf34392", + "reference": "ea5d1866d891a09f1c2e5a482d47e555bdf34392", "shasum": "" }, "require": { "phpdocumentor/reflection-docblock": "^5.0.0" }, "require-dev": { - "craftcms/cms": "^3.0.0 || ^4.0.0" + "craftcms/cms": "^3.0.0 || ^4.0.0 || ^5.0.0-alpha.1" }, "type": "yii2-extension", "extra": { @@ -4019,7 +4015,7 @@ "type": "github" } ], - "time": "2023-08-16T02:31:19+00:00" + "time": "2023-12-08T14:39:29+00:00" }, { "name": "nystudio107/craft-imageoptimize", @@ -4365,16 +4361,16 @@ }, { "name": "oscarotero/html-parser", - "version": "v0.1.7", + "version": "v0.1.8", "source": { "type": "git", "url": "https://github.com/oscarotero/html-parser.git", - "reference": "0c5b619bdc7ac061f06a667d913e2af708ee3231" + "reference": "10f3219267a365d9433f2f7d1694209c9d436c8d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/oscarotero/html-parser/zipball/0c5b619bdc7ac061f06a667d913e2af708ee3231", - "reference": "0c5b619bdc7ac061f06a667d913e2af708ee3231", + "url": "https://api.github.com/repos/oscarotero/html-parser/zipball/10f3219267a365d9433f2f7d1694209c9d436c8d", + "reference": "10f3219267a365d9433f2f7d1694209c9d436c8d", "shasum": "" }, "require": { @@ -4412,9 +4408,9 @@ "support": { "email": "oom@oscarotero.com", "issues": "https://github.com/oscarotero/html-parser/issues", - "source": "https://github.com/oscarotero/html-parser/tree/v0.1.7" + "source": "https://github.com/oscarotero/html-parser/tree/v0.1.8" }, - "time": "2022-12-17T09:48:58+00:00" + "time": "2023-11-29T20:28:41+00:00" }, { "name": "paragonie/random_compat", @@ -4533,27 +4529,28 @@ "issues": "https://github.com/percipioglobal/craft-password-policy/issues", "source": "https://github.com/craftpulse/craft-password-policy/tree/4.1.0" }, + "abandoned": "craftpulse/craft-password-policy", "time": "2023-03-08T09:34:06+00:00" }, { "name": "phenx/php-font-lib", - "version": "0.5.4", + "version": "0.5.5", "source": { "type": "git", "url": "https://github.com/dompdf/php-font-lib.git", - "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4" + "reference": "671df0f3516252011aa94f9e8e3b3b66199339f8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/dd448ad1ce34c63d09baccd05415e361300c35b4", - "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4", + "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/671df0f3516252011aa94f9e8e3b3b66199339f8", + "reference": "671df0f3516252011aa94f9e8e3b3b66199339f8", "shasum": "" }, "require": { "ext-mbstring": "*" }, "require-dev": { - "symfony/phpunit-bridge": "^3 || ^4 || ^5" + "symfony/phpunit-bridge": "^3 || ^4 || ^5 || ^6" }, "type": "library", "autoload": { @@ -4563,7 +4560,7 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-3.0" + "LGPL-2.1-or-later" ], "authors": [ { @@ -4575,9 +4572,9 @@ "homepage": "https://github.com/PhenX/php-font-lib", "support": { "issues": "https://github.com/dompdf/php-font-lib/issues", - "source": "https://github.com/dompdf/php-font-lib/tree/0.5.4" + "source": "https://github.com/dompdf/php-font-lib/tree/0.5.5" }, - "time": "2021-12-17T19:44:54+00:00" + "time": "2024-01-07T18:13:29+00:00" }, { "name": "phenx/php-svg-lib", @@ -4737,16 +4734,16 @@ }, { "name": "phpdocumentor/type-resolver", - "version": "1.7.3", + "version": "1.8.0", "source": { "type": "git", "url": "https://github.com/phpDocumentor/TypeResolver.git", - "reference": "3219c6ee25c9ea71e3d9bbaf39c67c9ebd499419" + "reference": "fad452781b3d774e3337b0c0b245dd8e5a4455fc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/3219c6ee25c9ea71e3d9bbaf39c67c9ebd499419", - "reference": "3219c6ee25c9ea71e3d9bbaf39c67c9ebd499419", + "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/fad452781b3d774e3337b0c0b245dd8e5a4455fc", + "reference": "fad452781b3d774e3337b0c0b245dd8e5a4455fc", "shasum": "" }, "require": { @@ -4789,9 +4786,9 @@ "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", "support": { "issues": "https://github.com/phpDocumentor/TypeResolver/issues", - "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.7.3" + "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.8.0" }, - "time": "2023-08-12T11:01:26+00:00" + "time": "2024-01-11T11:49:22+00:00" }, { "name": "phpoption/phpoption", @@ -4870,16 +4867,16 @@ }, { "name": "phpstan/phpdoc-parser", - "version": "1.24.3", + "version": "1.25.0", "source": { "type": "git", "url": "https://github.com/phpstan/phpdoc-parser.git", - "reference": "12f01d214f1c73b9c91fdb3b1c415e4c70652083" + "reference": "bd84b629c8de41aa2ae82c067c955e06f1b00240" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/12f01d214f1c73b9c91fdb3b1c415e4c70652083", - "reference": "12f01d214f1c73b9c91fdb3b1c415e4c70652083", + "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/bd84b629c8de41aa2ae82c067c955e06f1b00240", + "reference": "bd84b629c8de41aa2ae82c067c955e06f1b00240", "shasum": "" }, "require": { @@ -4911,9 +4908,9 @@ "description": "PHPDoc parser with support for nullable, intersection and generic types", "support": { "issues": "https://github.com/phpstan/phpdoc-parser/issues", - "source": "https://github.com/phpstan/phpdoc-parser/tree/1.24.3" + "source": "https://github.com/phpstan/phpdoc-parser/tree/1.25.0" }, - "time": "2023-11-18T20:15:32+00:00" + "time": "2024-01-04T17:06:16+00:00" }, { "name": "pixelandtonic/imagine", @@ -5678,16 +5675,16 @@ }, { "name": "seld/jsonlint", - "version": "1.10.0", + "version": "1.10.1", "source": { "type": "git", "url": "https://github.com/Seldaek/jsonlint.git", - "reference": "594fd6462aad8ecee0b45ca5045acea4776667f1" + "reference": "76d449a358ece77d6f1d6331c68453e657172202" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/594fd6462aad8ecee0b45ca5045acea4776667f1", - "reference": "594fd6462aad8ecee0b45ca5045acea4776667f1", + "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/76d449a358ece77d6f1d6331c68453e657172202", + "reference": "76d449a358ece77d6f1d6331c68453e657172202", "shasum": "" }, "require": { @@ -5714,7 +5711,7 @@ { "name": "Jordi Boggiano", "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" + "homepage": "https://seld.be" } ], "description": "JSON Linter", @@ -5726,7 +5723,7 @@ ], "support": { "issues": "https://github.com/Seldaek/jsonlint/issues", - "source": "https://github.com/Seldaek/jsonlint/tree/1.10.0" + "source": "https://github.com/Seldaek/jsonlint/tree/1.10.1" }, "funding": [ { @@ -5738,7 +5735,7 @@ "type": "tidelift" } ], - "time": "2023-05-11T13:16:46+00:00" + "time": "2023-12-18T13:03:25+00:00" }, { "name": "seld/phar-utils", @@ -6033,16 +6030,16 @@ }, { "name": "statikbe/craft-video-parser", - "version": "2.1.2", + "version": "2.1.3", "source": { "type": "git", "url": "https://github.com/statikbe/craft-video-parser.git", - "reference": "f33d807e49c816611bea67b3f5be5da8ef6e5f81" + "reference": "7e34db4f17a2d8ff7c838f600f1389ffed5de357" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/statikbe/craft-video-parser/zipball/f33d807e49c816611bea67b3f5be5da8ef6e5f81", - "reference": "f33d807e49c816611bea67b3f5be5da8ef6e5f81", + "url": "https://api.github.com/repos/statikbe/craft-video-parser/zipball/7e34db4f17a2d8ff7c838f600f1389ffed5de357", + "reference": "7e34db4f17a2d8ff7c838f600f1389ffed5de357", "shasum": "" }, "require": { @@ -6093,9 +6090,9 @@ "support": { "docs": "https://github.com/statikbe/craft-video-parser/blob/master/README.md", "issues": "https://github.com/statikbe/craft-video-parser/issues", - "source": "https://github.com/statikbe/craft-video-parser/tree/2.1.2" + "source": "https://github.com/statikbe/craft-video-parser/tree/2.1.3" }, - "time": "2023-10-02T07:17:41+00:00" + "time": "2023-12-08T13:29:13+00:00" }, { "name": "stripe/stripe-php", @@ -6347,16 +6344,16 @@ }, { "name": "symfony/cache", - "version": "v6.3.8", + "version": "v6.4.2", "source": { "type": "git", "url": "https://github.com/symfony/cache.git", - "reference": "ba33517043c22c94c7ab04b056476f6f86816cf8" + "reference": "14a75869bbb41cb35bc5d9d322473928c6f3f978" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/cache/zipball/ba33517043c22c94c7ab04b056476f6f86816cf8", - "reference": "ba33517043c22c94c7ab04b056476f6f86816cf8", + "url": "https://api.github.com/repos/symfony/cache/zipball/14a75869bbb41cb35bc5d9d322473928c6f3f978", + "reference": "14a75869bbb41cb35bc5d9d322473928c6f3f978", "shasum": "" }, "require": { @@ -6365,7 +6362,7 @@ "psr/log": "^1.1|^2|^3", "symfony/cache-contracts": "^2.5|^3", "symfony/service-contracts": "^2.5|^3", - "symfony/var-exporter": "^6.3.6" + "symfony/var-exporter": "^6.3.6|^7.0" }, "conflict": { "doctrine/dbal": "<2.13.1", @@ -6383,12 +6380,12 @@ "doctrine/dbal": "^2.13.1|^3|^4", "predis/predis": "^1.1|^2.0", "psr/simple-cache": "^1.0|^2.0|^3.0", - "symfony/config": "^5.4|^6.0", - "symfony/dependency-injection": "^5.4|^6.0", - "symfony/filesystem": "^5.4|^6.0", - "symfony/http-kernel": "^5.4|^6.0", - "symfony/messenger": "^5.4|^6.0", - "symfony/var-dumper": "^5.4|^6.0" + "symfony/config": "^5.4|^6.0|^7.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/filesystem": "^5.4|^6.0|^7.0", + "symfony/http-kernel": "^5.4|^6.0|^7.0", + "symfony/messenger": "^5.4|^6.0|^7.0", + "symfony/var-dumper": "^5.4|^6.0|^7.0" }, "type": "library", "autoload": { @@ -6423,7 +6420,7 @@ "psr6" ], "support": { - "source": "https://github.com/symfony/cache/tree/v6.3.8" + "source": "https://github.com/symfony/cache/tree/v6.4.2" }, "funding": [ { @@ -6439,7 +6436,7 @@ "type": "tidelift" } ], - "time": "2023-11-07T10:17:15+00:00" + "time": "2023-12-29T15:34:34+00:00" }, { "name": "symfony/cache-contracts", @@ -6519,16 +6516,16 @@ }, { "name": "symfony/console", - "version": "v6.3.8", + "version": "v6.4.2", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "0d14a9f6d04d4ac38a8cea1171f4554e325dae92" + "reference": "0254811a143e6bc6c8deea08b589a7e68a37f625" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/0d14a9f6d04d4ac38a8cea1171f4554e325dae92", - "reference": "0d14a9f6d04d4ac38a8cea1171f4554e325dae92", + "url": "https://api.github.com/repos/symfony/console/zipball/0254811a143e6bc6c8deea08b589a7e68a37f625", + "reference": "0254811a143e6bc6c8deea08b589a7e68a37f625", "shasum": "" }, "require": { @@ -6536,7 +6533,7 @@ "symfony/deprecation-contracts": "^2.5|^3", "symfony/polyfill-mbstring": "~1.0", "symfony/service-contracts": "^2.5|^3", - "symfony/string": "^5.4|^6.0" + "symfony/string": "^5.4|^6.0|^7.0" }, "conflict": { "symfony/dependency-injection": "<5.4", @@ -6550,12 +6547,16 @@ }, "require-dev": { "psr/log": "^1|^2|^3", - "symfony/config": "^5.4|^6.0", - "symfony/dependency-injection": "^5.4|^6.0", - "symfony/event-dispatcher": "^5.4|^6.0", - "symfony/lock": "^5.4|^6.0", - "symfony/process": "^5.4|^6.0", - "symfony/var-dumper": "^5.4|^6.0" + "symfony/config": "^5.4|^6.0|^7.0", + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/event-dispatcher": "^5.4|^6.0|^7.0", + "symfony/http-foundation": "^6.4|^7.0", + "symfony/http-kernel": "^6.4|^7.0", + "symfony/lock": "^5.4|^6.0|^7.0", + "symfony/messenger": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.0|^7.0", + "symfony/stopwatch": "^5.4|^6.0|^7.0", + "symfony/var-dumper": "^5.4|^6.0|^7.0" }, "type": "library", "autoload": { @@ -6589,7 +6590,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v6.3.8" + "source": "https://github.com/symfony/console/tree/v6.4.2" }, "funding": [ { @@ -6605,7 +6606,7 @@ "type": "tidelift" } ], - "time": "2023-10-31T08:09:35+00:00" + "time": "2023-12-10T16:15:48+00:00" }, { "name": "symfony/deprecation-contracts", @@ -6676,24 +6677,24 @@ }, { "name": "symfony/event-dispatcher", - "version": "v6.3.2", + "version": "v7.0.2", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e" + "reference": "098b62ae81fdd6cbf941f355059f617db28f4f9a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/adb01fe097a4ee930db9258a3cc906b5beb5cf2e", - "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/098b62ae81fdd6cbf941f355059f617db28f4f9a", + "reference": "098b62ae81fdd6cbf941f355059f617db28f4f9a", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "symfony/event-dispatcher-contracts": "^2.5|^3" }, "conflict": { - "symfony/dependency-injection": "<5.4", + "symfony/dependency-injection": "<6.4", "symfony/service-contracts": "<2.5" }, "provide": { @@ -6702,13 +6703,13 @@ }, "require-dev": { "psr/log": "^1|^2|^3", - "symfony/config": "^5.4|^6.0", - "symfony/dependency-injection": "^5.4|^6.0", - "symfony/error-handler": "^5.4|^6.0", - "symfony/expression-language": "^5.4|^6.0", - "symfony/http-foundation": "^5.4|^6.0", + "symfony/config": "^6.4|^7.0", + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/error-handler": "^6.4|^7.0", + "symfony/expression-language": "^6.4|^7.0", + "symfony/http-foundation": "^6.4|^7.0", "symfony/service-contracts": "^2.5|^3", - "symfony/stopwatch": "^5.4|^6.0" + "symfony/stopwatch": "^6.4|^7.0" }, "type": "library", "autoload": { @@ -6736,7 +6737,7 @@ "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/event-dispatcher/tree/v6.3.2" + "source": "https://github.com/symfony/event-dispatcher/tree/v7.0.2" }, "funding": [ { @@ -6752,7 +6753,7 @@ "type": "tidelift" } ], - "time": "2023-07-06T06:56:43+00:00" + "time": "2023-12-27T22:24:19+00:00" }, { "name": "symfony/event-dispatcher-contracts", @@ -6895,20 +6896,20 @@ }, { "name": "symfony/filesystem", - "version": "v6.3.1", + "version": "v7.0.0", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "edd36776956f2a6fcf577edb5b05eb0e3bdc52ae" + "reference": "7da8ea2362a283771478c5f7729cfcb43a76b8b7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/edd36776956f2a6fcf577edb5b05eb0e3bdc52ae", - "reference": "edd36776956f2a6fcf577edb5b05eb0e3bdc52ae", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/7da8ea2362a283771478c5f7729cfcb43a76b8b7", + "reference": "7da8ea2362a283771478c5f7729cfcb43a76b8b7", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "symfony/polyfill-ctype": "~1.8", "symfony/polyfill-mbstring": "~1.8" }, @@ -6938,7 +6939,7 @@ "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/filesystem/tree/v6.3.1" + "source": "https://github.com/symfony/filesystem/tree/v7.0.0" }, "funding": [ { @@ -6954,27 +6955,27 @@ "type": "tidelift" } ], - "time": "2023-06-01T08:30:39+00:00" + "time": "2023-07-27T06:33:22+00:00" }, { "name": "symfony/finder", - "version": "v6.3.5", + "version": "v7.0.0", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "a1b31d88c0e998168ca7792f222cbecee47428c4" + "reference": "6e5688d69f7cfc4ed4a511e96007e06c2d34ce56" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/a1b31d88c0e998168ca7792f222cbecee47428c4", - "reference": "a1b31d88c0e998168ca7792f222cbecee47428c4", + "url": "https://api.github.com/repos/symfony/finder/zipball/6e5688d69f7cfc4ed4a511e96007e06c2d34ce56", + "reference": "6e5688d69f7cfc4ed4a511e96007e06c2d34ce56", "shasum": "" }, "require": { - "php": ">=8.1" + "php": ">=8.2" }, "require-dev": { - "symfony/filesystem": "^6.0" + "symfony/filesystem": "^6.4|^7.0" }, "type": "library", "autoload": { @@ -7002,7 +7003,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v6.3.5" + "source": "https://github.com/symfony/finder/tree/v7.0.0" }, "funding": [ { @@ -7018,20 +7019,20 @@ "type": "tidelift" } ], - "time": "2023-09-26T12:56:25+00:00" + "time": "2023-10-31T17:59:56+00:00" }, { "name": "symfony/http-client", - "version": "v6.3.8", + "version": "v6.4.2", "source": { "type": "git", "url": "https://github.com/symfony/http-client.git", - "reference": "0314e2d49939a9831929d6fc81c01c6df137fd0a" + "reference": "fc0944665bd932cf32a7b8a1d009466afc16528f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-client/zipball/0314e2d49939a9831929d6fc81c01c6df137fd0a", - "reference": "0314e2d49939a9831929d6fc81c01c6df137fd0a", + "url": "https://api.github.com/repos/symfony/http-client/zipball/fc0944665bd932cf32a7b8a1d009466afc16528f", + "reference": "fc0944665bd932cf32a7b8a1d009466afc16528f", "shasum": "" }, "require": { @@ -7060,10 +7061,11 @@ "nyholm/psr7": "^1.0", "php-http/httplug": "^1.0|^2.0", "psr/http-client": "^1.0", - "symfony/dependency-injection": "^5.4|^6.0", - "symfony/http-kernel": "^5.4|^6.0", - "symfony/process": "^5.4|^6.0", - "symfony/stopwatch": "^5.4|^6.0" + "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/http-kernel": "^5.4|^6.0|^7.0", + "symfony/messenger": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.0|^7.0", + "symfony/stopwatch": "^5.4|^6.0|^7.0" }, "type": "library", "autoload": { @@ -7094,7 +7096,7 @@ "http" ], "support": { - "source": "https://github.com/symfony/http-client/tree/v6.3.8" + "source": "https://github.com/symfony/http-client/tree/v6.4.2" }, "funding": [ { @@ -7110,7 +7112,7 @@ "type": "tidelift" } ], - "time": "2023-11-06T18:31:59+00:00" + "time": "2023-12-02T12:49:56+00:00" }, { "name": "symfony/http-client-contracts", @@ -7192,39 +7194,39 @@ }, { "name": "symfony/mailer", - "version": "v6.3.5", + "version": "v7.0.2", "source": { "type": "git", "url": "https://github.com/symfony/mailer.git", - "reference": "d89611a7830d51b5e118bca38e390dea92f9ea06" + "reference": "c51c8f411062ef8fec837c76b0dad15dd5a6ab16" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mailer/zipball/d89611a7830d51b5e118bca38e390dea92f9ea06", - "reference": "d89611a7830d51b5e118bca38e390dea92f9ea06", + "url": "https://api.github.com/repos/symfony/mailer/zipball/c51c8f411062ef8fec837c76b0dad15dd5a6ab16", + "reference": "c51c8f411062ef8fec837c76b0dad15dd5a6ab16", "shasum": "" }, "require": { "egulias/email-validator": "^2.1.10|^3|^4", - "php": ">=8.1", + "php": ">=8.2", "psr/event-dispatcher": "^1", "psr/log": "^1|^2|^3", - "symfony/event-dispatcher": "^5.4|^6.0", - "symfony/mime": "^6.2", + "symfony/event-dispatcher": "^6.4|^7.0", + "symfony/mime": "^6.4|^7.0", "symfony/service-contracts": "^2.5|^3" }, "conflict": { "symfony/http-client-contracts": "<2.5", - "symfony/http-kernel": "<5.4", - "symfony/messenger": "<6.2", - "symfony/mime": "<6.2", - "symfony/twig-bridge": "<6.2.1" + "symfony/http-kernel": "<6.4", + "symfony/messenger": "<6.4", + "symfony/mime": "<6.4", + "symfony/twig-bridge": "<6.4" }, "require-dev": { - "symfony/console": "^5.4|^6.0", - "symfony/http-client": "^5.4|^6.0", - "symfony/messenger": "^6.2", - "symfony/twig-bridge": "^6.2" + "symfony/console": "^6.4|^7.0", + "symfony/http-client": "^6.4|^7.0", + "symfony/messenger": "^6.4|^7.0", + "symfony/twig-bridge": "^6.4|^7.0" }, "type": "library", "autoload": { @@ -7252,7 +7254,7 @@ "description": "Helps sending emails", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/mailer/tree/v6.3.5" + "source": "https://github.com/symfony/mailer/tree/v7.0.2" }, "funding": [ { @@ -7268,25 +7270,24 @@ "type": "tidelift" } ], - "time": "2023-09-06T09:47:15+00:00" + "time": "2023-12-19T11:23:03+00:00" }, { "name": "symfony/mime", - "version": "v6.3.5", + "version": "v7.0.0", "source": { "type": "git", "url": "https://github.com/symfony/mime.git", - "reference": "d5179eedf1cb2946dbd760475ebf05c251ef6a6e" + "reference": "0a2fff95c1a10df97f571d67e76c7ae0f0d4f535" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/d5179eedf1cb2946dbd760475ebf05c251ef6a6e", - "reference": "d5179eedf1cb2946dbd760475ebf05c251ef6a6e", + "url": "https://api.github.com/repos/symfony/mime/zipball/0a2fff95c1a10df97f571d67e76c7ae0f0d4f535", + "reference": "0a2fff95c1a10df97f571d67e76c7ae0f0d4f535", "shasum": "" }, "require": { - "php": ">=8.1", - "symfony/deprecation-contracts": "^2.5|^3", + "php": ">=8.2", "symfony/polyfill-intl-idn": "^1.10", "symfony/polyfill-mbstring": "^1.0" }, @@ -7294,17 +7295,17 @@ "egulias/email-validator": "~3.0.0", "phpdocumentor/reflection-docblock": "<3.2.2", "phpdocumentor/type-resolver": "<1.4.0", - "symfony/mailer": "<5.4", - "symfony/serializer": "<6.2.13|>=6.3,<6.3.2" + "symfony/mailer": "<6.4", + "symfony/serializer": "<6.4" }, "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": "^5.4|^6.0", - "symfony/property-access": "^5.4|^6.0", - "symfony/property-info": "^5.4|^6.0", - "symfony/serializer": "~6.2.13|^6.3.2" + "symfony/dependency-injection": "^6.4|^7.0", + "symfony/property-access": "^6.4|^7.0", + "symfony/property-info": "^6.4|^7.0", + "symfony/serializer": "^6.4|^7.0" }, "type": "library", "autoload": { @@ -7336,7 +7337,7 @@ "mime-type" ], "support": { - "source": "https://github.com/symfony/mime/tree/v6.3.5" + "source": "https://github.com/symfony/mime/tree/v7.0.0" }, "funding": [ { @@ -7352,7 +7353,7 @@ "type": "tidelift" } ], - "time": "2023-09-29T06:59:36+00:00" + "time": "2023-10-19T14:20:43+00:00" }, { "name": "symfony/polyfill-ctype", @@ -8173,29 +8174,29 @@ }, { "name": "symfony/postmark-mailer", - "version": "v6.3.0", + "version": "v6.4.2", "source": { "type": "git", "url": "https://github.com/symfony/postmark-mailer.git", - "reference": "3294c1b98fbc53fdd149f947c209b4503de77797" + "reference": "c23bc7a323d9849178c0e579322c2da1192c08c6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/postmark-mailer/zipball/3294c1b98fbc53fdd149f947c209b4503de77797", - "reference": "3294c1b98fbc53fdd149f947c209b4503de77797", + "url": "https://api.github.com/repos/symfony/postmark-mailer/zipball/c23bc7a323d9849178c0e579322c2da1192c08c6", + "reference": "c23bc7a323d9849178c0e579322c2da1192c08c6", "shasum": "" }, "require": { "php": ">=8.1", "psr/event-dispatcher": "^1", - "symfony/mailer": "^5.4.21|^6.2.7" + "symfony/mailer": "^5.4.21|^6.2.7|^7.0" }, "conflict": { "symfony/http-foundation": "<6.2" }, "require-dev": { - "symfony/http-client": "^5.4|^6.0", - "symfony/webhook": "^6.3" + "symfony/http-client": "^6.3|^7.0", + "symfony/webhook": "^6.3|^7.0" }, "type": "symfony-mailer-bridge", "autoload": { @@ -8223,7 +8224,7 @@ "description": "Symfony Postmark Mailer Bridge", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/postmark-mailer/tree/v6.3.0" + "source": "https://github.com/symfony/postmark-mailer/tree/v6.4.2" }, "funding": [ { @@ -8239,20 +8240,20 @@ "type": "tidelift" } ], - "time": "2023-04-21T14:42:22+00:00" + "time": "2023-12-28T19:16:56+00:00" }, { "name": "symfony/process", - "version": "v6.3.4", + "version": "v6.4.2", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54" + "reference": "c4b1ef0bc80533d87a2e969806172f1c2a980241" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/0b5c29118f2e980d455d2e34a5659f4579847c54", - "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54", + "url": "https://api.github.com/repos/symfony/process/zipball/c4b1ef0bc80533d87a2e969806172f1c2a980241", + "reference": "c4b1ef0bc80533d87a2e969806172f1c2a980241", "shasum": "" }, "require": { @@ -8284,7 +8285,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v6.3.4" + "source": "https://github.com/symfony/process/tree/v6.4.2" }, "funding": [ { @@ -8300,25 +8301,25 @@ "type": "tidelift" } ], - "time": "2023-08-07T10:39:22+00:00" + "time": "2023-12-22T16:42:54+00:00" }, { "name": "symfony/service-contracts", - "version": "v3.4.0", + "version": "v3.4.1", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "b3313c2dbffaf71c8de2934e2ea56ed2291a3838" + "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/b3313c2dbffaf71c8de2934e2ea56ed2291a3838", - "reference": "b3313c2dbffaf71c8de2934e2ea56ed2291a3838", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/fe07cbc8d837f60caf7018068e350cc5163681a0", + "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0", "shasum": "" }, "require": { "php": ">=8.1", - "psr/container": "^2.0" + "psr/container": "^1.1|^2.0" }, "conflict": { "ext-psr": "<1.1|>=2" @@ -8366,7 +8367,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/service-contracts/tree/v3.4.0" + "source": "https://github.com/symfony/service-contracts/tree/v3.4.1" }, "funding": [ { @@ -8382,24 +8383,24 @@ "type": "tidelift" } ], - "time": "2023-07-30T20:28:31+00:00" + "time": "2023-12-26T14:02:43+00:00" }, { "name": "symfony/string", - "version": "v6.3.8", + "version": "v7.0.2", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "13880a87790c76ef994c91e87efb96134522577a" + "reference": "cc78f14f91f5e53b42044d0620961c48028ff9f5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/13880a87790c76ef994c91e87efb96134522577a", - "reference": "13880a87790c76ef994c91e87efb96134522577a", + "url": "https://api.github.com/repos/symfony/string/zipball/cc78f14f91f5e53b42044d0620961c48028ff9f5", + "reference": "cc78f14f91f5e53b42044d0620961c48028ff9f5", "shasum": "" }, "require": { - "php": ">=8.1", + "php": ">=8.2", "symfony/polyfill-ctype": "~1.8", "symfony/polyfill-intl-grapheme": "~1.0", "symfony/polyfill-intl-normalizer": "~1.0", @@ -8409,11 +8410,11 @@ "symfony/translation-contracts": "<2.5" }, "require-dev": { - "symfony/error-handler": "^5.4|^6.0", - "symfony/http-client": "^5.4|^6.0", - "symfony/intl": "^6.2", + "symfony/error-handler": "^6.4|^7.0", + "symfony/http-client": "^6.4|^7.0", + "symfony/intl": "^6.4|^7.0", "symfony/translation-contracts": "^2.5|^3.0", - "symfony/var-exporter": "^5.4|^6.0" + "symfony/var-exporter": "^6.4|^7.0" }, "type": "library", "autoload": { @@ -8452,7 +8453,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v6.3.8" + "source": "https://github.com/symfony/string/tree/v7.0.2" }, "funding": [ { @@ -8468,20 +8469,20 @@ "type": "tidelift" } ], - "time": "2023-11-09T08:28:21+00:00" + "time": "2023-12-10T16:54:46+00:00" }, { "name": "symfony/var-dumper", - "version": "v6.3.8", + "version": "v6.4.2", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "81acabba9046550e89634876ca64bfcd3c06aa0a" + "reference": "68d6573ec98715ddcae5a0a85bee3c1c27a4c33f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/81acabba9046550e89634876ca64bfcd3c06aa0a", - "reference": "81acabba9046550e89634876ca64bfcd3c06aa0a", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/68d6573ec98715ddcae5a0a85bee3c1c27a4c33f", + "reference": "68d6573ec98715ddcae5a0a85bee3c1c27a4c33f", "shasum": "" }, "require": { @@ -8494,10 +8495,11 @@ }, "require-dev": { "ext-iconv": "*", - "symfony/console": "^5.4|^6.0", - "symfony/http-kernel": "^5.4|^6.0", - "symfony/process": "^5.4|^6.0", - "symfony/uid": "^5.4|^6.0", + "symfony/console": "^5.4|^6.0|^7.0", + "symfony/error-handler": "^6.3|^7.0", + "symfony/http-kernel": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.0|^7.0", + "symfony/uid": "^5.4|^6.0|^7.0", "twig/twig": "^2.13|^3.0.4" }, "bin": [ @@ -8536,7 +8538,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v6.3.8" + "source": "https://github.com/symfony/var-dumper/tree/v6.4.2" }, "funding": [ { @@ -8552,27 +8554,27 @@ "type": "tidelift" } ], - "time": "2023-11-08T10:42:36+00:00" + "time": "2023-12-28T19:16:56+00:00" }, { "name": "symfony/var-exporter", - "version": "v6.3.6", + "version": "v7.0.2", "source": { "type": "git", "url": "https://github.com/symfony/var-exporter.git", - "reference": "374d289c13cb989027274c86206ddc63b16a2441" + "reference": "345c62fefe92243c3a06fc0cc65f2ec1a47e0764" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-exporter/zipball/374d289c13cb989027274c86206ddc63b16a2441", - "reference": "374d289c13cb989027274c86206ddc63b16a2441", + "url": "https://api.github.com/repos/symfony/var-exporter/zipball/345c62fefe92243c3a06fc0cc65f2ec1a47e0764", + "reference": "345c62fefe92243c3a06fc0cc65f2ec1a47e0764", "shasum": "" }, "require": { - "php": ">=8.1" + "php": ">=8.2" }, "require-dev": { - "symfony/var-dumper": "^5.4|^6.0" + "symfony/var-dumper": "^6.4|^7.0" }, "type": "library", "autoload": { @@ -8610,7 +8612,7 @@ "serialize" ], "support": { - "source": "https://github.com/symfony/var-exporter/tree/v6.3.6" + "source": "https://github.com/symfony/var-exporter/tree/v7.0.2" }, "funding": [ { @@ -8626,7 +8628,7 @@ "type": "tidelift" } ], - "time": "2023-10-13T09:16:49+00:00" + "time": "2023-12-27T08:42:13+00:00" }, { "name": "symfony/yaml", @@ -8753,22 +8755,22 @@ }, { "name": "thenetworg/oauth2-azure", - "version": "v2.2.1", + "version": "v2.2.2", "source": { "type": "git", "url": "https://github.com/TheNetworg/oauth2-azure.git", - "reference": "e092f6fca469f8109aab4694e9e2dee98717af17" + "reference": "be204a5135f016470a9c33e82ab48785bbc11af2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/TheNetworg/oauth2-azure/zipball/e092f6fca469f8109aab4694e9e2dee98717af17", - "reference": "e092f6fca469f8109aab4694e9e2dee98717af17", + "url": "https://api.github.com/repos/TheNetworg/oauth2-azure/zipball/be204a5135f016470a9c33e82ab48785bbc11af2", + "reference": "be204a5135f016470a9c33e82ab48785bbc11af2", "shasum": "" }, "require": { "ext-json": "*", "ext-openssl": "*", - "firebase/php-jwt": "~3.0||~4.0||~5.0||~6.0 < 6.8", + "firebase/php-jwt": "~3.0||~4.0||~5.0||~6.0", "league/oauth2-client": "~2.0", "php": "^7.1|^8.0" }, @@ -8807,9 +8809,9 @@ ], "support": { "issues": "https://github.com/TheNetworg/oauth2-azure/issues", - "source": "https://github.com/TheNetworg/oauth2-azure/tree/v2.2.1" + "source": "https://github.com/TheNetworg/oauth2-azure/tree/v2.2.2" }, - "time": "2023-08-01T09:16:29+00:00" + "time": "2023-12-19T12:10:48+00:00" }, { "name": "twig/twig", @@ -9199,16 +9201,16 @@ }, { "name": "verbb/hyper", - "version": "1.1.16", + "version": "1.1.19", "source": { "type": "git", "url": "https://github.com/verbb/hyper.git", - "reference": "c37c6b048e17340c515fe4a14b6b914fc0f4c59e" + "reference": "8b27e1adef421a6a5aa5d21362ba1f675b34c0dc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/verbb/hyper/zipball/c37c6b048e17340c515fe4a14b6b914fc0f4c59e", - "reference": "c37c6b048e17340c515fe4a14b6b914fc0f4c59e", + "url": "https://api.github.com/repos/verbb/hyper/zipball/8b27e1adef421a6a5aa5d21362ba1f675b34c0dc", + "reference": "8b27e1adef421a6a5aa5d21362ba1f675b34c0dc", "shasum": "" }, "require": { @@ -9261,7 +9263,7 @@ "type": "github" } ], - "time": "2023-10-25T22:24:39+00:00" + "time": "2023-12-19T23:34:50+00:00" }, { "name": "verbb/super-table", @@ -10845,16 +10847,16 @@ }, { "name": "phpstan/phpstan", - "version": "1.10.44", + "version": "1.10.56", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "bf84367c53a23f759513985c54ffe0d0c249825b" + "reference": "27816a01aea996191ee14d010f325434c0ee76fa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/bf84367c53a23f759513985c54ffe0d0c249825b", - "reference": "bf84367c53a23f759513985c54ffe0d0c249825b", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/27816a01aea996191ee14d010f325434c0ee76fa", + "reference": "27816a01aea996191ee14d010f325434c0ee76fa", "shasum": "" }, "require": { @@ -10903,7 +10905,7 @@ "type": "tidelift" } ], - "time": "2023-11-21T16:30:46+00:00" + "time": "2024-01-15T10:43:00+00:00" }, { "name": "symplify/easy-coding-standard", From b7d5d6c742144093d3a22898f31cb581f7a0ca1b Mon Sep 17 00:00:00 2001 From: Merel Jossart Date: Thu, 1 Feb 2024 09:40:03 +0100 Subject: [PATCH 3/3] composer update --- composer.lock | 229 +------------------------------------------------- 1 file changed, 1 insertion(+), 228 deletions(-) diff --git a/composer.lock b/composer.lock index fc81e719..c72fe833 100644 --- a/composer.lock +++ b/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": "d72ea5b9e7acc6bb2f16609526386ac4", + "content-hash": "d94306aa7c33cdcaa77bf8d3c4b71c1c", "packages": [ { "name": "cebe/markdown", @@ -6836,11 +6836,7 @@ "type": "tidelift" } ], -<<<<<<< HEAD - "time": "2023-12-27T22:24:19+00:00" -======= "time": "2024-01-23T15:02:46+00:00" ->>>>>>> develop }, { "name": "symfony/event-dispatcher-contracts", @@ -6983,18 +6979,6 @@ }, { "name": "symfony/filesystem", -<<<<<<< HEAD - "version": "v7.0.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/filesystem.git", - "reference": "7da8ea2362a283771478c5f7729cfcb43a76b8b7" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/7da8ea2362a283771478c5f7729cfcb43a76b8b7", - "reference": "7da8ea2362a283771478c5f7729cfcb43a76b8b7", -======= "version": "v7.0.3", "source": { "type": "git", @@ -7005,7 +6989,6 @@ "type": "zip", "url": "https://api.github.com/repos/symfony/filesystem/zipball/2890e3a825bc0c0558526c04499c13f83e1b6b12", "reference": "2890e3a825bc0c0558526c04499c13f83e1b6b12", ->>>>>>> develop "shasum": "" }, "require": { @@ -7039,11 +7022,7 @@ "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", "support": { -<<<<<<< HEAD - "source": "https://github.com/symfony/filesystem/tree/v7.0.0" -======= "source": "https://github.com/symfony/filesystem/tree/v7.0.3" ->>>>>>> develop }, "funding": [ { @@ -7059,11 +7038,7 @@ "type": "tidelift" } ], -<<<<<<< HEAD - "time": "2023-07-27T06:33:22+00:00" -======= "time": "2024-01-23T15:02:46+00:00" ->>>>>>> develop }, { "name": "symfony/finder", @@ -7131,18 +7106,6 @@ }, { "name": "symfony/http-client", -<<<<<<< HEAD - "version": "v6.4.2", - "source": { - "type": "git", - "url": "https://github.com/symfony/http-client.git", - "reference": "fc0944665bd932cf32a7b8a1d009466afc16528f" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/http-client/zipball/fc0944665bd932cf32a7b8a1d009466afc16528f", - "reference": "fc0944665bd932cf32a7b8a1d009466afc16528f", -======= "version": "v6.4.3", "source": { "type": "git", @@ -7153,7 +7116,6 @@ "type": "zip", "url": "https://api.github.com/repos/symfony/http-client/zipball/a9034bc119fab8238f76cf49c770f3135f3ead86", "reference": "a9034bc119fab8238f76cf49c770f3135f3ead86", ->>>>>>> develop "shasum": "" }, "require": { @@ -7217,11 +7179,7 @@ "http" ], "support": { -<<<<<<< HEAD - "source": "https://github.com/symfony/http-client/tree/v6.4.2" -======= "source": "https://github.com/symfony/http-client/tree/v6.4.3" ->>>>>>> develop }, "funding": [ { @@ -7237,11 +7195,7 @@ "type": "tidelift" } ], -<<<<<<< HEAD - "time": "2023-12-02T12:49:56+00:00" -======= "time": "2024-01-29T15:01:07+00:00" ->>>>>>> develop }, { "name": "symfony/http-client-contracts", @@ -7323,18 +7277,6 @@ }, { "name": "symfony/mailer", -<<<<<<< HEAD - "version": "v7.0.2", - "source": { - "type": "git", - "url": "https://github.com/symfony/mailer.git", - "reference": "c51c8f411062ef8fec837c76b0dad15dd5a6ab16" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/mailer/zipball/c51c8f411062ef8fec837c76b0dad15dd5a6ab16", - "reference": "c51c8f411062ef8fec837c76b0dad15dd5a6ab16", -======= "version": "v7.0.3", "source": { "type": "git", @@ -7345,7 +7287,6 @@ "type": "zip", "url": "https://api.github.com/repos/symfony/mailer/zipball/2f71c0f6d62d28784783fdc5477e19dd57065d78", "reference": "2f71c0f6d62d28784783fdc5477e19dd57065d78", ->>>>>>> develop "shasum": "" }, "require": { @@ -7396,11 +7337,7 @@ "description": "Helps sending emails", "homepage": "https://symfony.com", "support": { -<<<<<<< HEAD - "source": "https://github.com/symfony/mailer/tree/v7.0.2" -======= "source": "https://github.com/symfony/mailer/tree/v7.0.3" ->>>>>>> develop }, "funding": [ { @@ -7416,22 +7353,6 @@ "type": "tidelift" } ], -<<<<<<< HEAD - "time": "2023-12-19T11:23:03+00:00" - }, - { - "name": "symfony/mime", - "version": "v7.0.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/mime.git", - "reference": "0a2fff95c1a10df97f571d67e76c7ae0f0d4f535" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/0a2fff95c1a10df97f571d67e76c7ae0f0d4f535", - "reference": "0a2fff95c1a10df97f571d67e76c7ae0f0d4f535", -======= "time": "2024-01-29T15:41:16+00:00" }, { @@ -7446,7 +7367,6 @@ "type": "zip", "url": "https://api.github.com/repos/symfony/mime/zipball/c1ffe24ba6fdc3e3f0f3fcb93519103b326a3716", "reference": "c1ffe24ba6fdc3e3f0f3fcb93519103b326a3716", ->>>>>>> develop "shasum": "" }, "require": { @@ -7500,11 +7420,7 @@ "mime-type" ], "support": { -<<<<<<< HEAD - "source": "https://github.com/symfony/mime/tree/v7.0.0" -======= "source": "https://github.com/symfony/mime/tree/v7.0.3" ->>>>>>> develop }, "funding": [ { @@ -7520,11 +7436,7 @@ "type": "tidelift" } ], -<<<<<<< HEAD - "time": "2023-10-19T14:20:43+00:00" -======= "time": "2024-01-30T08:34:29+00:00" ->>>>>>> develop }, { "name": "symfony/polyfill-ctype", @@ -8345,18 +8257,6 @@ }, { "name": "symfony/postmark-mailer", -<<<<<<< HEAD - "version": "v6.4.2", - "source": { - "type": "git", - "url": "https://github.com/symfony/postmark-mailer.git", - "reference": "c23bc7a323d9849178c0e579322c2da1192c08c6" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/postmark-mailer/zipball/c23bc7a323d9849178c0e579322c2da1192c08c6", - "reference": "c23bc7a323d9849178c0e579322c2da1192c08c6", -======= "version": "v6.4.3", "source": { "type": "git", @@ -8367,7 +8267,6 @@ "type": "zip", "url": "https://api.github.com/repos/symfony/postmark-mailer/zipball/59afae48341cf02fcab049eee368cbb9dc0b4481", "reference": "59afae48341cf02fcab049eee368cbb9dc0b4481", ->>>>>>> develop "shasum": "" }, "require": { @@ -8408,11 +8307,7 @@ "description": "Symfony Postmark Mailer Bridge", "homepage": "https://symfony.com", "support": { -<<<<<<< HEAD - "source": "https://github.com/symfony/postmark-mailer/tree/v6.4.2" -======= "source": "https://github.com/symfony/postmark-mailer/tree/v6.4.3" ->>>>>>> develop }, "funding": [ { @@ -8428,22 +8323,6 @@ "type": "tidelift" } ], -<<<<<<< HEAD - "time": "2023-12-28T19:16:56+00:00" - }, - { - "name": "symfony/process", - "version": "v6.4.2", - "source": { - "type": "git", - "url": "https://github.com/symfony/process.git", - "reference": "c4b1ef0bc80533d87a2e969806172f1c2a980241" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/c4b1ef0bc80533d87a2e969806172f1c2a980241", - "reference": "c4b1ef0bc80533d87a2e969806172f1c2a980241", -======= "time": "2024-01-23T14:51:35+00:00" }, { @@ -8458,7 +8337,6 @@ "type": "zip", "url": "https://api.github.com/repos/symfony/process/zipball/31642b0818bfcff85930344ef93193f8c607e0a3", "reference": "31642b0818bfcff85930344ef93193f8c607e0a3", ->>>>>>> develop "shasum": "" }, "require": { @@ -8490,11 +8368,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { -<<<<<<< HEAD - "source": "https://github.com/symfony/process/tree/v6.4.2" -======= "source": "https://github.com/symfony/process/tree/v6.4.3" ->>>>>>> develop }, "funding": [ { @@ -8510,11 +8384,7 @@ "type": "tidelift" } ], -<<<<<<< HEAD - "time": "2023-12-22T16:42:54+00:00" -======= "time": "2024-01-23T14:51:35+00:00" ->>>>>>> develop }, { "name": "symfony/service-contracts", @@ -8600,18 +8470,6 @@ }, { "name": "symfony/string", -<<<<<<< HEAD - "version": "v7.0.2", - "source": { - "type": "git", - "url": "https://github.com/symfony/string.git", - "reference": "cc78f14f91f5e53b42044d0620961c48028ff9f5" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/cc78f14f91f5e53b42044d0620961c48028ff9f5", - "reference": "cc78f14f91f5e53b42044d0620961c48028ff9f5", -======= "version": "v7.0.3", "source": { "type": "git", @@ -8622,7 +8480,6 @@ "type": "zip", "url": "https://api.github.com/repos/symfony/string/zipball/524aac4a280b90a4420d8d6a040718d0586505ac", "reference": "524aac4a280b90a4420d8d6a040718d0586505ac", ->>>>>>> develop "shasum": "" }, "require": { @@ -8679,11 +8536,7 @@ "utf8" ], "support": { -<<<<<<< HEAD - "source": "https://github.com/symfony/string/tree/v7.0.2" -======= "source": "https://github.com/symfony/string/tree/v7.0.3" ->>>>>>> develop }, "funding": [ { @@ -8699,22 +8552,6 @@ "type": "tidelift" } ], -<<<<<<< HEAD - "time": "2023-12-10T16:54:46+00:00" - }, - { - "name": "symfony/var-dumper", - "version": "v6.4.2", - "source": { - "type": "git", - "url": "https://github.com/symfony/var-dumper.git", - "reference": "68d6573ec98715ddcae5a0a85bee3c1c27a4c33f" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/68d6573ec98715ddcae5a0a85bee3c1c27a4c33f", - "reference": "68d6573ec98715ddcae5a0a85bee3c1c27a4c33f", -======= "time": "2024-01-29T15:41:16+00:00" }, { @@ -8729,7 +8566,6 @@ "type": "zip", "url": "https://api.github.com/repos/symfony/var-dumper/zipball/0435a08f69125535336177c29d56af3abc1f69da", "reference": "0435a08f69125535336177c29d56af3abc1f69da", ->>>>>>> develop "shasum": "" }, "require": { @@ -8785,11 +8621,7 @@ "dump" ], "support": { -<<<<<<< HEAD - "source": "https://github.com/symfony/var-dumper/tree/v6.4.2" -======= "source": "https://github.com/symfony/var-dumper/tree/v6.4.3" ->>>>>>> develop }, "funding": [ { @@ -8805,22 +8637,6 @@ "type": "tidelift" } ], -<<<<<<< HEAD - "time": "2023-12-28T19:16:56+00:00" - }, - { - "name": "symfony/var-exporter", - "version": "v7.0.2", - "source": { - "type": "git", - "url": "https://github.com/symfony/var-exporter.git", - "reference": "345c62fefe92243c3a06fc0cc65f2ec1a47e0764" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/var-exporter/zipball/345c62fefe92243c3a06fc0cc65f2ec1a47e0764", - "reference": "345c62fefe92243c3a06fc0cc65f2ec1a47e0764", -======= "time": "2024-01-23T14:53:30+00:00" }, { @@ -8835,7 +8651,6 @@ "type": "zip", "url": "https://api.github.com/repos/symfony/var-exporter/zipball/1fb79308cb5fc2b44bff6e8af10a5af6812e05b8", "reference": "1fb79308cb5fc2b44bff6e8af10a5af6812e05b8", ->>>>>>> develop "shasum": "" }, "require": { @@ -8880,11 +8695,7 @@ "serialize" ], "support": { -<<<<<<< HEAD - "source": "https://github.com/symfony/var-exporter/tree/v7.0.2" -======= "source": "https://github.com/symfony/var-exporter/tree/v7.0.3" ->>>>>>> develop }, "funding": [ { @@ -8900,11 +8711,7 @@ "type": "tidelift" } ], -<<<<<<< HEAD - "time": "2023-12-27T08:42:13+00:00" -======= "time": "2024-01-23T15:02:46+00:00" ->>>>>>> develop }, { "name": "symfony/yaml", @@ -9477,18 +9284,6 @@ }, { "name": "verbb/hyper", -<<<<<<< HEAD - "version": "1.1.19", - "source": { - "type": "git", - "url": "https://github.com/verbb/hyper.git", - "reference": "8b27e1adef421a6a5aa5d21362ba1f675b34c0dc" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/verbb/hyper/zipball/8b27e1adef421a6a5aa5d21362ba1f675b34c0dc", - "reference": "8b27e1adef421a6a5aa5d21362ba1f675b34c0dc", -======= "version": "1.1.20", "source": { "type": "git", @@ -9499,7 +9294,6 @@ "type": "zip", "url": "https://api.github.com/repos/verbb/hyper/zipball/b93325b20a3a276e679c1bcf1af82198e15775ef", "reference": "b93325b20a3a276e679c1bcf1af82198e15775ef", ->>>>>>> develop "shasum": "" }, "require": { @@ -9552,11 +9346,7 @@ "type": "github" } ], -<<<<<<< HEAD - "time": "2023-12-19T23:34:50+00:00" -======= "time": "2024-01-30T12:37:21+00:00" ->>>>>>> develop }, { "name": "verbb/super-table", @@ -11140,18 +10930,6 @@ }, { "name": "phpstan/phpstan", -<<<<<<< HEAD - "version": "1.10.56", - "source": { - "type": "git", - "url": "https://github.com/phpstan/phpstan.git", - "reference": "27816a01aea996191ee14d010f325434c0ee76fa" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/27816a01aea996191ee14d010f325434c0ee76fa", - "reference": "27816a01aea996191ee14d010f325434c0ee76fa", -======= "version": "1.10.57", "source": { "type": "git", @@ -11162,7 +10940,6 @@ "type": "zip", "url": "https://api.github.com/repos/phpstan/phpstan/zipball/1627b1d03446904aaa77593f370c5201d2ecc34e", "reference": "1627b1d03446904aaa77593f370c5201d2ecc34e", ->>>>>>> develop "shasum": "" }, "require": { @@ -11211,11 +10988,7 @@ "type": "tidelift" } ], -<<<<<<< HEAD - "time": "2024-01-15T10:43:00+00:00" -======= "time": "2024-01-24T11:51:34+00:00" ->>>>>>> develop }, { "name": "symplify/easy-coding-standard",