From 7dc69067f697ba3e6c13b1c53fce746c0372275d Mon Sep 17 00:00:00 2001 From: ajstanley Date: Fri, 26 Apr 2024 16:00:18 -0300 Subject: [PATCH 1/6] flysytem patch added --- .../flysystem-3387094-1-2.1.0-rc6-1.patch | 17 +++++++++++++++++ composer.json | 10 ++++++++-- 2 files changed, 25 insertions(+), 2 deletions(-) create mode 100644 assets/patches/flysystem-3387094-1-2.1.0-rc6-1.patch diff --git a/assets/patches/flysystem-3387094-1-2.1.0-rc6-1.patch b/assets/patches/flysystem-3387094-1-2.1.0-rc6-1.patch new file mode 100644 index 000000000..9bc57c68c --- /dev/null +++ b/assets/patches/flysystem-3387094-1-2.1.0-rc6-1.patch @@ -0,0 +1,17 @@ +diff --git a/src/FlysystemBridge.php b/src/FlysystemBridge.php +index 998c37d..c9ea2a4 100644 +--- a/src/FlysystemBridge.php ++++ b/src/FlysystemBridge.php +@@ -128,4 +128,12 @@ class FlysystemBridge extends FlysystemStreamWrapper implements StreamWrapperInt + return \Drupal::service('flysystem_factory'); + } + ++ /** ++ * {@inheritdoc} ++ */ ++ public function __set(string $name, mixed $value): void { ++ ++ } ++ ++ + } diff --git a/composer.json b/composer.json index 8d7e49af0..9494fe851 100755 --- a/composer.json +++ b/composer.json @@ -125,10 +125,16 @@ "type:drupal-custom-theme" ] }, - "patches": {} + "patches": { + "drupal/flysystem": { + "PHP 8.2 deprecation warning": "assets/patches/flysystem-3387094-1-2.1.0-rc6-1.patch" + } + } }, "scripts": { - "post-root-package-install": ["Islandora\\StarterSite::rootPackageInstall"] + "post-root-package-install": [ + "Islandora\\StarterSite::rootPackageInstall" + ] }, "require-dev": { "drupal/config_inspector": "^2.1", From 0a426683f9dd79a46f9c18f3a0ca9c550eb40caf Mon Sep 17 00:00:00 2001 From: ajstanley Date: Mon, 29 Apr 2024 17:52:07 -0300 Subject: [PATCH 2/6] got the rght patch this time --- .../flysystem-3387094-1-2.1.0-rc6-1.patch | 17 ------------ assets/patches/flysystem-stream-wrapper.patch | 27 +++++++++++++++++++ 2 files changed, 27 insertions(+), 17 deletions(-) delete mode 100644 assets/patches/flysystem-3387094-1-2.1.0-rc6-1.patch create mode 100644 assets/patches/flysystem-stream-wrapper.patch diff --git a/assets/patches/flysystem-3387094-1-2.1.0-rc6-1.patch b/assets/patches/flysystem-3387094-1-2.1.0-rc6-1.patch deleted file mode 100644 index 9bc57c68c..000000000 --- a/assets/patches/flysystem-3387094-1-2.1.0-rc6-1.patch +++ /dev/null @@ -1,17 +0,0 @@ -diff --git a/src/FlysystemBridge.php b/src/FlysystemBridge.php -index 998c37d..c9ea2a4 100644 ---- a/src/FlysystemBridge.php -+++ b/src/FlysystemBridge.php -@@ -128,4 +128,12 @@ class FlysystemBridge extends FlysystemStreamWrapper implements StreamWrapperInt - return \Drupal::service('flysystem_factory'); - } - -+ /** -+ * {@inheritdoc} -+ */ -+ public function __set(string $name, mixed $value): void { -+ -+ } -+ -+ - } diff --git a/assets/patches/flysystem-stream-wrapper.patch b/assets/patches/flysystem-stream-wrapper.patch new file mode 100644 index 000000000..f134e1c62 --- /dev/null +++ b/assets/patches/flysystem-stream-wrapper.patch @@ -0,0 +1,27 @@ +From 2cb6c625d6d674b51eb4bf66fae8232b30533c9d Mon Sep 17 00:00:00 2001 +From: Adam Vessey +Date: Fri, 13 Oct 2023 13:52:04 -0300 +Subject: [PATCH] Add in the `public $context` property to the stream wrapper. + +--- + src/FlysystemStreamWrapper.php | 7 +++++++ + 1 file changed, 7 insertions(+) + +diff --git a/src/FlysystemStreamWrapper.php b/src/FlysystemStreamWrapper.php +index 93a79b6..5c5a200 100644 +--- a/src/FlysystemStreamWrapper.php ++++ b/src/FlysystemStreamWrapper.php +@@ -25,6 +25,13 @@ class FlysystemStreamWrapper + */ + const STREAM_URL_IGNORE_SIZE = 8; + ++ /** ++ * PHP-passed stream context. ++ * ++ * @var resource|null ++ */ ++ public $context; ++ + /** + * The registered filesystems. + * From 4cc430fbd616f573a49ec5454b372510919371b2 Mon Sep 17 00:00:00 2001 From: ajstanley Date: Mon, 29 Apr 2024 18:52:28 -0300 Subject: [PATCH 3/6] new patch name --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 9494fe851..eb533eefc 100755 --- a/composer.json +++ b/composer.json @@ -127,7 +127,7 @@ }, "patches": { "drupal/flysystem": { - "PHP 8.2 deprecation warning": "assets/patches/flysystem-3387094-1-2.1.0-rc6-1.patch" + "PHP 8.2 deprecation warning": "assets/patches/flysystem-stream-wrapper.patch" } } }, From b7f253fdbca05185a49e471be4cdd015a0aaf891 Mon Sep 17 00:00:00 2001 From: ajstanley Date: Mon, 29 Apr 2024 20:46:42 -0300 Subject: [PATCH 4/6] fixed composer --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index eb533eefc..e1dfd1f10 100755 --- a/composer.json +++ b/composer.json @@ -126,7 +126,7 @@ ] }, "patches": { - "drupal/flysystem": { + "twistor/flysystem-stream-wrapper": { "PHP 8.2 deprecation warning": "assets/patches/flysystem-stream-wrapper.patch" } } From ebdd21fabaa6660c88df01bad6a44ef5bcf44e3d Mon Sep 17 00:00:00 2001 From: ajstanley Date: Wed, 12 Jun 2024 16:36:50 -0300 Subject: [PATCH 5/6] updated to Drupal namespace --- composer.json | 11 +- composer.lock | 1350 ++++++++++++++++++++++++++----------------------- 2 files changed, 737 insertions(+), 624 deletions(-) diff --git a/composer.json b/composer.json index 84055d68a..ceeba52d2 100755 --- a/composer.json +++ b/composer.json @@ -48,7 +48,9 @@ "drupal/flysystem": "^2.2@alpha", "drupal/fpa": "^4.0", "drupal/hal": "^1.0||^2.0", - "drupal/islandora": "^2.8.1", + "drupal/islandora": "^2.12", + "drupal/islandora_mirador": "^2.3", + "drupal/matomo": "^1.19", "drupal/openseadragon": "^2", "drupal/pathauto": "^1.12", "drupal/pdf": "^1.1", @@ -61,8 +63,6 @@ "drupal/views_field_view": "^1.0@beta", "drush/drush": "^12", "islandora-rdm/islandora_fits": "dev-8.x-1.x as 1.x-dev", - "islandora/islandora": "^2.8.1", - "islandora/islandora_mirador": "^2", "islandora/views_nested_details": "^1.0", "library/pdf.js": "^2.4", "mjordan/islandora_workbench_integration": "dev-main" @@ -93,6 +93,11 @@ "mode": "append", "default": "web/core/assets/scaffold/files/default.settings.php", "append": "assets/patches/default_settings.txt" + }, + "[web-root]/core/themes/olivero/olivero.theme": { + "mode": "append", + "default": "web/core/themes/olivero/olivero.theme", + "append": "assets/patches/olivero.theme" } } }, diff --git a/composer.lock b/composer.lock index 82e0984f0..a5d92d7d6 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": "2eb34ad6f4d8b8c14c85c85b30db684a", + "content-hash": "1c657b3b610439a25f9983fa0f4990d7", "packages": [ { "name": "adci/full-name-parser", @@ -184,16 +184,16 @@ }, { "name": "chi-teck/drupal-code-generator", - "version": "3.4.0", + "version": "3.6.0", "source": { "type": "git", "url": "https://github.com/Chi-teck/drupal-code-generator.git", - "reference": "b8136b945dc3446894e6cd2b2f055e147140faed" + "reference": "7794c268309a6fd7aeecfd1246a01238c14384c4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/b8136b945dc3446894e6cd2b2f055e147140faed", - "reference": "b8136b945dc3446894e6cd2b2f055e147140faed", + "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/7794c268309a6fd7aeecfd1246a01238c14384c4", + "reference": "7794c268309a6fd7aeecfd1246a01238c14384c4", "shasum": "" }, "require": { @@ -211,7 +211,7 @@ "squizlabs/php_codesniffer": "<3.6" }, "require-dev": { - "chi-teck/drupal-coder-extension": "^2.0.0-beta2", + "chi-teck/drupal-coder-extension": "^2.0.0-beta3", "drupal/coder": "8.3.23", "drupal/core": "10.3.x-dev", "ext-simplexml": "*", @@ -238,22 +238,22 @@ "description": "Drupal code generator", "support": { "issues": "https://github.com/Chi-teck/drupal-code-generator/issues", - "source": "https://github.com/Chi-teck/drupal-code-generator/tree/3.4.0" + "source": "https://github.com/Chi-teck/drupal-code-generator/tree/3.6.0" }, - "time": "2024-03-10T13:35:00+00:00" + "time": "2024-05-20T12:50:42+00:00" }, { "name": "citation-style-language/locales", - "version": "v0.0.18", + "version": "v0.0.20", "source": { "type": "git", "url": "https://github.com/citation-style-language/locales.git", - "reference": "278ff8bd8e504c31ae7d62e309d2014abee2a2d5" + "reference": "1159f592d095d890ba5b338a330be0f2c774c537" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/citation-style-language/locales/zipball/278ff8bd8e504c31ae7d62e309d2014abee2a2d5", - "reference": "278ff8bd8e504c31ae7d62e309d2014abee2a2d5", + "url": "https://api.github.com/repos/citation-style-language/locales/zipball/1159f592d095d890ba5b338a330be0f2c774c537", + "reference": "1159f592d095d890ba5b338a330be0f2c774c537", "shasum": "" }, "type": "library", @@ -276,7 +276,7 @@ "homepage": "http://citationstyles.org/", "support": { "issues": "https://github.com/citation-style-language/locales/issues", - "source": "https://github.com/citation-style-language/locales/tree/v0.0.18" + "source": "https://github.com/citation-style-language/locales/tree/v0.0.20" }, "funding": [ { @@ -284,20 +284,20 @@ "type": "github" } ], - "time": "2024-03-18T01:13:27+00:00" + "time": "2024-04-14T13:09:26+00:00" }, { "name": "citation-style-language/styles", - "version": "v0.0.404", + "version": "v0.0.434", "source": { "type": "git", "url": "https://github.com/citation-style-language/styles.git", - "reference": "2aaaa9ebdf2f8592d899657221048aa1992f3e48" + "reference": "6dd5144f52bac3c1588d52505cafc14667b23579" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/citation-style-language/styles/zipball/2aaaa9ebdf2f8592d899657221048aa1992f3e48", - "reference": "2aaaa9ebdf2f8592d899657221048aa1992f3e48", + "url": "https://api.github.com/repos/citation-style-language/styles/zipball/6dd5144f52bac3c1588d52505cafc14667b23579", + "reference": "6dd5144f52bac3c1588d52505cafc14667b23579", "shasum": "" }, "type": "library", @@ -315,7 +315,7 @@ "homepage": "http://citationstyles.org/", "support": { "issues": "https://github.com/citation-style-language/styles/issues", - "source": "https://github.com/citation-style-language/styles/tree/v0.0.404" + "source": "https://github.com/citation-style-language/styles/tree/v0.0.434" }, "funding": [ { @@ -323,7 +323,7 @@ "type": "github" } ], - "time": "2024-03-21T21:25:40+00:00" + "time": "2024-05-22T03:42:22+00:00" }, { "name": "composer/installers", @@ -559,25 +559,25 @@ }, { "name": "consolidation/annotated-command", - "version": "4.9.2", + "version": "4.10.0", "source": { "type": "git", "url": "https://github.com/consolidation/annotated-command.git", - "reference": "b5255dcbee1de95036185062a103dabc622224de" + "reference": "1e830ba908c9ffb1ba7ca056203531b27188812c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/b5255dcbee1de95036185062a103dabc622224de", - "reference": "b5255dcbee1de95036185062a103dabc622224de", + "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/1e830ba908c9ffb1ba7ca056203531b27188812c", + "reference": "1e830ba908c9ffb1ba7ca056203531b27188812c", "shasum": "" }, "require": { "consolidation/output-formatters": "^4.3.1", "php": ">=7.1.3", "psr/log": "^1 || ^2 || ^3", - "symfony/console": "^4.4.8 || ^5 || ^6", - "symfony/event-dispatcher": "^4.4.8 || ^5 || ^6", - "symfony/finder": "^4.4.8 || ^5 || ^6" + "symfony/console": "^4.4.8 || ^5 || ^6 || ^7", + "symfony/event-dispatcher": "^4.4.8 || ^5 || ^6 || ^7", + "symfony/finder": "^4.4.8 || ^5 || ^6 || ^7" }, "require-dev": { "composer-runtime-api": "^2.0", @@ -609,9 +609,9 @@ "description": "Initialize Symfony Console commands from annotated command class methods.", "support": { "issues": "https://github.com/consolidation/annotated-command/issues", - "source": "https://github.com/consolidation/annotated-command/tree/4.9.2" + "source": "https://github.com/consolidation/annotated-command/tree/4.10.0" }, - "time": "2023-12-26T14:30:50+00:00" + "time": "2024-04-05T21:05:39+00:00" }, { "name": "consolidation/config", @@ -725,32 +725,32 @@ }, { "name": "consolidation/log", - "version": "3.0.0", + "version": "3.1.0", "source": { "type": "git", "url": "https://github.com/consolidation/log.git", - "reference": "caaad9d70dae54eb49002666f000e3c607066878" + "reference": "c27a3beb36137c141ccbce0d89f64befb243c015" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/log/zipball/caaad9d70dae54eb49002666f000e3c607066878", - "reference": "caaad9d70dae54eb49002666f000e3c607066878", + "url": "https://api.github.com/repos/consolidation/log/zipball/c27a3beb36137c141ccbce0d89f64befb243c015", + "reference": "c27a3beb36137c141ccbce0d89f64befb243c015", "shasum": "" }, "require": { "php": ">=8.0.0", "psr/log": "^3", - "symfony/console": "^5 || ^6" + "symfony/console": "^5 || ^6 || ^7" }, "require-dev": { - "phpunit/phpunit": ">=7.5.20", + "phpunit/phpunit": "^7.5.20 || ^8 || ^9", "squizlabs/php_codesniffer": "^3", "yoast/phpunit-polyfills": "^0.2.0" }, "type": "library", "extra": { - "branch-alias": { - "dev-main": "2.x-dev" + "platform": { + "php": "8.2.17" } }, "autoload": { @@ -771,36 +771,36 @@ "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.", "support": { "issues": "https://github.com/consolidation/log/issues", - "source": "https://github.com/consolidation/log/tree/3.0.0" + "source": "https://github.com/consolidation/log/tree/3.1.0" }, - "time": "2022-04-05T16:53:32+00:00" + "time": "2024-04-04T23:50:25+00:00" }, { "name": "consolidation/output-formatters", - "version": "4.3.2", + "version": "4.5.0", "source": { "type": "git", "url": "https://github.com/consolidation/output-formatters.git", - "reference": "06711568b4cd169700ff7e8075db0a9a341ceb58" + "reference": "7a611b01eb48eb19cd54672339fc08c0985bf540" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/06711568b4cd169700ff7e8075db0a9a341ceb58", - "reference": "06711568b4cd169700ff7e8075db0a9a341ceb58", + "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/7a611b01eb48eb19cd54672339fc08c0985bf540", + "reference": "7a611b01eb48eb19cd54672339fc08c0985bf540", "shasum": "" }, "require": { "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3", "php": ">=7.1.3", - "symfony/console": "^4 || ^5 || ^6", - "symfony/finder": "^4 || ^5 || ^6" + "symfony/console": "^4 || ^5 || ^6 || ^7", + "symfony/finder": "^4 || ^5 || ^6 || ^7" }, "require-dev": { "php-coveralls/php-coveralls": "^2.4.2", "phpunit/phpunit": "^7 || ^8 || ^9", "squizlabs/php_codesniffer": "^3", - "symfony/var-dumper": "^4 || ^5 || ^6", - "symfony/yaml": "^4 || ^5 || ^6", + "symfony/var-dumper": "^4 || ^5 || ^6 || ^7", + "symfony/yaml": "^4 || ^5 || ^6 || ^7", "yoast/phpunit-polyfills": "^1" }, "suggest": { @@ -825,9 +825,9 @@ "description": "Format text by applying transformations provided by plug-in formatters.", "support": { "issues": "https://github.com/consolidation/output-formatters/issues", - "source": "https://github.com/consolidation/output-formatters/tree/4.3.2" + "source": "https://github.com/consolidation/output-formatters/tree/4.5.0" }, - "time": "2023-07-06T04:45:41+00:00" + "time": "2024-04-02T15:18:52+00:00" }, { "name": "consolidation/robo", @@ -959,23 +959,23 @@ }, { "name": "consolidation/site-alias", - "version": "4.0.1", + "version": "4.1.0", "source": { "type": "git", "url": "https://github.com/consolidation/site-alias.git", - "reference": "b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5" + "reference": "1056ceb93f6aafe6f7600d7bbe1b62b8488abccf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/site-alias/zipball/b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5", - "reference": "b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5", + "url": "https://api.github.com/repos/consolidation/site-alias/zipball/1056ceb93f6aafe6f7600d7bbe1b62b8488abccf", + "reference": "1056ceb93f6aafe6f7600d7bbe1b62b8488abccf", "shasum": "" }, "require": { - "consolidation/config": "^1.2.1 || ^2", + "consolidation/config": "^1.2.1 || ^2 || ^3", "php": ">=7.4", - "symfony/filesystem": "^5.4 || ^6", - "symfony/finder": "^5 || ^6" + "symfony/filesystem": "^5.4 || ^6 || ^7", + "symfony/finder": "^5 || ^6 || ^7" }, "require-dev": { "php-coveralls/php-coveralls": "^2.4.2", @@ -1012,30 +1012,30 @@ "description": "Manage alias records for local and remote sites.", "support": { "issues": "https://github.com/consolidation/site-alias/issues", - "source": "https://github.com/consolidation/site-alias/tree/4.0.1" + "source": "https://github.com/consolidation/site-alias/tree/4.1.0" }, - "time": "2023-04-29T17:18:10+00:00" + "time": "2024-04-05T15:58:04+00:00" }, { "name": "consolidation/site-process", - "version": "5.2.0", + "version": "5.4.0", "source": { "type": "git", "url": "https://github.com/consolidation/site-process.git", - "reference": "6c44638d7af8a8b4abe12c3180701243f480539d" + "reference": "7ab3ffe4195a89b8dc334ea22e7881abe79ffd9a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/site-process/zipball/6c44638d7af8a8b4abe12c3180701243f480539d", - "reference": "6c44638d7af8a8b4abe12c3180701243f480539d", + "url": "https://api.github.com/repos/consolidation/site-process/zipball/7ab3ffe4195a89b8dc334ea22e7881abe79ffd9a", + "reference": "7ab3ffe4195a89b8dc334ea22e7881abe79ffd9a", "shasum": "" }, "require": { - "consolidation/config": "^2", + "consolidation/config": "^2 || ^3", "consolidation/site-alias": "^3 || ^4", "php": ">=8.0.14", - "symfony/console": "^5.4 || ^6", - "symfony/process": "^6" + "symfony/console": "^5.4 || ^6 || ^7", + "symfony/process": "^6 || ^7" }, "require-dev": { "phpunit/phpunit": "^9", @@ -1069,9 +1069,9 @@ "description": "A thin wrapper around the Symfony Process Component that allows applications to use the Site Alias library to specify the target for a remote call.", "support": { "issues": "https://github.com/consolidation/site-process/issues", - "source": "https://github.com/consolidation/site-process/tree/5.2.0" + "source": "https://github.com/consolidation/site-process/tree/5.4.0" }, - "time": "2022-12-06T17:57:16+00:00" + "time": "2024-04-06T00:00:28+00:00" }, { "name": "cweagans/composer-patches", @@ -1425,6 +1425,50 @@ ], "time": "2024-02-05T11:35:39+00:00" }, + { + "name": "drupal/action", + "version": "0.2.1", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/action.git", + "reference": "0.2.1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/action-0.2.1.zip", + "reference": "0.2.1", + "shasum": "efc67e925ceb3e78fc8c1f73e58ddd0312bda6f3" + }, + "require": { + "drupal/core": ">10.2" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "0.2.1", + "datestamp": "1712919607", + "security-coverage": { + "status": "not-covered", + "message": "Project has not opted into security advisory coverage!" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "andypost", + "homepage": "https://www.drupal.org/user/118908" + } + ], + "description": "Allows configuration of tasks to be executed in response to events.", + "homepage": "https://www.drupal.org/project/action", + "support": { + "source": "https://git.drupalcode.org/project/action" + } + }, { "name": "drupal/admin_toolbar", "version": "3.4.2", @@ -1567,6 +1611,10 @@ "name": "donrichards", "homepage": "https://www.drupal.org/user/3519850" }, + { + "name": "joecorall", + "homepage": "https://www.drupal.org/user/1144790" + }, { "name": "kylehuynh", "homepage": "https://www.drupal.org/user/3255474" @@ -1597,30 +1645,30 @@ }, { "name": "drupal/better_exposed_filters", - "version": "6.0.3", + "version": "6.0.6", "source": { "type": "git", "url": "https://git.drupalcode.org/project/better_exposed_filters.git", - "reference": "6.0.3" + "reference": "6.0.6" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-6.0.3.zip", - "reference": "6.0.3", - "shasum": "b5c20207d7679542bb81955771956c18083e6e0b" + "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-6.0.6.zip", + "reference": "6.0.6", + "shasum": "558ca591d450fc64512cae7f98cb4b0241e15ba3" }, "require": { "drupal/core": "^9 || ^10", - "drupal/jquery_ui": "^1.6", - "drupal/jquery_ui_datepicker": "^2.0", - "drupal/jquery_ui_slider": "^2.0.0", - "drupal/jquery_ui_touch_punch": "^1.0" + "drupal/jquery_ui": "*", + "drupal/jquery_ui_datepicker": "*", + "drupal/jquery_ui_slider": "*", + "drupal/jquery_ui_touch_punch": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "6.0.3", - "datestamp": "1671541877", + "version": "6.0.6", + "datestamp": "1716397541", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -1659,6 +1707,10 @@ { "name": "rlhawk", "homepage": "https://www.drupal.org/user/352283" + }, + { + "name": "smustgrave", + "homepage": "https://www.drupal.org/user/3252890" } ], "description": "Replaces the Views default single- or multi-select boxes with more advanced options.", @@ -2193,16 +2245,16 @@ }, { "name": "drupal/core", - "version": "10.2.4", + "version": "10.2.7", "source": { "type": "git", "url": "https://github.com/drupal/core.git", - "reference": "d1c5b44adfc79bda03252471491b0fba89d87eff" + "reference": "4416c8a86e5b57b5acc595e4855ce50fdb6a542d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core/zipball/d1c5b44adfc79bda03252471491b0fba89d87eff", - "reference": "d1c5b44adfc79bda03252471491b0fba89d87eff", + "url": "https://api.github.com/repos/drupal/core/zipball/4416c8a86e5b57b5acc595e4855ce50fdb6a542d", + "reference": "4416c8a86e5b57b5acc595e4855ce50fdb6a542d", "shasum": "" }, "require": { @@ -2350,22 +2402,22 @@ ], "description": "Drupal is an open source content management platform powering millions of websites and applications.", "support": { - "source": "https://github.com/drupal/core/tree/10.2.4" + "source": "https://github.com/drupal/core/tree/10.2.7" }, - "time": "2024-03-06T08:23:56+00:00" + "time": "2024-06-06T07:25:42+00:00" }, { "name": "drupal/core-composer-scaffold", - "version": "10.2.4", + "version": "10.2.7", "source": { "type": "git", "url": "https://github.com/drupal/core-composer-scaffold.git", - "reference": "63effa1bc644e80a269e8b4415e627491d26fd3f" + "reference": "adc702b6ef38a0446abe90267acb96aa806995cf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/63effa1bc644e80a269e8b4415e627491d26fd3f", - "reference": "63effa1bc644e80a269e8b4415e627491d26fd3f", + "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/adc702b6ef38a0446abe90267acb96aa806995cf", + "reference": "adc702b6ef38a0446abe90267acb96aa806995cf", "shasum": "" }, "require": { @@ -2400,22 +2452,22 @@ "drupal" ], "support": { - "source": "https://github.com/drupal/core-composer-scaffold/tree/10.2.4" + "source": "https://github.com/drupal/core-composer-scaffold/tree/10.2.7" }, - "time": "2024-01-26T14:59:30+00:00" + "time": "2024-04-09T07:27:23+00:00" }, { "name": "drupal/core-recommended", - "version": "10.2.4", + "version": "10.2.7", "source": { "type": "git", "url": "https://github.com/drupal/core-recommended.git", - "reference": "550c4cb19afda15ef892d88469ab93dc38bf0b46" + "reference": "afaac96cde3b05179d11152ed646f9f6772e7a0e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-recommended/zipball/550c4cb19afda15ef892d88469ab93dc38bf0b46", - "reference": "550c4cb19afda15ef892d88469ab93dc38bf0b46", + "url": "https://api.github.com/repos/drupal/core-recommended/zipball/afaac96cde3b05179d11152ed646f9f6772e7a0e", + "reference": "afaac96cde3b05179d11152ed646f9f6772e7a0e", "shasum": "" }, "require": { @@ -2424,7 +2476,7 @@ "doctrine/annotations": "~1.14.3", "doctrine/deprecations": "~1.1.2", "doctrine/lexer": "~2.1.0", - "drupal/core": "10.2.4", + "drupal/core": "10.2.7", "egulias/email-validator": "~4.0.2", "guzzlehttp/guzzle": "~7.8.1", "guzzlehttp/promises": "~2.0.2", @@ -2485,9 +2537,9 @@ ], "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.", "support": { - "source": "https://github.com/drupal/core-recommended/tree/10.2.4" + "source": "https://github.com/drupal/core-recommended/tree/10.2.7" }, - "time": "2024-03-06T08:23:56+00:00" + "time": "2024-06-06T07:25:42+00:00" }, { "name": "drupal/csv_serialization", @@ -2552,26 +2604,26 @@ }, { "name": "drupal/ctools", - "version": "4.0.4", + "version": "4.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/ctools.git", - "reference": "4.0.4" + "reference": "4.1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/ctools-4.0.4.zip", - "reference": "4.0.4", - "shasum": "4a2474eb2fd525b2add2db0e855c135ba7f0fb70" + "url": "https://ftp.drupal.org/files/projects/ctools-4.1.0.zip", + "reference": "4.1.0", + "shasum": "69f5889cf557df9e55519390e6a95cfa31b67874" }, "require": { - "drupal/core": "^9.3 || ^10" + "drupal/core": "^9.5 || ^10 || ^11" }, "type": "drupal-module", "extra": { "drupal": { - "version": "4.0.4", - "datestamp": "1684299878", + "version": "4.1.0", + "datestamp": "1718144949", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3023,23 +3075,23 @@ }, { "name": "drupal/filehash", - "version": "2.0.10", + "version": "3.0.3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/filehash.git", - "reference": "2.0.10" + "reference": "3.0.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/filehash-2.0.10.zip", - "reference": "2.0.10", - "shasum": "7c4f2cdf0ee89652991990784a4bcdf1481e736f" + "url": "https://ftp.drupal.org/files/projects/filehash-3.0.3.zip", + "reference": "3.0.3", + "shasum": "d2f4d61dc032b0ff602c3977589cd53893588485" }, "require": { - "drupal/core": "^8.6 || ^9.0 || ^10.0" + "drupal/core": "^10.2" }, "require-dev": { - "drush/drush": "^10.6 || ^11.0 || ^12.0" + "drush/drush": "^12.0" }, "suggest": { "yzalis/identicon": "^2.0" @@ -3047,17 +3099,12 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.10", - "datestamp": "1693359335", + "version": "3.0.3", + "datestamp": "1716363404", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } - }, - "drush": { - "services": { - "drush.services.yml": "^9 || ^10 || ^11 || ^12" - } } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -3071,7 +3118,7 @@ "role": "Maintainer" } ], - "description": "File Hash module generates and stores MD5, SHA-1 and/or SHA-256 hashes for each file uploaded to the site.", + "description": "File Hash module generates and stores hashes for each file uploaded to the site.", "homepage": "https://www.drupal.org/project/filehash", "support": { "source": "https://git.drupalcode.org/project/filehash", @@ -3230,17 +3277,17 @@ }, { "name": "drupal/geolocation", - "version": "3.12.0", + "version": "3.13.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/geolocation.git", - "reference": "8.x-3.12" + "reference": "8.x-3.13" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/geolocation-8.x-3.12.zip", - "reference": "8.x-3.12", - "shasum": "eb31fe9080e2e0dcf442fc9b0a859f326219db5a" + "url": "https://ftp.drupal.org/files/projects/geolocation-8.x-3.13.zip", + "reference": "8.x-3.13", + "shasum": "49029950bc0927f14b1d0ce01f93e03cdd131ee6" }, "require": { "drupal/core": "^9.3 || ^10", @@ -3266,8 +3313,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.12", - "datestamp": "1673282362", + "version": "8.x-3.13", + "datestamp": "1714403539", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3350,28 +3397,29 @@ }, { "name": "drupal/islandora", - "version": "2.11.0", + "version": "2.12.2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/islandora.git", - "reference": "2.11.0" + "reference": "2.12.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/islandora-2.11.0.zip", - "reference": "2.11.0", - "shasum": "6677ac14f2c901a5d76297009d2f6e83b1bdf4b6" + "url": "https://ftp.drupal.org/files/projects/islandora-2.12.2.zip", + "reference": "2.12.2", + "shasum": "680efbd74a63401023b3ea72a3909df8a6f5bfd7" }, "require": { + "drupal/action": "*", "drupal/context": "^4 || ^5@RC", "drupal/context_ui": "*", "drupal/core": "^9 || ^10", "drupal/ctools": "^3.8 || ^4", "drupal/eva": "^3.0", "drupal/file_replace": "^1.1", - "drupal/filehash": "^2", + "drupal/filehash": "^2 || ^3", "drupal/flysystem": "^2.0@alpha", - "drupal/jsonld": "*", + "drupal/jsonld": "^2 || ^3", "drupal/jwt": "^1.1 || ^2", "drupal/migrate_plus": "^5.1 || ^6", "drupal/migrate_source_csv": "^3.4", @@ -3380,7 +3428,6 @@ "drupal/token": "^1.3", "islandora/chullo": "^2.0", "islandora/fedora-entity-mapper": "^1.0", - "islandora/jsonld": "^2 || ^3", "stomp-php/stomp-php": "4.* || ^5" }, "require-dev": { @@ -3396,11 +3443,11 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.11.0", - "datestamp": "1704912389", + "version": "2.12.2", + "datestamp": "1717676944", "security-coverage": { - "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, @@ -3421,6 +3468,10 @@ "email": "dlamb@islandora.ca", "role": "Maintainer" }, + { + "name": "joecorall", + "homepage": "https://www.drupal.org/user/1144790" + }, { "name": "kirsta", "homepage": "https://www.drupal.org/user/173761" @@ -3461,28 +3512,174 @@ "issues": "https://github.com/Islandora/documentation/issues" } }, + { + "name": "drupal/islandora_iiif", + "version": "2.12.2", + "require": { + "drupal/core": "^9 || ^10", + "drupal/islandora": "^2" + }, + "type": "metapackage", + "extra": { + "drupal": { + "version": "2.12.2", + "datestamp": "1717676944", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "community-islandora", + "homepage": "https://www.drupal.org/user/3441437" + }, + { + "name": "donrichards", + "homepage": "https://www.drupal.org/user/3519850" + }, + { + "name": "joecorall", + "homepage": "https://www.drupal.org/user/1144790" + }, + { + "name": "kirsta", + "homepage": "https://www.drupal.org/user/173761" + }, + { + "name": "Natkeeran", + "homepage": "https://www.drupal.org/user/1016288" + }, + { + "name": "rosiel", + "homepage": "https://www.drupal.org/user/3263030" + }, + { + "name": "seth.e.shaw", + "homepage": "https://www.drupal.org/user/50620" + }, + { + "name": "wgillingham", + "homepage": "https://www.drupal.org/user/112955" + }, + { + "name": "whikloj", + "homepage": "https://www.drupal.org/user/431329" + }, + { + "name": "yamilsuarez", + "homepage": "https://www.drupal.org/user/3775743" + } + ], + "description": "IIIF support for Islandora", + "homepage": "https://www.drupal.org/project/islandora", + "support": { + "source": "https://git.drupalcode.org/project/islandora" + } + }, + { + "name": "drupal/islandora_mirador", + "version": "2.3.7", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/islandora_mirador.git", + "reference": "2.3.7" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/islandora_mirador-2.3.7.zip", + "reference": "2.3.7", + "shasum": "fee6b132f167c234511c9de12ea4698b215d1c9a" + }, + "require": { + "drupal/core": "^9.3 || ^10", + "drupal/islandora": "^2", + "drupal/islandora_iiif": "*", + "drupal/token": "*" + }, + "conflict": { + "drupal/core": "<=8", + "islandora/islandora_defaults": "<3" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.3.7", + "datestamp": "1710353302", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "community-islandora", + "homepage": "https://www.drupal.org/user/3441437" + }, + { + "name": "donrichards", + "homepage": "https://www.drupal.org/user/3519850" + }, + { + "name": "joecorall", + "homepage": "https://www.drupal.org/user/1144790" + }, + { + "name": "rosiel", + "homepage": "https://www.drupal.org/user/3263030" + }, + { + "name": "seth.e.shaw", + "homepage": "https://www.drupal.org/user/50620" + }, + { + "name": "wgillingham", + "homepage": "https://www.drupal.org/user/112955" + } + ], + "description": "Islandora support for Mirador viewer", + "homepage": "https://github.com/Islandora/islandora_mirador", + "keywords": [ + "Drupal", + "Islandora" + ], + "support": { + "source": "https://git.drupalcode.org/project/islandora_mirador", + "issues": "https://github.com/Islandora/documentation/issues" + } + }, { "name": "drupal/jquery_ui", - "version": "1.6.0", + "version": "1.7.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/jquery_ui.git", - "reference": "8.x-1.6" + "reference": "8.x-1.7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.6.zip", - "reference": "8.x-1.6", - "shasum": "0ddccdcf35a066de1843e1d9670677ee1a2faac0" + "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.7.zip", + "reference": "8.x-1.7", + "shasum": "3f893843ec30fed18fa1b0cb326e51880b0cb686" }, "require": { - "drupal/core": "^9.2 || ^10" + "drupal/core": "^9.2 || ^10 || ^11" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.6", - "datestamp": "1668521197", + "version": "8.x-1.7", + "datestamp": "1717002098", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3559,28 +3756,28 @@ }, { "name": "drupal/jquery_ui_autocomplete", - "version": "2.0.0", + "version": "2.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/jquery_ui_autocomplete.git", - "reference": "2.0.0" + "reference": "2.1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/jquery_ui_autocomplete-2.0.0.zip", - "reference": "2.0.0", - "shasum": "927d312a74002f99e1c971d3d268be1b0a532fc7" + "url": "https://ftp.drupal.org/files/projects/jquery_ui_autocomplete-2.1.0.zip", + "reference": "2.1.0", + "shasum": "ecf9500d8bff6c3673e92019a09dcce87ac81fc6" }, "require": { - "drupal/core": "^9.2 || ^10", - "drupal/jquery_ui": "^1.6", - "drupal/jquery_ui_menu": "^2" + "drupal/core": "^9.2 || ^10 || ^11", + "drupal/jquery_ui": "^1.7", + "drupal/jquery_ui_menu": "^2.1" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.0", - "datestamp": "1670871461", + "version": "2.1.0", + "datestamp": "1717035046", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3625,27 +3822,27 @@ }, { "name": "drupal/jquery_ui_datepicker", - "version": "2.0.0", + "version": "2.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git", - "reference": "2.0.0" + "reference": "2.1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-2.0.0.zip", - "reference": "2.0.0", - "shasum": "ce40cf8ab400866bffda1ac3f7e4a5ac20bb3ae5" + "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-2.1.0.zip", + "reference": "2.1.0", + "shasum": "22e1cceeba22522cdd23f08ec345a4dfb2e8550f" }, "require": { - "drupal/core": "^9.2 || ^10", - "drupal/jquery_ui": "^1.6" + "drupal/core": "^9.2 || ^10 || 11", + "drupal/jquery_ui": "^1.7" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.0", - "datestamp": "1670871494", + "version": "2.1.0", + "datestamp": "1717094444", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3690,27 +3887,27 @@ }, { "name": "drupal/jquery_ui_menu", - "version": "2.0.0", + "version": "2.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/jquery_ui_menu.git", - "reference": "2.0.0" + "reference": "2.1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/jquery_ui_menu-2.0.0.zip", - "reference": "2.0.0", - "shasum": "5e1b56bf457669c7779a81784f49da63e3956854" + "url": "https://ftp.drupal.org/files/projects/jquery_ui_menu-2.1.0.zip", + "reference": "2.1.0", + "shasum": "9aa6958e52ea12c1cdedd7908c5aeb5309b8b4ea" }, "require": { - "drupal/core": "^9.2 || ^10", - "drupal/jquery_ui": "^1.6" + "drupal/core": "^9.2 || ^10 || ^11", + "drupal/jquery_ui": "^1.7" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.0", - "datestamp": "1670871546", + "version": "2.1.0", + "datestamp": "1717031358", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3755,27 +3952,27 @@ }, { "name": "drupal/jquery_ui_slider", - "version": "2.0.0", + "version": "2.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/jquery_ui_slider.git", - "reference": "2.0.0" + "reference": "2.1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-2.0.0.zip", - "reference": "2.0.0", - "shasum": "86b7d71e91013cffafb8021dbf8047745ebc5fd6" + "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-2.1.0.zip", + "reference": "2.1.0", + "shasum": "89e54ccf787ad3eb11fb2ca9e25ea4bfce3df5b1" }, "require": { - "drupal/core": "^9.2 || ^10", - "drupal/jquery_ui": "^1.6" + "drupal/core": "^9.2 || ^10 || ^11", + "drupal/jquery_ui": "^1.7" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.0", - "datestamp": "1670871571", + "version": "2.1.0", + "datestamp": "1717031321", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3808,28 +4005,28 @@ }, { "name": "drupal/jquery_ui_touch_punch", - "version": "1.1.0", + "version": "1.1.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git", - "reference": "1.1.0" + "reference": "1.1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.1.0.zip", - "reference": "1.1.0", - "shasum": "4b7e50a98246dfa6ef48e5b12c70277873902824" + "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.1.1.zip", + "reference": "1.1.1", + "shasum": "f16bc2ffa500131f43c84427ff213e753de9b6a6" }, "require": { - "drupal/core": "^8 || ^9 || ^10", + "drupal/core": "^9.2 || ^10 || ^11", "drupal/jquery_ui": "^1.0", "politsin/jquery-ui-touch-punch": "^1.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "1.1.0", - "datestamp": "1662744607", + "version": "1.1.1", + "datestamp": "1717663479", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4033,26 +4230,26 @@ }, { "name": "drupal/key", - "version": "1.17.0", + "version": "1.18.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/key.git", - "reference": "8.x-1.17" + "reference": "8.x-1.18" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/key-8.x-1.17.zip", - "reference": "8.x-1.17", - "shasum": "fa9f606d2ba0e20693e12040004e2ed31302ed03" + "url": "https://ftp.drupal.org/files/projects/key-8.x-1.18.zip", + "reference": "8.x-1.18", + "shasum": "5075295390be486ba9e372efff70f90fde764c40" }, "require": { - "drupal/core": ">=8.9 <11" + "drupal/core": ">=8.9 <12" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.17", - "datestamp": "1674343967", + "version": "8.x-1.18", + "datestamp": "1717376699", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4096,6 +4293,70 @@ "issues": "http://drupal.org/project/key" } }, + { + "name": "drupal/matomo", + "version": "1.23.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/matomo.git", + "reference": "8.x-1.23" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.23.zip", + "reference": "8.x-1.23", + "shasum": "c2dbf12878388c5859e64f1e74a9ca5110d1623f" + }, + "require": { + "drupal/core": "^9.0 || ^10" + }, + "conflict": { + "drupal/csp": "<1.12" + }, + "require-dev": { + "drupal/csp": "~1.12", + "drupal/php": "~1.1", + "drupal/token": "~1.9" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.23", + "datestamp": "1700936102", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "C-Logemann", + "homepage": "https://www.drupal.org/user/218368" + }, + { + "name": "Grimreaper", + "homepage": "https://www.drupal.org/user/2388214" + }, + { + "name": "hass", + "homepage": "https://www.drupal.org/user/85918" + }, + { + "name": "shelane", + "homepage": "https://www.drupal.org/user/2674989" + } + ], + "description": "Adds Matomo javascript tracking code to all your site's pages.", + "homepage": "https://www.drupal.org/project/matomo", + "support": { + "source": "https://git.drupalcode.org/project/matomo" + } + }, { "name": "drupal/migrate_plus", "version": "6.0.2", @@ -4630,20 +4891,20 @@ }, { "name": "drupal/search_api", - "version": "1.31.0", + "version": "1.34.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/search_api.git", - "reference": "8.x-1.31" + "reference": "8.x-1.34" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.31.zip", - "reference": "8.x-1.31", - "shasum": "ec8436744c34de2ede6370d4dd26875489e761bc" + "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.34.zip", + "reference": "8.x-1.34", + "shasum": "dd08166888f90adaf01cc1a759266097709efe7c" }, "require": { - "drupal/core": "^10.0" + "drupal/core": "^10.1 || ^11" }, "conflict": { "drupal/search_api_solr": "2.* || 3.0 || 3.1" @@ -4661,8 +4922,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.31", - "datestamp": "1700926323", + "version": "8.x-1.34", + "datestamp": "1714899074", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4702,24 +4963,24 @@ }, { "name": "drupal/search_api_solr", - "version": "4.3.2", + "version": "4.3.3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/search_api_solr.git", - "reference": "4.3.2" + "reference": "4.3.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/search_api_solr-4.3.2.zip", - "reference": "4.3.2", - "shasum": "ea15725d12aa9481e8f1650324d2585eec766f67" + "url": "https://ftp.drupal.org/files/projects/search_api_solr-4.3.3.zip", + "reference": "4.3.3", + "shasum": "10db6eb0f17899ca7f863df7664eff085ab78b78" }, "require": { "composer-runtime-api": ">=2.0", "composer/semver": "^1.0|^3.0", "consolidation/annotated-command": "^2.12|^4.1", "drupal/core": "^10.1 || ^11.0", - "drupal/search_api": "~1.30", + "drupal/search_api": "~1.34", "ext-dom": "*", "ext-json": "*", "ext-simplexml": "*", @@ -4751,8 +5012,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "4.3.2", - "datestamp": "1705573676", + "version": "4.3.3", + "datestamp": "1712757702", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4804,27 +5065,30 @@ }, { "name": "drupal/taxonomy_manager", - "version": "2.0.9", + "version": "2.0.11", "source": { "type": "git", "url": "https://git.drupalcode.org/project/taxonomy_manager.git", - "reference": "2.0.9" + "reference": "2.0.11" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/taxonomy_manager-2.0.9.zip", - "reference": "2.0.9", - "shasum": "c1956d809ba2149b294eb68fe2f06ada34f4cadc" + "url": "https://ftp.drupal.org/files/projects/taxonomy_manager-2.0.11.zip", + "reference": "2.0.11", + "shasum": "03d50c2702dcf1c2f744ad735ab2037adc422fb1" }, "require": { "drupal/core": "^9.3 || ^10", "drupal/jquery_ui": "^1.4" }, + "require-dev": { + "drupal/term_merge": "*" + }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.9", - "datestamp": "1691588453", + "version": "2.0.11", + "datestamp": "1715239473", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5011,17 +5275,17 @@ }, { "name": "drupal/token", - "version": "1.13.0", + "version": "1.14.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/token.git", - "reference": "8.x-1.13" + "reference": "8.x-1.14" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/token-8.x-1.13.zip", - "reference": "8.x-1.13", - "shasum": "f2a074b51726de3727c1d900237d6d471806a4d2" + "url": "https://ftp.drupal.org/files/projects/token-8.x-1.14.zip", + "reference": "8.x-1.14", + "shasum": "df3cae709fcc1a99ac1111ce67a0d6af56d287d7" }, "require": { "drupal/core": "^9.2 || ^10" @@ -5029,8 +5293,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.13", - "datestamp": "1697885927", + "version": "8.x-1.14", + "datestamp": "1713009399", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5270,16 +5534,16 @@ }, { "name": "drush/drush", - "version": "12.5.1", + "version": "12.5.2", "source": { "type": "git", "url": "https://github.com/drush-ops/drush.git", - "reference": "71fcea30a22e7336e17be18bb5945400b2c63fad" + "reference": "4aebed85dc818ff762f2e24a85b023d2a52050df" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drush-ops/drush/zipball/71fcea30a22e7336e17be18bb5945400b2c63fad", - "reference": "71fcea30a22e7336e17be18bb5945400b2c63fad", + "url": "https://api.github.com/repos/drush-ops/drush/zipball/4aebed85dc818ff762f2e24a85b023d2a52050df", + "reference": "4aebed85dc818ff762f2e24a85b023d2a52050df", "shasum": "" }, "require": { @@ -5402,7 +5666,7 @@ "issues": "https://github.com/drush-ops/drush/issues", "security": "https://github.com/drush-ops/drush/security/advisories", "slack": "https://drupal.slack.com/messages/C62H9CWQM", - "source": "https://github.com/drush-ops/drush/tree/12.5.1" + "source": "https://github.com/drush-ops/drush/tree/12.5.2" }, "funding": [ { @@ -5410,7 +5674,7 @@ "type": "github" } ], - "time": "2024-03-20T15:03:27+00:00" + "time": "2024-05-02T17:20:48+00:00" }, { "name": "easyrdf/easyrdf", @@ -5556,26 +5820,26 @@ }, { "name": "firebase/php-jwt", - "version": "v6.10.0", + "version": "v6.10.1", "source": { "type": "git", "url": "https://github.com/firebase/php-jwt.git", - "reference": "a49db6f0a5033aef5143295342f1c95521b075ff" + "reference": "500501c2ce893c824c801da135d02661199f60c5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/firebase/php-jwt/zipball/a49db6f0a5033aef5143295342f1c95521b075ff", - "reference": "a49db6f0a5033aef5143295342f1c95521b075ff", + "url": "https://api.github.com/repos/firebase/php-jwt/zipball/500501c2ce893c824c801da135d02661199f60c5", + "reference": "500501c2ce893c824c801da135d02661199f60c5", "shasum": "" }, "require": { - "php": "^7.4||^8.0" + "php": "^8.0" }, "require-dev": { - "guzzlehttp/guzzle": "^6.5||^7.4", + "guzzlehttp/guzzle": "^7.4", "phpspec/prophecy-phpunit": "^2.0", "phpunit/phpunit": "^9.5", - "psr/cache": "^1.0||^2.0", + "psr/cache": "^2.0||^3.0", "psr/http-client": "^1.0", "psr/http-factory": "^1.0" }, @@ -5613,9 +5877,9 @@ ], "support": { "issues": "https://github.com/firebase/php-jwt/issues", - "source": "https://github.com/firebase/php-jwt/tree/v6.10.0" + "source": "https://github.com/firebase/php-jwt/tree/v6.10.1" }, - "time": "2023-12-01T16:26:39+00:00" + "time": "2024-05-18T18:05:11+00:00" }, { "name": "grasmash/expander", @@ -5671,24 +5935,24 @@ }, { "name": "grasmash/yaml-cli", - "version": "3.1.0", + "version": "3.2.1", "source": { "type": "git", "url": "https://github.com/grasmash/yaml-cli.git", - "reference": "00f3fd775f6abbfacd44432f1999c3c3b02791f0" + "reference": "09a8860566958a1576cc54bbe910a03477e54971" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/grasmash/yaml-cli/zipball/00f3fd775f6abbfacd44432f1999c3c3b02791f0", - "reference": "00f3fd775f6abbfacd44432f1999c3c3b02791f0", + "url": "https://api.github.com/repos/grasmash/yaml-cli/zipball/09a8860566958a1576cc54bbe910a03477e54971", + "reference": "09a8860566958a1576cc54bbe910a03477e54971", "shasum": "" }, "require": { "dflydev/dot-access-data": "^3", "php": ">=8.0", - "symfony/console": "^6", - "symfony/filesystem": "^6", - "symfony/yaml": "^6" + "symfony/console": "^6 || ^7", + "symfony/filesystem": "^6 || ^7", + "symfony/yaml": "^6 || ^7" }, "require-dev": { "php-coveralls/php-coveralls": "^2", @@ -5721,9 +5985,9 @@ "description": "A command line tool for reading and manipulating yaml files.", "support": { "issues": "https://github.com/grasmash/yaml-cli/issues", - "source": "https://github.com/grasmash/yaml-cli/tree/3.1.0" + "source": "https://github.com/grasmash/yaml-cli/tree/3.2.1" }, - "time": "2022-05-09T20:22:34+00:00" + "time": "2024-04-23T02:10:57+00:00" }, { "name": "guzzlehttp/guzzle", @@ -6253,170 +6517,6 @@ }, "time": "2023-03-17T14:10:32+00:00" }, - { - "name": "islandora/islandora", - "version": "2.11.0", - "source": { - "type": "git", - "url": "https://github.com/Islandora/islandora.git", - "reference": "3065c87874b7da0440fff494d0e51c938b855fd7" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Islandora/islandora/zipball/3065c87874b7da0440fff494d0e51c938b855fd7", - "reference": "3065c87874b7da0440fff494d0e51c938b855fd7", - "shasum": "" - }, - "require": { - "drupal/context": "^4 || ^5@RC", - "drupal/ctools": "^3.8 || ^4", - "drupal/eva": "^3.0", - "drupal/file_replace": "^1.1", - "drupal/filehash": "^2", - "drupal/flysystem": "^2.0@alpha", - "drupal/jwt": "^1.1 || ^2", - "drupal/migrate_plus": "^5.1 || ^6", - "drupal/migrate_source_csv": "^3.4", - "drupal/prepopulate": "^2.2", - "drupal/search_api": "^1.8", - "drupal/token": "^1.3", - "islandora/chullo": "^2.0", - "islandora/fedora-entity-mapper": "^1.0", - "islandora/jsonld": "^2 || ^3", - "stomp-php/stomp-php": "4.* || ^5" - }, - "require-dev": { - "drupal/coder": "*", - "phpunit/phpunit": "^6", - "sebastian/phpcpd": "*", - "squizlabs/php_codesniffer": "^2.7.1" - }, - "suggest": { - "drupal/coi": "Some configuration fields work with Config Override Inspector.", - "drupal/transliterate_filenames": "Sanitizes filenames when they are uploaded so they don't break your repository." - }, - "type": "drupal-module", - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "Islandora Foundation", - "email": "community@islandora.ca", - "role": "Owner" - }, - { - "name": "Daniel Lamb", - "email": "dlamb@islandora.ca", - "role": "Maintainer" - } - ], - "description": "Core Islandora module", - "homepage": "https://github.com/Islandora/islandora", - "keywords": [ - "Islandora", - "drupal" - ], - "support": { - "issues": "https://github.com/Islandora/documentation/issues", - "source": "https://github.com/Islandora/islandora/tree/2.11.0" - }, - "time": "2023-12-29T17:47:29+00:00" - }, - { - "name": "islandora/islandora_mirador", - "version": "2.3.7", - "source": { - "type": "git", - "url": "https://github.com/Islandora/islandora_mirador.git", - "reference": "87d52483087730ccaf5659cdfdf0e330797d4902" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Islandora/islandora_mirador/zipball/87d52483087730ccaf5659cdfdf0e330797d4902", - "reference": "87d52483087730ccaf5659cdfdf0e330797d4902", - "shasum": "" - }, - "require": { - "drupal/islandora": "^2" - }, - "conflict": { - "drupal/core": "<=8", - "islandora/islandora_defaults": "<3" - }, - "type": "drupal-module", - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "description": "Islandora support for Mirador viewer", - "homepage": "https://github.com/Islandora/islandora_mirador", - "keywords": [ - "Islandora", - "drupal" - ], - "support": { - "issues": "https://github.com/Islandora/documentation/issues", - "source": "https://github.com/Islandora/islandora_mirador/tree/2.3.7" - }, - "time": "2024-03-13T13:53:18+00:00" - }, - { - "name": "islandora/jsonld", - "version": "3.0.1", - "source": { - "type": "git", - "url": "https://github.com/Islandora/jsonld.git", - "reference": "55800b6bde25b8ee6431e8bc36f7affcdae3f182" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Islandora/jsonld/zipball/55800b6bde25b8ee6431e8bc36f7affcdae3f182", - "reference": "55800b6bde25b8ee6431e8bc36f7affcdae3f182", - "shasum": "" - }, - "require": { - "drupal/core": "^10", - "drupal/hal": "^1||^2", - "drupal/rdf": "^2.1" - }, - "require-dev": { - "drupal/coder": "*", - "phpunit/phpunit": "^8", - "sebastian/phpcpd": "*", - "squizlabs/php_codesniffer": "^3" - }, - "type": "drupal-module", - "autoload": { - "psr-4": { - "Drupal\\jsonld\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "name": "Islandora Foundation", - "email": "community@islandora.ca", - "role": "Owner" - }, - { - "name": "Jared Whiklo", - "email": "jwhiklo@gmail.com", - "role": "Maintainer" - } - ], - "description": "JSON-LD serializer for Drupal", - "homepage": "https://github.com/Islandora/jsonld", - "support": { - "issues": "https://github.com/Islandora/documentation/issues", - "source": "https://github.com/Islandora/jsonld/tree/3.0.1" - }, - "time": "2023-07-04T13:25:18+00:00" - }, { "name": "islandora/views_nested_details", "version": "1.1.0", @@ -6587,40 +6687,39 @@ }, { "name": "league/csv", - "version": "9.15.0", + "version": "9.16.0", "source": { "type": "git", "url": "https://github.com/thephpleague/csv.git", - "reference": "fa7e2441c0bc9b2360f4314fd6c954f7ff40d435" + "reference": "998280c6c34bd67d8125fdc8b45bae28d761b440" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/csv/zipball/fa7e2441c0bc9b2360f4314fd6c954f7ff40d435", - "reference": "fa7e2441c0bc9b2360f4314fd6c954f7ff40d435", + "url": "https://api.github.com/repos/thephpleague/csv/zipball/998280c6c34bd67d8125fdc8b45bae28d761b440", + "reference": "998280c6c34bd67d8125fdc8b45bae28d761b440", "shasum": "" }, "require": { "ext-filter": "*", - "ext-json": "*", - "ext-mbstring": "*", "php": "^8.1.2" }, "require-dev": { - "doctrine/collections": "^2.1.4", + "doctrine/collections": "^2.2.2", "ext-dom": "*", "ext-xdebug": "*", - "friendsofphp/php-cs-fixer": "^v3.22.0", + "friendsofphp/php-cs-fixer": "^3.57.1", "phpbench/phpbench": "^1.2.15", - "phpstan/phpstan": "^1.10.57", - "phpstan/phpstan-deprecation-rules": "^1.1.4", - "phpstan/phpstan-phpunit": "^1.3.15", - "phpstan/phpstan-strict-rules": "^1.5.2", - "phpunit/phpunit": "^10.5.9", - "symfony/var-dumper": "^6.4.2" + "phpstan/phpstan": "^1.11.1", + "phpstan/phpstan-deprecation-rules": "^1.2.0", + "phpstan/phpstan-phpunit": "^1.4.0", + "phpstan/phpstan-strict-rules": "^1.6.0", + "phpunit/phpunit": "^10.5.16 || ^11.1.3", + "symfony/var-dumper": "^6.4.6 || ^7.0.7" }, "suggest": { "ext-dom": "Required to use the XMLConverter and the HTMLConverter classes", - "ext-iconv": "Needed to ease transcoding CSV using iconv stream filters" + "ext-iconv": "Needed to ease transcoding CSV using iconv stream filters", + "ext-mbstring": "Needed to ease transcoding CSV using mb stream filters" }, "type": "library", "extra": { @@ -6672,7 +6771,7 @@ "type": "github" } ], - "time": "2024-02-20T20:00:00+00:00" + "time": "2024-05-24T11:04:54+00:00" }, { "name": "league/flysystem", @@ -7288,16 +7387,16 @@ }, { "name": "nesbot/carbon", - "version": "2.72.3", + "version": "2.72.5", "source": { "type": "git", "url": "https://github.com/briannesbitt/Carbon.git", - "reference": "0c6fd108360c562f6e4fd1dedb8233b423e91c83" + "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/0c6fd108360c562f6e4fd1dedb8233b423e91c83", - "reference": "0c6fd108360c562f6e4fd1dedb8233b423e91c83", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed", + "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed", "shasum": "" }, "require": { @@ -7331,8 +7430,8 @@ "type": "library", "extra": { "branch-alias": { - "dev-3.x": "3.x-dev", - "dev-master": "2.x-dev" + "dev-master": "3.x-dev", + "dev-2.x": "2.x-dev" }, "laravel": { "providers": [ @@ -7391,7 +7490,7 @@ "type": "tidelift" } ], - "time": "2024-01-25T10:35:09+00:00" + "time": "2024-06-03T19:18:41+00:00" }, { "name": "nikic/php-parser", @@ -8356,16 +8455,16 @@ }, { "name": "psy/psysh", - "version": "v0.12.2", + "version": "v0.12.4", "source": { "type": "git", "url": "https://github.com/bobthecow/psysh.git", - "reference": "9185c66c2165bbf4d71de78a69dccf4974f9538d" + "reference": "2fd717afa05341b4f8152547f142cd2f130f6818" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9185c66c2165bbf4d71de78a69dccf4974f9538d", - "reference": "9185c66c2165bbf4d71de78a69dccf4974f9538d", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/2fd717afa05341b4f8152547f142cd2f130f6818", + "reference": "2fd717afa05341b4f8152547f142cd2f130f6818", "shasum": "" }, "require": { @@ -8429,9 +8528,9 @@ ], "support": { "issues": "https://github.com/bobthecow/psysh/issues", - "source": "https://github.com/bobthecow/psysh/tree/v0.12.2" + "source": "https://github.com/bobthecow/psysh/tree/v0.12.4" }, - "time": "2024-03-17T01:53:00+00:00" + "time": "2024-06-10T01:18:23+00:00" }, { "name": "ralouphie/getallheaders", @@ -8811,16 +8910,16 @@ }, { "name": "symfony/console", - "version": "v6.4.4", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "0d9e4eb5ad413075624378f474c4167ea202de78" + "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/0d9e4eb5ad413075624378f474c4167ea202de78", - "reference": "0d9e4eb5ad413075624378f474c4167ea202de78", + "url": "https://api.github.com/repos/symfony/console/zipball/be5854cee0e8c7b110f00d695d11debdfa1a2a91", + "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91", "shasum": "" }, "require": { @@ -8885,7 +8984,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v6.4.4" + "source": "https://github.com/symfony/console/tree/v6.4.8" }, "funding": [ { @@ -8901,20 +9000,20 @@ "type": "tidelift" } ], - "time": "2024-02-22T20:27:10+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/dependency-injection", - "version": "v6.4.4", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/dependency-injection.git", - "reference": "6236e5e843cb763e9d0f74245678b994afea5363" + "reference": "d3b618176e8c3a9e5772151c51eba0c52a0c771c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/6236e5e843cb763e9d0f74245678b994afea5363", - "reference": "6236e5e843cb763e9d0f74245678b994afea5363", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/d3b618176e8c3a9e5772151c51eba0c52a0c771c", + "reference": "d3b618176e8c3a9e5772151c51eba0c52a0c771c", "shasum": "" }, "require": { @@ -8966,7 +9065,7 @@ "description": "Allows you to standardize and centralize the way objects are constructed in your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/dependency-injection/tree/v6.4.4" + "source": "https://github.com/symfony/dependency-injection/tree/v6.4.8" }, "funding": [ { @@ -8982,7 +9081,7 @@ "type": "tidelift" } ], - "time": "2024-02-22T20:27:10+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/deprecation-contracts", @@ -9053,16 +9152,16 @@ }, { "name": "symfony/error-handler", - "version": "v6.4.4", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/error-handler.git", - "reference": "c725219bdf2afc59423c32793d5019d2a904e13a" + "reference": "ef836152bf13472dc5fb5b08b0c0c4cfeddc0fcc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/c725219bdf2afc59423c32793d5019d2a904e13a", - "reference": "c725219bdf2afc59423c32793d5019d2a904e13a", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/ef836152bf13472dc5fb5b08b0c0c4cfeddc0fcc", + "reference": "ef836152bf13472dc5fb5b08b0c0c4cfeddc0fcc", "shasum": "" }, "require": { @@ -9108,7 +9207,7 @@ "description": "Provides tools to manage errors and ease debugging PHP code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/error-handler/tree/v6.4.4" + "source": "https://github.com/symfony/error-handler/tree/v6.4.8" }, "funding": [ { @@ -9124,20 +9223,20 @@ "type": "tidelift" } ], - "time": "2024-02-22T20:27:10+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v6.4.3", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "ae9d3a6f3003a6caf56acd7466d8d52378d44fef" + "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/ae9d3a6f3003a6caf56acd7466d8d52378d44fef", - "reference": "ae9d3a6f3003a6caf56acd7466d8d52378d44fef", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8d7507f02b06e06815e56bb39aa0128e3806208b", + "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b", "shasum": "" }, "require": { @@ -9188,7 +9287,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.4.3" + "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.8" }, "funding": [ { @@ -9204,20 +9303,20 @@ "type": "tidelift" } ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/event-dispatcher-contracts", - "version": "v3.4.0", + "version": "v3.4.2", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher-contracts.git", - "reference": "a76aed96a42d2b521153fb382d418e30d18b59df" + "reference": "4e64b49bf370ade88e567de29465762e316e4224" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df", - "reference": "a76aed96a42d2b521153fb382d418e30d18b59df", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/4e64b49bf370ade88e567de29465762e316e4224", + "reference": "4e64b49bf370ade88e567de29465762e316e4224", "shasum": "" }, "require": { @@ -9264,7 +9363,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.4.0" + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.4.2" }, "funding": [ { @@ -9280,20 +9379,20 @@ "type": "tidelift" } ], - "time": "2023-05-23T14:45:45+00:00" + "time": "2024-01-23T14:51:35+00:00" }, { "name": "symfony/filesystem", - "version": "v6.4.3", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb" + "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb", - "reference": "7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/4d37529150e7081c51b3c5d5718c55a04a9503f3", + "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3", "shasum": "" }, "require": { @@ -9301,6 +9400,9 @@ "symfony/polyfill-ctype": "~1.8", "symfony/polyfill-mbstring": "~1.8" }, + "require-dev": { + "symfony/process": "^5.4|^6.4|^7.0" + }, "type": "library", "autoload": { "psr-4": { @@ -9327,7 +9429,7 @@ "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/filesystem/tree/v6.4.3" + "source": "https://github.com/symfony/filesystem/tree/v6.4.8" }, "funding": [ { @@ -9343,20 +9445,20 @@ "type": "tidelift" } ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/finder", - "version": "v6.4.0", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "11d736e97f116ac375a81f96e662911a34cd50ce" + "reference": "3ef977a43883215d560a2cecb82ec8e62131471c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/11d736e97f116ac375a81f96e662911a34cd50ce", - "reference": "11d736e97f116ac375a81f96e662911a34cd50ce", + "url": "https://api.github.com/repos/symfony/finder/zipball/3ef977a43883215d560a2cecb82ec8e62131471c", + "reference": "3ef977a43883215d560a2cecb82ec8e62131471c", "shasum": "" }, "require": { @@ -9391,7 +9493,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v6.4.0" + "source": "https://github.com/symfony/finder/tree/v6.4.8" }, "funding": [ { @@ -9407,20 +9509,20 @@ "type": "tidelift" } ], - "time": "2023-10-31T17:30:12+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/http-foundation", - "version": "v6.4.4", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "ebc713bc6e6f4b53f46539fc158be85dfcd77304" + "reference": "27de8cc95e11db7a50b027e71caaab9024545947" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ebc713bc6e6f4b53f46539fc158be85dfcd77304", - "reference": "ebc713bc6e6f4b53f46539fc158be85dfcd77304", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/27de8cc95e11db7a50b027e71caaab9024545947", + "reference": "27de8cc95e11db7a50b027e71caaab9024545947", "shasum": "" }, "require": { @@ -9468,7 +9570,7 @@ "description": "Defines an object-oriented layer for the HTTP specification", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-foundation/tree/v6.4.4" + "source": "https://github.com/symfony/http-foundation/tree/v6.4.8" }, "funding": [ { @@ -9484,20 +9586,20 @@ "type": "tidelift" } ], - "time": "2024-02-08T15:01:18+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/http-kernel", - "version": "v6.4.5", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "f6947cb939d8efee137797382cb4db1af653ef75" + "reference": "6c519aa3f32adcfd1d1f18d923f6b227d9acf3c1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f6947cb939d8efee137797382cb4db1af653ef75", - "reference": "f6947cb939d8efee137797382cb4db1af653ef75", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/6c519aa3f32adcfd1d1f18d923f6b227d9acf3c1", + "reference": "6c519aa3f32adcfd1d1f18d923f6b227d9acf3c1", "shasum": "" }, "require": { @@ -9552,6 +9654,7 @@ "symfony/translation-contracts": "^2.5|^3", "symfony/uid": "^5.4|^6.0|^7.0", "symfony/validator": "^6.4|^7.0", + "symfony/var-dumper": "^5.4|^6.4|^7.0", "symfony/var-exporter": "^6.2|^7.0", "twig/twig": "^2.13|^3.0.4" }, @@ -9581,7 +9684,7 @@ "description": "Provides a structured process for converting a Request into a Response", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-kernel/tree/v6.4.5" + "source": "https://github.com/symfony/http-kernel/tree/v6.4.8" }, "funding": [ { @@ -9597,20 +9700,20 @@ "type": "tidelift" } ], - "time": "2024-03-04T21:00:47+00:00" + "time": "2024-06-02T16:06:25+00:00" }, { "name": "symfony/mailer", - "version": "v6.4.4", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/mailer.git", - "reference": "791c5d31a8204cf3db0c66faab70282307f4376b" + "reference": "76326421d44c07f7824b19487cfbf87870b37efc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mailer/zipball/791c5d31a8204cf3db0c66faab70282307f4376b", - "reference": "791c5d31a8204cf3db0c66faab70282307f4376b", + "url": "https://api.github.com/repos/symfony/mailer/zipball/76326421d44c07f7824b19487cfbf87870b37efc", + "reference": "76326421d44c07f7824b19487cfbf87870b37efc", "shasum": "" }, "require": { @@ -9661,7 +9764,7 @@ "description": "Helps sending emails", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/mailer/tree/v6.4.4" + "source": "https://github.com/symfony/mailer/tree/v6.4.8" }, "funding": [ { @@ -9677,20 +9780,20 @@ "type": "tidelift" } ], - "time": "2024-02-03T21:33:47+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/mime", - "version": "v6.4.3", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/mime.git", - "reference": "5017e0a9398c77090b7694be46f20eb796262a34" + "reference": "618597ab8b78ac86d1c75a9d0b35540cda074f33" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/5017e0a9398c77090b7694be46f20eb796262a34", - "reference": "5017e0a9398c77090b7694be46f20eb796262a34", + "url": "https://api.github.com/repos/symfony/mime/zipball/618597ab8b78ac86d1c75a9d0b35540cda074f33", + "reference": "618597ab8b78ac86d1c75a9d0b35540cda074f33", "shasum": "" }, "require": { @@ -9711,6 +9814,7 @@ "league/html-to-markdown": "^5.0", "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", "symfony/dependency-injection": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.4|^7.0", "symfony/property-access": "^5.4|^6.0|^7.0", "symfony/property-info": "^5.4|^6.0|^7.0", "symfony/serializer": "^6.3.2|^7.0" @@ -9745,7 +9849,7 @@ "mime-type" ], "support": { - "source": "https://github.com/symfony/mime/tree/v6.4.3" + "source": "https://github.com/symfony/mime/tree/v6.4.8" }, "funding": [ { @@ -9761,7 +9865,7 @@ "type": "tidelift" } ], - "time": "2024-01-30T08:32:12+00:00" + "time": "2024-06-01T07:50:16+00:00" }, { "name": "symfony/polyfill-ctype", @@ -10574,16 +10678,16 @@ }, { "name": "symfony/process", - "version": "v6.4.4", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "710e27879e9be3395de2b98da3f52a946039f297" + "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/710e27879e9be3395de2b98da3f52a946039f297", - "reference": "710e27879e9be3395de2b98da3f52a946039f297", + "url": "https://api.github.com/repos/symfony/process/zipball/8d92dd79149f29e89ee0f480254db595f6a6a2c5", + "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5", "shasum": "" }, "require": { @@ -10615,7 +10719,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v6.4.4" + "source": "https://github.com/symfony/process/tree/v6.4.8" }, "funding": [ { @@ -10631,20 +10735,20 @@ "type": "tidelift" } ], - "time": "2024-02-20T12:31:00+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/psr-http-message-bridge", - "version": "v6.4.3", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/psr-http-message-bridge.git", - "reference": "49cfb0223ec64379f7154214dcc1f7c46f3c7a47" + "reference": "23a162bd446b93948a2c2f6909d80ad06195be10" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/49cfb0223ec64379f7154214dcc1f7c46f3c7a47", - "reference": "49cfb0223ec64379f7154214dcc1f7c46f3c7a47", + "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/23a162bd446b93948a2c2f6909d80ad06195be10", + "reference": "23a162bd446b93948a2c2f6909d80ad06195be10", "shasum": "" }, "require": { @@ -10698,7 +10802,7 @@ "psr-7" ], "support": { - "source": "https://github.com/symfony/psr-http-message-bridge/tree/v6.4.3" + "source": "https://github.com/symfony/psr-http-message-bridge/tree/v6.4.8" }, "funding": [ { @@ -10714,20 +10818,20 @@ "type": "tidelift" } ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2024-05-31T14:51:39+00:00" }, { "name": "symfony/routing", - "version": "v6.4.5", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "7fe30068e207d9c31c0138501ab40358eb2d49a4" + "reference": "8a40d0f9b01f0fbb80885d3ce0ad6714fb603a58" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/7fe30068e207d9c31c0138501ab40358eb2d49a4", - "reference": "7fe30068e207d9c31c0138501ab40358eb2d49a4", + "url": "https://api.github.com/repos/symfony/routing/zipball/8a40d0f9b01f0fbb80885d3ce0ad6714fb603a58", + "reference": "8a40d0f9b01f0fbb80885d3ce0ad6714fb603a58", "shasum": "" }, "require": { @@ -10781,7 +10885,7 @@ "url" ], "support": { - "source": "https://github.com/symfony/routing/tree/v6.4.5" + "source": "https://github.com/symfony/routing/tree/v6.4.8" }, "funding": [ { @@ -10797,20 +10901,20 @@ "type": "tidelift" } ], - "time": "2024-02-27T12:33:30+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/serializer", - "version": "v6.4.4", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/serializer.git", - "reference": "88da7f8fe03c5f4c2a69da907f1de03fab2e6872" + "reference": "d6eda9966a3e5d1823c1cedf41bf98f8ed969d7c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/serializer/zipball/88da7f8fe03c5f4c2a69da907f1de03fab2e6872", - "reference": "88da7f8fe03c5f4c2a69da907f1de03fab2e6872", + "url": "https://api.github.com/repos/symfony/serializer/zipball/d6eda9966a3e5d1823c1cedf41bf98f8ed969d7c", + "reference": "d6eda9966a3e5d1823c1cedf41bf98f8ed969d7c", "shasum": "" }, "require": { @@ -10879,7 +10983,7 @@ "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/serializer/tree/v6.4.4" + "source": "https://github.com/symfony/serializer/tree/v6.4.8" }, "funding": [ { @@ -10895,20 +10999,20 @@ "type": "tidelift" } ], - "time": "2024-02-22T20:27:10+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/service-contracts", - "version": "v3.4.1", + "version": "v3.4.2", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0" + "reference": "11bbf19a0fb7b36345861e85c5768844c552906e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/fe07cbc8d837f60caf7018068e350cc5163681a0", - "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/11bbf19a0fb7b36345861e85c5768844c552906e", + "reference": "11bbf19a0fb7b36345861e85c5768844c552906e", "shasum": "" }, "require": { @@ -10961,7 +11065,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/service-contracts/tree/v3.4.1" + "source": "https://github.com/symfony/service-contracts/tree/v3.4.2" }, "funding": [ { @@ -10977,20 +11081,20 @@ "type": "tidelift" } ], - "time": "2023-12-26T14:02:43+00:00" + "time": "2023-12-19T21:51:00+00:00" }, { "name": "symfony/string", - "version": "v6.4.4", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "4e465a95bdc32f49cf4c7f07f751b843bbd6dcd9" + "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/4e465a95bdc32f49cf4c7f07f751b843bbd6dcd9", - "reference": "4e465a95bdc32f49cf4c7f07f751b843bbd6dcd9", + "url": "https://api.github.com/repos/symfony/string/zipball/a147c0f826c4a1f3afb763ab8e009e37c877a44d", + "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d", "shasum": "" }, "require": { @@ -11047,7 +11151,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v6.4.4" + "source": "https://github.com/symfony/string/tree/v6.4.8" }, "funding": [ { @@ -11063,20 +11167,20 @@ "type": "tidelift" } ], - "time": "2024-02-01T13:16:41+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/translation", - "version": "v6.4.4", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "bce6a5a78e94566641b2594d17e48b0da3184a8e" + "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/bce6a5a78e94566641b2594d17e48b0da3184a8e", - "reference": "bce6a5a78e94566641b2594d17e48b0da3184a8e", + "url": "https://api.github.com/repos/symfony/translation/zipball/a002933b13989fc4bd0b58e04bf7eec5210e438a", + "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a", "shasum": "" }, "require": { @@ -11142,7 +11246,7 @@ "description": "Provides tools to internationalize your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/translation/tree/v6.4.4" + "source": "https://github.com/symfony/translation/tree/v6.4.8" }, "funding": [ { @@ -11158,20 +11262,20 @@ "type": "tidelift" } ], - "time": "2024-02-20T13:16:58+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/translation-contracts", - "version": "v3.4.1", + "version": "v3.4.2", "source": { "type": "git", "url": "https://github.com/symfony/translation-contracts.git", - "reference": "06450585bf65e978026bda220cdebca3f867fde7" + "reference": "43810bdb2ddb5400e5c5e778e27b210a0ca83b6b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/06450585bf65e978026bda220cdebca3f867fde7", - "reference": "06450585bf65e978026bda220cdebca3f867fde7", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/43810bdb2ddb5400e5c5e778e27b210a0ca83b6b", + "reference": "43810bdb2ddb5400e5c5e778e27b210a0ca83b6b", "shasum": "" }, "require": { @@ -11220,7 +11324,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/translation-contracts/tree/v3.4.1" + "source": "https://github.com/symfony/translation-contracts/tree/v3.4.2" }, "funding": [ { @@ -11236,20 +11340,20 @@ "type": "tidelift" } ], - "time": "2023-12-26T14:02:43+00:00" + "time": "2024-01-23T14:51:35+00:00" }, { "name": "symfony/validator", - "version": "v6.4.4", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/validator.git", - "reference": "1cf92edc9a94d16275efef949fa6748d11cc8f47" + "reference": "dab2781371d54c86f6b25623ab16abb2dde2870c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/validator/zipball/1cf92edc9a94d16275efef949fa6748d11cc8f47", - "reference": "1cf92edc9a94d16275efef949fa6748d11cc8f47", + "url": "https://api.github.com/repos/symfony/validator/zipball/dab2781371d54c86f6b25623ab16abb2dde2870c", + "reference": "dab2781371d54c86f6b25623ab16abb2dde2870c", "shasum": "" }, "require": { @@ -11296,7 +11400,8 @@ "Symfony\\Component\\Validator\\": "" }, "exclude-from-classmap": [ - "/Tests/" + "/Tests/", + "/Resources/bin/" ] }, "notification-url": "https://packagist.org/downloads/", @@ -11316,7 +11421,7 @@ "description": "Provides tools to validate values", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/validator/tree/v6.4.4" + "source": "https://github.com/symfony/validator/tree/v6.4.8" }, "funding": [ { @@ -11332,20 +11437,20 @@ "type": "tidelift" } ], - "time": "2024-02-22T20:27:10+00:00" + "time": "2024-06-02T15:48:50+00:00" }, { "name": "symfony/var-dumper", - "version": "v6.4.4", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "b439823f04c98b84d4366c79507e9da6230944b1" + "reference": "ad23ca4312395f0a8a8633c831ef4c4ee542ed25" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/b439823f04c98b84d4366c79507e9da6230944b1", - "reference": "b439823f04c98b84d4366c79507e9da6230944b1", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/ad23ca4312395f0a8a8633c831ef4c4ee542ed25", + "reference": "ad23ca4312395f0a8a8633c831ef4c4ee542ed25", "shasum": "" }, "require": { @@ -11401,7 +11506,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v6.4.4" + "source": "https://github.com/symfony/var-dumper/tree/v6.4.8" }, "funding": [ { @@ -11417,20 +11522,20 @@ "type": "tidelift" } ], - "time": "2024-02-15T11:23:52+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/var-exporter", - "version": "v6.4.4", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/var-exporter.git", - "reference": "0bd342e24aef49fc82a21bd4eedd3e665d177e5b" + "reference": "792ca836f99b340f2e9ca9497c7953948c49a504" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-exporter/zipball/0bd342e24aef49fc82a21bd4eedd3e665d177e5b", - "reference": "0bd342e24aef49fc82a21bd4eedd3e665d177e5b", + "url": "https://api.github.com/repos/symfony/var-exporter/zipball/792ca836f99b340f2e9ca9497c7953948c49a504", + "reference": "792ca836f99b340f2e9ca9497c7953948c49a504", "shasum": "" }, "require": { @@ -11438,6 +11543,8 @@ "symfony/deprecation-contracts": "^2.5|^3" }, "require-dev": { + "symfony/property-access": "^6.4|^7.0", + "symfony/serializer": "^6.4|^7.0", "symfony/var-dumper": "^5.4|^6.0|^7.0" }, "type": "library", @@ -11476,7 +11583,7 @@ "serialize" ], "support": { - "source": "https://github.com/symfony/var-exporter/tree/v6.4.4" + "source": "https://github.com/symfony/var-exporter/tree/v6.4.8" }, "funding": [ { @@ -11492,20 +11599,20 @@ "type": "tidelift" } ], - "time": "2024-02-26T08:37:45+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "symfony/yaml", - "version": "v6.4.3", + "version": "v6.4.8", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "d75715985f0f94f978e3a8fa42533e10db921b90" + "reference": "52903de178d542850f6f341ba92995d3d63e60c9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/d75715985f0f94f978e3a8fa42533e10db921b90", - "reference": "d75715985f0f94f978e3a8fa42533e10db921b90", + "url": "https://api.github.com/repos/symfony/yaml/zipball/52903de178d542850f6f341ba92995d3d63e60c9", + "reference": "52903de178d542850f6f341ba92995d3d63e60c9", "shasum": "" }, "require": { @@ -11548,7 +11655,7 @@ "description": "Loads and dumps YAML files", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/yaml/tree/v6.4.3" + "source": "https://github.com/symfony/yaml/tree/v6.4.8" }, "funding": [ { @@ -11564,7 +11671,7 @@ "type": "tidelift" } ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2024-05-31T14:49:08+00:00" }, { "name": "twig/twig", @@ -11729,30 +11836,31 @@ }, { "name": "webflo/drupal-finder", - "version": "1.2.2", + "version": "1.3.0", "source": { "type": "git", "url": "https://github.com/webflo/drupal-finder.git", - "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee" + "reference": "1fa65484857c7a2e4dcf0d9e0b47198fe0681b8a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee", - "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee", + "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/1fa65484857c7a2e4dcf0d9e0b47198fe0681b8a", + "reference": "1fa65484857c7a2e4dcf0d9e0b47198fe0681b8a", "shasum": "" }, "require": { - "ext-json": "*" + "composer-runtime-api": "^2.2", + "php": ">=8.1" }, "require-dev": { "mikey179/vfsstream": "^1.6", - "phpunit/phpunit": "^4.8" + "phpunit/phpunit": "^10.4" }, "type": "library", "autoload": { - "classmap": [ - "src/DrupalFinder.php" - ] + "psr-4": { + "DrupalFinder\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -11764,27 +11872,27 @@ "email": "florian@webflo.org" } ], - "description": "Helper class to locate a Drupal installation from a given path.", + "description": "Helper class to locate a Drupal installation.", "support": { "issues": "https://github.com/webflo/drupal-finder/issues", - "source": "https://github.com/webflo/drupal-finder/tree/1.2.2" + "source": "https://github.com/webflo/drupal-finder/tree/1.3.0" }, - "time": "2020-10-27T09:42:17+00:00" + "time": "2024-05-08T21:22:39+00:00" } ], "packages-dev": [ { "name": "doctrine/common", - "version": "3.4.3", + "version": "3.4.4", "source": { "type": "git", "url": "https://github.com/doctrine/common.git", - "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced" + "reference": "0aad4b7ab7ce8c6602dfbb1e1a24581275fb9d1a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/common/zipball/8b5e5650391f851ed58910b3e3d48a71062eeced", - "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced", + "url": "https://api.github.com/repos/doctrine/common/zipball/0aad4b7ab7ce8c6602dfbb1e1a24581275fb9d1a", + "reference": "0aad4b7ab7ce8c6602dfbb1e1a24581275fb9d1a", "shasum": "" }, "require": { @@ -11846,7 +11954,7 @@ ], "support": { "issues": "https://github.com/doctrine/common/issues", - "source": "https://github.com/doctrine/common/tree/3.4.3" + "source": "https://github.com/doctrine/common/tree/3.4.4" }, "funding": [ { @@ -11862,20 +11970,20 @@ "type": "tidelift" } ], - "time": "2022-10-09T11:47:59+00:00" + "time": "2024-04-16T13:35:33+00:00" }, { "name": "doctrine/event-manager", - "version": "2.0.0", + "version": "2.0.1", "source": { "type": "git", "url": "https://github.com/doctrine/event-manager.git", - "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32" + "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32", - "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32", + "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e", + "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e", "shasum": "" }, "require": { @@ -11885,10 +11993,10 @@ "doctrine/common": "<2.9" }, "require-dev": { - "doctrine/coding-standard": "^10", + "doctrine/coding-standard": "^12", "phpstan/phpstan": "^1.8.8", - "phpunit/phpunit": "^9.5", - "vimeo/psalm": "^4.28" + "phpunit/phpunit": "^10.5", + "vimeo/psalm": "^5.24" }, "type": "library", "autoload": { @@ -11937,7 +12045,7 @@ ], "support": { "issues": "https://github.com/doctrine/event-manager/issues", - "source": "https://github.com/doctrine/event-manager/tree/2.0.0" + "source": "https://github.com/doctrine/event-manager/tree/2.0.1" }, "funding": [ { @@ -11953,7 +12061,7 @@ "type": "tidelift" } ], - "time": "2022-10-12T20:59:15+00:00" + "time": "2024-05-22T20:47:39+00:00" }, { "name": "doctrine/persistence", @@ -12055,17 +12163,17 @@ }, { "name": "drupal/config_inspector", - "version": "2.1.8", + "version": "2.1.9", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_inspector.git", - "reference": "2.1.8" + "reference": "2.1.9" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_inspector-2.1.8.zip", - "reference": "2.1.8", - "shasum": "bd9f82f9387f806c582650261190a89e9fe87155" + "url": "https://ftp.drupal.org/files/projects/config_inspector-2.1.9.zip", + "reference": "2.1.9", + "shasum": "e5df3444f9e9aec82ff136b66a6707196ef1f7eb" }, "require": { "drupal/core": "^9.2 || ^10 || ^11" @@ -12073,8 +12181,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.1.8", - "datestamp": "1704878359", + "version": "2.1.9", + "datestamp": "1714470278", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -12267,5 +12375,5 @@ "php": "^7.4 || ^8" }, "platform-dev": [], - "plugin-api-version": "2.3.0" + "plugin-api-version": "2.6.0" } From 7c1d2f92250f53bd3dae54425ae67b475d741e7f Mon Sep 17 00:00:00 2001 From: ajstanley Date: Wed, 12 Jun 2024 20:12:14 -0300 Subject: [PATCH 6/6] removed obsolete patch --- composer.json | 5 ----- 1 file changed, 5 deletions(-) diff --git a/composer.json b/composer.json index ceeba52d2..0f84b6f04 100755 --- a/composer.json +++ b/composer.json @@ -93,11 +93,6 @@ "mode": "append", "default": "web/core/assets/scaffold/files/default.settings.php", "append": "assets/patches/default_settings.txt" - }, - "[web-root]/core/themes/olivero/olivero.theme": { - "mode": "append", - "default": "web/core/themes/olivero/olivero.theme", - "append": "assets/patches/olivero.theme" } } },