From 7d49d712693652489e20e82be383c3d2eaf175a1 Mon Sep 17 00:00:00 2001 From: Tim Martin Date: Mon, 19 Dec 2022 10:50:32 -0700 Subject: [PATCH 01/10] re-include startup config import, etc. --- rootfs/etc/cont-init.d/991-custom-setup.sh | 185 +++++++++++++++++++++ rootfs/etc/cont-init.d/999-startup.sh | 6 + 2 files changed, 191 insertions(+) create mode 100644 rootfs/etc/cont-init.d/991-custom-setup.sh diff --git a/rootfs/etc/cont-init.d/991-custom-setup.sh b/rootfs/etc/cont-init.d/991-custom-setup.sh new file mode 100644 index 000000000..982863b39 --- /dev/null +++ b/rootfs/etc/cont-init.d/991-custom-setup.sh @@ -0,0 +1,185 @@ +#!/usr/bin/with-contenv bash +set -x + +if [ -z "${DRUPAL_IGNORE_STARTUP_ERRORS}" ] || [ "${DRUPAL_IGNORE_STARTUP_ERRORS}" != "true" ]; then + set -e +fi + +echo "Executing Islandora setup with the following environment:" +env # cannot pipe through sort, because some vars are multi-line +echo + +source /etc/islandora/utilities.sh + +function execute_sql_file_local { + local driver=$(drupal_site_env "${site}" "DB_DRIVER") + local host=$(drupal_site_env "${site}" "DB_HOST") + local port=$(drupal_site_env "${site}" "DB_PORT") + # must be root for the table count query to execute + local user=root + local password=${MYSQL_ROOT_PASSWORD} + + /usr/local/bin/execute-sql-file.sh \ + --driver "${driver}" \ + --host "${host}" \ + --port "${port}" \ + --user "${user}" \ + --password "${password}" \ + "${@}" +} + +function mysql_count_local { + echo "SELECT COUNT(DISTINCT table_name) +FROM information_schema.columns +WHERE table_schema = '$(drupal_site_env "${site}" "DB_NAME")';" > /tmp/moo + execute_sql_file_local /tmp/moo -- -N 2>/dev/null +} + +# Check the number of tables to determine if it has already been installed. +function installed_local { + local count=$(mysql_count_local) + return $count +} + +function enable_maint_mode { + set_maint_mode $1 1 +} + +function disable_maint_mode { + set_maint_mode $1 0 +} + +function set_maint_mode { + local site_url=$1 + local mode=$2 + drush -y -l ${site_url} state:set system.maintenance_mode ${mode} --input-format=integer + drush -y -l ${site_url} cache:rebuild +} + +function perform_config_import { + local site_url=$1 + drush -y -l ${site_url} config:import +} + +function configure_islandora_module_local { + local site="${1}"; shift + local site_url=$(drupal_site_env "${site}" "SITE_URL") + local broker_host=$(drupal_site_env "${site}" "BROKER_HOST") + local broker_port=$(drupal_site_env "${site}" "BROKER_PORT") + local broker_url="tcp://${broker_host}:${broker_port}" + local gemini_host=$(drupal_site_env "${site}" "GEMINI_HOST") + local gemini_port=$(drupal_site_env "${site}" "GEMINI_PORT") + local gemini_url="http://${gemini_host}:${gemini_port}" + + drush -l "${site_url}" -y config:set --input-format=yaml islandora.settings broker_url "${broker_url}" + drush -l "${site_url}" -y config:set --input-format=yaml islandora.settings gemini_url "${gemini_url}" +} + +function configure_islandora_default_module_local { + local site="${1}"; shift + local site_url=$(drupal_site_env "${site}" "SITE_URL") + local host=$(drupal_site_env "${site}" "SOLR_HOST") + local port=$(drupal_site_env "${site}" "SOLR_PORT") + + drush -l "${site_url}" -y config:set search_api.server.default_solr_server backend_config.connector_config.host "${host}" + drush -l "${site_url}" -y config:set search_api.server.default_solr_server backend_config.connector_config.port "${port}" +} + +function configure_openseadragon_local { + local site="${1}"; shift + local site_url=$(drupal_site_env "${site}" "SITE_URL") + local cantaloupe_url=$(drupal_site_env "${site}" "CANTALOUPE_URL") + + drush -l "${site_url}" -y config-set --input-format=yaml openseadragon.settings iiif_server "${cantaloupe_url}" + drush -l "${site_url}" -y config-set --input-format=yaml islandora_iiif.settings iiif_server "${cantaloupe_url}" +} + +function configure_mail { + local site="${1}"; shift + local site_url=$(drupal_site_env "${site}" "SITE_URL") + + drush -l "${site_url}" -y config:set system.site mail "${DRUPAL_SMTP_FROM_ADDRESS}" + + drush -l "${site_url}" -y config:delete contact.form.collection_contact recipients + drush -l "${site_url}" -y config:set contact.form.collection_contact recipients.0 "${DRUPAL_DEFAULT_EMAIL}" + + drush -l "${site_url}" -y config:delete contact.form.repository_item_contact recipients + drush -l "${site_url}" -y config:set contact.form.repository_item_contact recipients.0 "${DRUPAL_DEFAULT_EMAIL}" + + drush -l "${site_url}" -y config:delete contact.form.feedback recipients + drush -l "${site_url}" -y config:set contact.form.feedback recipients.0 "${DRUPAL_DEFAULT_EMAIL}" +} + +function perform_runtime_config { + local site="${1}" + + # Ensure that settings which depend on environment variables like service urls are set dynamically on startup. + configure_islandora_module_local "${site}" + configure_islandora_default_module_local "${site}" + configure_openseadragon_local "${site}" + configure_mail "${site}" + + # Settings like the hash / flystem can be affected by environment variables at runtime. + update_settings_php "${site}" +} + +function main { + local site="default" + local site_url=$(drupal_site_env "${site}" "SITE_URL") + + # Records whether or not we are starting from an empty database; this is a proxy for determining if Drupal is + # already installed or not. If installed_custom returns 0, then Drupal is already installed. If >0, Drupal is + # not installed. + + local db_count=0 + $(installed_local) || db_count=$? + + # IDC: Removed composer install (should be done during image build phase) + + if [ -z "${db_count}" ] || [ "${db_count}" -lt 1 ] ; then + printf "\n\nERROR: Drupal is not installed, no pre-existing state found\n\n" + exit 1 + fi + + # Reset stale cache data, which can cause exceptions if modules have been updated and are + # run against an obsolete cache. + drush -l "${site_url}" cr + + # Enter maintenance mode, run any database hooks from updated modules, + # import the configuration, and perform any runtime configuration affected by + # environment variables. + + # Go into maintenance mode + enable_maint_mode ${site_url} + + # Run drush updatedb + drush -l "${site_url}" -y updatedb + + # If a site already exists, and we are not in the "dev" environment, perform a config import. + # If a site was newly installed by install_site above, the configuration import has already occurred as a + # part of the install process. + # + # This can't be done in dev, because a local developer's active config may be overwritten by the import. + # But in promoting from dev to stage, or stage to prod, we will want the config to be overwritten. + if [ -n "${DRUPAL_INSTANCE}" ] && [ "${DRUPAL_INSTANCE}" != "dev" ] ; + then + perform_config_import "${site_url}" + fi + + # Perform runtime configuration if it is not a dev env. + if [ -n "${DRUPAL_INSTANCE}" ] && [ "${DRUPAL_INSTANCE}" != "dev" ] ; + then + perform_runtime_config "${site}" + fi + + # Rename the default drupal admin user + drush sql-query "UPDATE users_field_data SET name='${DRUPAL_DEFAULT_ACCOUNT_NAME}' WHERE uid=1;" --database default; + + # Set the admin password based on env vars + drush -l "${site_url}" user-password "${DRUPAL_DEFAULT_ACCOUNT_NAME}" "${DRUPAL_DEFAULT_ACCOUNT_PASSWORD}"; + + # Disable maintenance mode + disable_maint_mode "${site_url}" +} + +main diff --git a/rootfs/etc/cont-init.d/999-startup.sh b/rootfs/etc/cont-init.d/999-startup.sh index 8f7411018..ae9d48a92 100644 --- a/rootfs/etc/cont-init.d/999-startup.sh +++ b/rootfs/etc/cont-init.d/999-startup.sh @@ -21,6 +21,8 @@ for d in $DRUPAL_DIR/web/sites/default/files/tmp /tmp/private ; do $CHOWN -R nginx:nginx "$d" done +#drush -y state:set system.maintenance_mode 1 --input-format=integer + # This is a workaround for a bug. drush cdel core.extension module.search_api_solr_defaults || true drush sql-query "DELETE FROM key_value WHERE collection='system.schema' AND name='search_api_solr_defaults';" || true @@ -46,6 +48,10 @@ if [ ! -f web/sites/default/files/generic.png ] ; then cp "web/core/modules/media/images/icons/generic.png" "web/sites/default/files/generic.png" fi +#drush -y config:import +#drush -y cache:rebuild +#drush -y state:set system.maintenance_mode 0 --input-format=integer + echo "" echo "" echo " -------------------------------------------------------------------------- " From 0cec8b7c9a8ebe89392abb51a4b7564e5fe1f3e3 Mon Sep 17 00:00:00 2001 From: DonRichards Date: Mon, 19 Dec 2022 14:52:05 -0500 Subject: [PATCH 02/10] Add chmod +x --- rootfs/etc/cont-init.d/991-custom-setup.sh | 0 rootfs/etc/cont-init.d/999-startup.sh | 0 2 files changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 rootfs/etc/cont-init.d/991-custom-setup.sh mode change 100644 => 100755 rootfs/etc/cont-init.d/999-startup.sh diff --git a/rootfs/etc/cont-init.d/991-custom-setup.sh b/rootfs/etc/cont-init.d/991-custom-setup.sh old mode 100644 new mode 100755 diff --git a/rootfs/etc/cont-init.d/999-startup.sh b/rootfs/etc/cont-init.d/999-startup.sh old mode 100644 new mode 100755 From 566441c0ba03bd40ba5c0547bd4641171efadad0 Mon Sep 17 00:00:00 2001 From: Don Richards Date: Mon, 19 Dec 2022 16:37:00 -0500 Subject: [PATCH 03/10] Update theme bug --- codebase/composer.lock | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/codebase/composer.lock b/codebase/composer.lock index 307551276..b0b9fba7d 100644 --- a/codebase/composer.lock +++ b/codebase/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": "f4d2410121b9ff99bc852a498aa5e460", + "content-hash": "11967d756e2ec4022ebb548faffa0c6e", "packages": [ { "name": "alchemy/zippy", @@ -8297,12 +8297,12 @@ "source": { "type": "git", "url": "https://github.com/jhu-idc/idc-ui-theme.git", - "reference": "1d583a018f7cdf17e989ac672d0fe8cc7d844429" + "reference": "28554807e807cd29b15472fa799234e9c54bf4d1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/jhu-idc/idc-ui-theme/zipball/1d583a018f7cdf17e989ac672d0fe8cc7d844429", - "reference": "1d583a018f7cdf17e989ac672d0fe8cc7d844429", + "url": "https://api.github.com/repos/jhu-idc/idc-ui-theme/zipball/28554807e807cd29b15472fa799234e9c54bf4d1", + "reference": "28554807e807cd29b15472fa799234e9c54bf4d1", "shasum": "" }, "default-branch": true, @@ -8312,7 +8312,7 @@ "source": "https://github.com/jhu-idc/idc-ui-theme/tree/main", "issues": "https://github.com/jhu-idc/idc-ui-theme/issues" }, - "time": "2022-12-14T18:10:29+00:00" + "time": "2022-12-19T21:24:21+00:00" }, { "name": "jhu-idc/idc_defaults", From df6f4c186c8e3f30215b57966fd463e488f99eab Mon Sep 17 00:00:00 2001 From: Tim Martin Date: Mon, 19 Dec 2022 15:38:59 -0700 Subject: [PATCH 04/10] reverting accidental .env commits --- .env | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.env b/.env index a022ecc31..f0fb1fd96 100644 --- a/.env +++ b/.env @@ -1,10 +1,9 @@ - # Environment variables defined in this file apply to both the Makefile and to # docker-compose.yml # # Due to restrictions in the `env-file` format we cannot specify multi-line # values for environment variables. For this reason the environment -# variables are set on service definitions in the docker-compose.activemq.yml docker-compose.alpaca.yml docker-compose.blazegraph.yml docker-compose.cantaloupe.yml docker-compose.crayfish.mariadb.yml docker-compose.crayfish.postgresql.yml docker-compose.crayfish.yml docker-compose.crayfits.yml docker-compose.custom.yml docker-compose.demo.yml docker-compose.drupal-dev.yml docker-compose.drupal.mariadb.yml docker-compose.drupal.postgresql.yml docker-compose.drupal.yml docker-compose.env.yml docker-compose.etcd.yml docker-compose.fcrepo.mariadb.yml docker-compose.fcrepo.postgresql.yml docker-compose.fcrepo.yml docker-compose.idc-crayfish.yml docker-compose.idc-snapshot.yml docker-compose.local.yml docker-compose.mariadb.yml docker-compose.matomo.yml docker-compose.minio.yml docker-compose.postgresql.yml docker-compose.saml.yml docker-compose.sample.env.yml docker-compose.solr.yml docker-compose.static.yml docker-compose.testcafe.yml docker-compose.traefik.yml docker-compose.watchtower.yml files, +# variables are set on service definitions in the docker-compose.*.yml files, # rather than defined in `env-file` files. # Determines which docker-compose file(s) will be used for the `drupal` service. @@ -13,7 +12,7 @@ # # If this value is changed, docker-compose.yml must be updated in order for it # to take effect; e.g. 'make dev-up' -ENVIRONMENT=static +ENVIRONMENT=local REQUIRED_SERIVCES=activemq alpaca cantaloupe idc-crayfish drupal mariadb solr idc-snapshot testcafe minio ############################################################################### @@ -105,12 +104,12 @@ DRUPAL_DEFAULT_S3_USE_CUSTOMHOST=true DRUPAL_DEFAULT_S3_USE_PATH_STYLE_ENDPOINT=true DRUPAL_DEFAULT_S3_PRIVATE_PATH=pr -# Drupal's Trusted Host List - This should be a comma separated list of strings, if you require more than one. +# Drupal's Trusted Host List - This should be a comma separated list of strings, if you require more than one. # (If you put DRUPAL prefix on it, things will start to fail as the drupal container will put any DRUPAL_* env vars # into the fastcgi params file and the container will no longer start with this one there (the $ is probably the issue). # https://github.com/jhu-idc/idc-isle-buildkit/blob/main/drupal/rootfs/etc/cont-init.d/97-setup-drupal-environment-variables.sh) -#TRUSTED_HOST_LIST=^.+.traefik.me$ -TRUSTED_HOST_LIST=^.+.traefik.me$$,^.+.library.jhu.edu$$ +#TRUSTED_HOST_LIST=^.+\.traefik\.me$ +TRUSTED_HOST_LIST=^.+\.traefik\.me$$,^.+\.library\.jhu\.edu$$ # Google Tag Manager DRUPAL_GTM_CONTAINER_ID= @@ -158,4 +157,5 @@ TEST_OPERATION_TIMEOUT_MS=180000 MIGRATION_ASSETS_IMAGE_TAG=9519543.1637091427 ALPACA_HOMERUS_HTTP_SOCKET_TIMEOUT_MS=7200000 DRUPAL_JWT_EXPIRY_INTERVAL='+4 hour' -DRUPAL_STATIC_TAG=static +ACTIVEMQ_WEB_PORT=8161 + From 5c2298026d2676fdb93a74fd32bdc95032390db5 Mon Sep 17 00:00:00 2001 From: Tim Martin Date: Tue, 20 Dec 2022 09:45:56 -0700 Subject: [PATCH 05/10] avoid adding duplicate DRUPAL_STATIC_TAG lines to .env file --- idc.Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/idc.Makefile b/idc.Makefile index 4064d26b9..3492ca88e 100644 --- a/idc.Makefile +++ b/idc.Makefile @@ -225,14 +225,14 @@ static-docker-compose.yml: static-drupal-image ENV_FILE=.env if [ "$(env)" != "" ] ; then echo inherited environment ; ENV_FILE=$(env); fi; \ echo '' > .env_static && \ - while read line; do \ + grep -v ^DRUPAL_STATIC_TAG= $${ENV_FILE} | while read line; do \ if echo $$line | grep -q "ENVIRONMENT" ; then \ echo "ENVIRONMENT=static" >> .env_static ; \ else \ echo $$line >> .env_static ; \ fi \ - done < $${ENV_FILE} && \ - echo setting DRUPAL_STATIC_TAG && \ + done && \ + echo setting DRUPAL_STATIC_TAG && \ echo DRUPAL_STATIC_TAG=static >> .env_static mv ${ENV_FILE} .env.bak mv .env_static ${ENV_FILE} From d5c6d23d531513aa62ac378856501eca83de47f4 Mon Sep 17 00:00:00 2001 From: Tim Martin Date: Tue, 20 Dec 2022 09:46:10 -0700 Subject: [PATCH 06/10] checkpoint chullo fix --- codebase/composer.json | 21 +- codebase/composer.lock | 3529 ++++++++++++++++++++++------------------ 2 files changed, 1963 insertions(+), 1587 deletions(-) diff --git a/codebase/composer.json b/codebase/composer.json index d0bef3f12..a29d08eb5 100644 --- a/codebase/composer.json +++ b/codebase/composer.json @@ -19,6 +19,10 @@ "type": "vcs", "url": "git@github.com:Islandora/islandora.git" }, + { + "type": "vcs", + "url": "git@github.com:Islandora/chullo.git" + }, { "type": "vcs", "url": "git@github.com:jhu-idc/islandora_defaults.git" @@ -96,18 +100,6 @@ } } }, - { - "type": "package", - "package": { - "name": "islandora/chullo", - "version": "dev-dev", - "source": { - "type": "git", - "url": "https://github.com/Islandora/chullo.git", - "reference": "d563d5e48ef9b15dcf45029277bbc2f6eeef2454" - } - } - }, { "type": "package", "package": { @@ -168,6 +160,7 @@ "imagesloaded/imagesloaded": "^4.1", "islandora-rdm/islandora_fits": "dev-8.x-1.x", "islandora/carapace": "dev-8.x-3.x", + "islandora/chullo": "1.2.0 as dev-dev", "jhu-idc/idc-ui-theme": "dev-main", "jhu-idc/idc_defaults": "dev-main", "jhu-idc/idc_export": "dev-main", @@ -267,10 +260,6 @@ "simplesamlphp/simplesamlphp": { "SimpleSAMLphp config": "patches/simplesaml_config.patch" }, - "drupal/title_length": { - "Node title length 1: Apply user config override": "patches/node_title_length_fix-hook-install.patch", - "Node title length 2: Taxonomy name length": "patches/node_title_length_termNameCharLength-3041979-8.patch" - }, "islandora/islandora": { "Routing definitions": "patches/islandora.routing.yml.patch", "Media Source Serivce": "patches/mediasourceservice.patch", diff --git a/codebase/composer.lock b/codebase/composer.lock index b0b9fba7d..4dca3f2d2 100644 --- a/codebase/composer.lock +++ b/codebase/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": "11967d756e2ec4022ebb548faffa0c6e", + "content-hash": "5e01051506b118394eeaaaeeeb0abaf8", "packages": [ { "name": "alchemy/zippy", @@ -130,27 +130,78 @@ }, "time": "2019-12-24T22:41:47+00:00" }, + { + "name": "aws/aws-crt-php", + "version": "v1.0.2", + "source": { + "type": "git", + "url": "https://github.com/awslabs/aws-crt-php.git", + "reference": "3942776a8c99209908ee0b287746263725685732" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/3942776a8c99209908ee0b287746263725685732", + "reference": "3942776a8c99209908ee0b287746263725685732", + "shasum": "" + }, + "require": { + "php": ">=5.5" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35|^5.4.3" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "AWS SDK Common Runtime Team", + "email": "aws-sdk-common-runtime@amazon.com" + } + ], + "description": "AWS Common Runtime for PHP", + "homepage": "http://aws.amazon.com/sdkforphp", + "keywords": [ + "amazon", + "aws", + "crt", + "sdk" + ], + "support": { + "issues": "https://github.com/awslabs/aws-crt-php/issues", + "source": "https://github.com/awslabs/aws-crt-php/tree/v1.0.2" + }, + "time": "2021-09-03T22:57:30+00:00" + }, { "name": "aws/aws-sdk-php", - "version": "3.191.4", + "version": "3.254.0", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "63f015b49346cda8e4ac57cc33174744cc116654" + "reference": "9e07cddf9be6ab241c241344ca2e9cf33e32a22e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/63f015b49346cda8e4ac57cc33174744cc116654", - "reference": "63f015b49346cda8e4ac57cc33174744cc116654", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/9e07cddf9be6ab241c241344ca2e9cf33e32a22e", + "reference": "9e07cddf9be6ab241c241344ca2e9cf33e32a22e", "shasum": "" }, "require": { + "aws/aws-crt-php": "^1.0.2", "ext-json": "*", "ext-pcre": "*", "ext-simplexml": "*", - "guzzlehttp/guzzle": "^5.3.3|^6.2.1|^7.0", + "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5", "guzzlehttp/promises": "^1.4.0", - "guzzlehttp/psr7": "^1.7.0", + "guzzlehttp/psr7": "^1.8.5 || ^2.3", "mtdowling/jmespath.php": "^2.6", "php": ">=5.5" }, @@ -158,6 +209,8 @@ "andrewsville/php-token-reflection": "^1.4", "aws/aws-php-sns-message-validator": "~1.0", "behat/behat": "~3.0", + "composer/composer": "^1.10.22", + "dms/phpunit-arraysubset-asserts": "^0.4.0", "doctrine/cache": "~1.4", "ext-dom": "*", "ext-openssl": "*", @@ -165,10 +218,11 @@ "ext-sockets": "*", "nette/neon": "^2.3", "paragonie/random_compat": ">= 2", - "phpunit/phpunit": "^4.8.35|^5.4.3", + "phpunit/phpunit": "^4.8.35 || ^5.6.3 || ^9.5", "psr/cache": "^1.0", "psr/simple-cache": "^1.0", - "sebastian/comparator": "^1.2.3" + "sebastian/comparator": "^1.2.3 || ^4.0", + "yoast/phpunit-polyfills": "^1.0" }, "suggest": { "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications", @@ -216,9 +270,9 @@ "support": { "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80", "issues": "https://github.com/aws/aws-sdk-php/issues", - "source": "https://github.com/aws/aws-sdk-php/tree/3.191.4" + "source": "https://github.com/aws/aws-sdk-php/tree/3.254.0" }, - "time": "2021-08-25T18:15:26+00:00" + "time": "2022-12-19T19:23:23+00:00" }, { "name": "chi-teck/drupal-code-generator", @@ -294,16 +348,16 @@ }, { "name": "composer/installers", - "version": "v1.11.0", + "version": "v1.12.0", "source": { "type": "git", "url": "https://github.com/composer/installers.git", - "reference": "ae03311f45dfe194412081526be2e003960df74b" + "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/installers/zipball/ae03311f45dfe194412081526be2e003960df74b", - "reference": "ae03311f45dfe194412081526be2e003960df74b", + "url": "https://api.github.com/repos/composer/installers/zipball/d20a64ed3c94748397ff5973488761b22f6d3f19", + "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19", "shasum": "" }, "require": { @@ -402,6 +456,7 @@ "modx", "moodle", "osclass", + "pantheon", "phpbb", "piwik", "ppi", @@ -424,7 +479,7 @@ ], "support": { "issues": "https://github.com/composer/installers/issues", - "source": "https://github.com/composer/installers/tree/v1.11.0" + "source": "https://github.com/composer/installers/tree/v1.12.0" }, "funding": [ { @@ -440,7 +495,7 @@ "type": "tidelift" } ], - "time": "2021-04-28T06:42:17+00:00" + "time": "2021-09-13T08:19:44+00:00" }, { "name": "composer/semver", @@ -525,28 +580,29 @@ }, { "name": "consolidation/annotated-command", - "version": "4.2.4", + "version": "4.7.1", "source": { "type": "git", "url": "https://github.com/consolidation/annotated-command.git", - "reference": "ec297e05cb86557671c2d6cbb1bebba6c7ae2c60" + "reference": "fd263e3e9341d29758025b1a9b2878e3247525be" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/ec297e05cb86557671c2d6cbb1bebba6c7ae2c60", - "reference": "ec297e05cb86557671c2d6cbb1bebba6c7ae2c60", + "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/fd263e3e9341d29758025b1a9b2878e3247525be", + "reference": "fd263e3e9341d29758025b1a9b2878e3247525be", "shasum": "" }, "require": { "consolidation/output-formatters": "^4.1.1", "php": ">=7.1.3", - "psr/log": "^1|^2", - "symfony/console": "^4.4.8|~5.1.0", - "symfony/event-dispatcher": "^4.4.8|^5", - "symfony/finder": "^4.4.8|^5" + "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" }, "require-dev": { - "phpunit/phpunit": ">=7.5.20", + "composer-runtime-api": "^2.0", + "phpunit/phpunit": "^7.5.20 || ^8 || ^9", "squizlabs/php_codesniffer": "^3", "yoast/phpunit-polyfills": "^0.2.0" }, @@ -574,9 +630,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.2.4" + "source": "https://github.com/consolidation/annotated-command/tree/4.7.1" }, - "time": "2020-12-10T16:56:39+00:00" + "time": "2022-12-06T22:57:25+00:00" }, { "name": "consolidation/config", @@ -735,22 +791,22 @@ }, { "name": "consolidation/log", - "version": "2.0.2", + "version": "2.1.1", "source": { "type": "git", "url": "https://github.com/consolidation/log.git", - "reference": "82a2aaaa621a7b976e50a745a8d249d5085ee2b1" + "reference": "3ad08dc57e8aff9400111bad36beb0ed387fe6a9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/log/zipball/82a2aaaa621a7b976e50a745a8d249d5085ee2b1", - "reference": "82a2aaaa621a7b976e50a745a8d249d5085ee2b1", + "url": "https://api.github.com/repos/consolidation/log/zipball/3ad08dc57e8aff9400111bad36beb0ed387fe6a9", + "reference": "3ad08dc57e8aff9400111bad36beb0ed387fe6a9", "shasum": "" }, "require": { "php": ">=7.1.3", - "psr/log": "^1.0", - "symfony/console": "^4|^5" + "psr/log": "^1 || ^2", + "symfony/console": "^4 || ^5 || ^6" }, "require-dev": { "phpunit/phpunit": ">=7.5.20", @@ -781,36 +837,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/2.0.2" + "source": "https://github.com/consolidation/log/tree/2.1.1" }, - "time": "2020-12-10T16:26:23+00:00" + "time": "2022-02-24T04:27:32+00:00" }, { "name": "consolidation/output-formatters", - "version": "4.1.2", + "version": "4.2.3", "source": { "type": "git", "url": "https://github.com/consolidation/output-formatters.git", - "reference": "5821e6ae076bf690058a4de6c94dce97398a69c9" + "reference": "cbb50cc86775f14972003f797b61e232788bee1f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/5821e6ae076bf690058a4de6c94dce97398a69c9", - "reference": "5821e6ae076bf690058a4de6c94dce97398a69c9", + "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/cbb50cc86775f14972003f797b61e232788bee1f", + "reference": "cbb50cc86775f14972003f797b61e232788bee1f", "shasum": "" }, "require": { - "dflydev/dot-access-data": "^1.1.0", + "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3", "php": ">=7.1.3", - "symfony/console": "^4|^5", - "symfony/finder": "^4|^5" + "symfony/console": "^4|^5|^6", + "symfony/finder": "^4|^5|^6" }, "require-dev": { "php-coveralls/php-coveralls": "^2.4.2", "phpunit/phpunit": ">=7", "squizlabs/php_codesniffer": "^3", - "symfony/var-dumper": "^4", - "symfony/yaml": "^4", + "symfony/var-dumper": "^4|^5|^6", + "symfony/yaml": "^4|^5|^6", "yoast/phpunit-polyfills": "^0.2.0" }, "suggest": { @@ -840,57 +896,55 @@ "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.1.2" + "source": "https://github.com/consolidation/output-formatters/tree/4.2.3" }, - "time": "2020-12-12T19:04:59+00:00" + "time": "2022-10-17T04:01:40+00:00" }, { "name": "consolidation/robo", - "version": "2.2.2", + "version": "3.0.11", "source": { "type": "git", - "url": "https://github.com/consolidation/Robo.git", - "reference": "b365df174d9cfb0f5814e4f3275a1c558b17bc4c" + "url": "https://github.com/consolidation/robo.git", + "reference": "820fa0f164f77887e268b7dbfb2283416c7334c1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/Robo/zipball/b365df174d9cfb0f5814e4f3275a1c558b17bc4c", - "reference": "b365df174d9cfb0f5814e4f3275a1c558b17bc4c", + "url": "https://api.github.com/repos/consolidation/robo/zipball/820fa0f164f77887e268b7dbfb2283416c7334c1", + "reference": "820fa0f164f77887e268b7dbfb2283416c7334c1", "shasum": "" }, "require": { - "consolidation/annotated-command": "^4.2.1", - "consolidation/config": "^1.2.1|^2", - "consolidation/log": "^1.1.1|^2.0.1", - "consolidation/output-formatters": "^4.1.1", - "consolidation/self-update": "^1.2", - "league/container": "^2.4.1", + "consolidation/annotated-command": "^4.3", + "consolidation/config": "^1.2.1 || ^2.0.1", + "consolidation/log": "^1.1.1 || ^2.0.2", + "consolidation/output-formatters": "^4.1.2", + "consolidation/self-update": "^2.0", + "league/container": "^3.3.1 || ^4.0", "php": ">=7.1.3", - "symfony/console": "^4.4.11|^5", - "symfony/event-dispatcher": "^4.4.11|^5", - "symfony/filesystem": "^4.4.11|^5", - "symfony/finder": "^4.4.11|^5", - "symfony/process": "^4.4.11|^5", - "symfony/yaml": "^4.0 || ^5.0" + "symfony/console": "^4.4.19 || ^5 || ^6", + "symfony/event-dispatcher": "^4.4.19 || ^5 || ^6", + "symfony/filesystem": "^4.4.9 || ^5 || ^6", + "symfony/finder": "^4.4.9 || ^5 || ^6", + "symfony/process": "^4.4.9 || ^5 || ^6", + "symfony/yaml": "^4.4 || ^5 || ^6" }, "conflict": { "codegyre/robo": "*" }, "require-dev": { - "g1a/composer-test-scenarios": "^3", "natxet/cssmin": "3.0.4", "patchwork/jsqueeze": "^2", "pear/archive_tar": "^1.4.4", - "php-coveralls/php-coveralls": "^2.2", - "phpdocumentor/reflection-docblock": "^4.3.2", - "phpunit/phpunit": "^6.5.14", - "squizlabs/php_codesniffer": "^3" + "phpunit/phpunit": "^7.5.20 || ^8", + "squizlabs/php_codesniffer": "^3.6", + "yoast/phpunit-polyfills": "^0.2.0" }, "suggest": { - "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch", "natxet/cssmin": "For minifying CSS files in taskMinify", "patchwork/jsqueeze": "For minifying JS files in taskMinify", - "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively." + "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.", + "totten/lurkerlite": "For monitoring filesystem changes in taskWatch" }, "bin": [ "robo" @@ -940,29 +994,30 @@ ], "description": "Modern task runner", "support": { - "issues": "https://github.com/consolidation/Robo/issues", - "source": "https://github.com/consolidation/Robo/tree/2.2.2" + "issues": "https://github.com/consolidation/robo/issues", + "source": "https://github.com/consolidation/robo/tree/3.0.11" }, - "time": "2020-12-18T22:09:18+00:00" + "time": "2022-12-07T15:18:26+00:00" }, { "name": "consolidation/self-update", - "version": "1.2.0", + "version": "2.0.5", "source": { "type": "git", "url": "https://github.com/consolidation/self-update.git", - "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4" + "reference": "8a64bdd8daf5faa8e85f56534dd99caf928164b3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/self-update/zipball/dba6b2c0708f20fa3ba8008a2353b637578849b4", - "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4", + "url": "https://api.github.com/repos/consolidation/self-update/zipball/8a64bdd8daf5faa8e85f56534dd99caf928164b3", + "reference": "8a64bdd8daf5faa8e85f56534dd99caf928164b3", "shasum": "" }, "require": { + "composer/semver": "^3.2", "php": ">=5.5.0", - "symfony/console": "^2.8|^3|^4|^5", - "symfony/filesystem": "^2.5|^3|^4|^5" + "symfony/console": "^2.8 || ^3 || ^4 || ^5 || ^6", + "symfony/filesystem": "^2.5 || ^3 || ^4 || ^5 || ^6" }, "bin": [ "scripts/release" @@ -970,7 +1025,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.x-dev" + "dev-main": "2.x-dev" } }, "autoload": { @@ -995,28 +1050,30 @@ "description": "Provides a self:update command for Symfony Console applications.", "support": { "issues": "https://github.com/consolidation/self-update/issues", - "source": "https://github.com/consolidation/self-update/tree/1.2.0" + "source": "https://github.com/consolidation/self-update/tree/2.0.5" }, - "time": "2020-04-13T02:49:20+00:00" + "time": "2022-02-09T22:44:24+00:00" }, { "name": "consolidation/site-alias", - "version": "3.1.0", + "version": "3.1.7", "source": { "type": "git", "url": "https://github.com/consolidation/site-alias.git", - "reference": "9ed3c590be9fcf9fea69c73456c2fd4b27f5204c" + "reference": "3b6519592c7e8557423f935806cd73adf69ed6c7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/site-alias/zipball/9ed3c590be9fcf9fea69c73456c2fd4b27f5204c", - "reference": "9ed3c590be9fcf9fea69c73456c2fd4b27f5204c", + "url": "https://api.github.com/repos/consolidation/site-alias/zipball/3b6519592c7e8557423f935806cd73adf69ed6c7", + "reference": "3b6519592c7e8557423f935806cd73adf69ed6c7", "shasum": "" }, "require": { - "consolidation/config": "^1.2.1|^2", + "consolidation/config": "^1.2.1 || ^2", "php": ">=5.5.0", - "symfony/finder": "~2.3|^3|^4.4|^5" + "symfony/filesystem": "^4.4 || ^5.4 || ^6", + "symfony/finder": "~2.3 || ^3 || ^4.4 || ^5 || ^6", + "webmozart/path-util": "^2.3" }, "require-dev": { "php-coveralls/php-coveralls": "^2.4.2", @@ -1053,33 +1110,33 @@ "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/3.1.0" + "source": "https://github.com/consolidation/site-alias/tree/3.1.7" }, - "time": "2021-02-20T20:03:10+00:00" + "time": "2022-10-15T01:21:09+00:00" }, { "name": "consolidation/site-process", - "version": "4.1.0", + "version": "4.2.1", "source": { "type": "git", "url": "https://github.com/consolidation/site-process.git", - "reference": "ef57711d7049f7606ce936ded16ad93f1ad7f02c" + "reference": "ee3bf69001694b2117cc2f96c2ef70d8d45f1234" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/site-process/zipball/ef57711d7049f7606ce936ded16ad93f1ad7f02c", - "reference": "ef57711d7049f7606ce936ded16ad93f1ad7f02c", + "url": "https://api.github.com/repos/consolidation/site-process/zipball/ee3bf69001694b2117cc2f96c2ef70d8d45f1234", + "reference": "ee3bf69001694b2117cc2f96c2ef70d8d45f1234", "shasum": "" }, "require": { - "consolidation/config": "^1.2.1|^2", - "consolidation/site-alias": "^3", + "consolidation/config": "^1.2.1 || ^2", + "consolidation/site-alias": "^3 || ^4", "php": ">=7.1.3", - "symfony/console": "^2.8.52|^3|^4.4|^5", - "symfony/process": "^4.3.4" + "symfony/console": "^2.8.52 || ^3 || ^4.4 || ^5", + "symfony/process": "^4.3.4 || ^5" }, "require-dev": { - "phpunit/phpunit": "^7.5.20|^8.5.14", + "phpunit/phpunit": "^7.5.20 || ^8.5.14", "squizlabs/php_codesniffer": "^3", "yoast/phpunit-polyfills": "^0.2.0" }, @@ -1111,58 +1168,22 @@ "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/4.1.0" - }, - "time": "2021-02-21T02:53:33+00:00" - }, - { - "name": "container-interop/container-interop", - "version": "1.2.0", - "source": { - "type": "git", - "url": "https://github.com/container-interop/container-interop.git", - "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8", - "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8", - "shasum": "" - }, - "require": { - "psr/container": "^1.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Interop\\Container\\": "src/Interop/Container/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "description": "Promoting the interoperability of container objects (DIC, SL, etc.)", - "homepage": "https://github.com/container-interop/container-interop", - "support": { - "issues": "https://github.com/container-interop/container-interop/issues", - "source": "https://github.com/container-interop/container-interop/tree/master" + "source": "https://github.com/consolidation/site-process/tree/4.2.1" }, - "abandoned": "psr/container", - "time": "2017-02-14T19:40:03+00:00" + "time": "2022-10-18T13:19:35+00:00" }, { "name": "cweagans/composer-patches", - "version": "1.7.1", + "version": "1.7.2", "source": { "type": "git", "url": "https://github.com/cweagans/composer-patches.git", - "reference": "9888dcc74993c030b75f3dd548bb5e20cdbd740c" + "reference": "e9969cfc0796e6dea9b4e52f77f18e1065212871" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/9888dcc74993c030b75f3dd548bb5e20cdbd740c", - "reference": "9888dcc74993c030b75f3dd548bb5e20cdbd740c", + "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e9969cfc0796e6dea9b4e52f77f18e1065212871", + "reference": "e9969cfc0796e6dea9b4e52f77f18e1065212871", "shasum": "" }, "require": { @@ -1195,9 +1216,9 @@ "description": "Provides a way to patch Composer packages.", "support": { "issues": "https://github.com/cweagans/composer-patches/issues", - "source": "https://github.com/cweagans/composer-patches/tree/1.7.1" + "source": "https://github.com/cweagans/composer-patches/tree/1.7.2" }, - "time": "2021-06-08T15:12:46+00:00" + "time": "2022-01-25T19:21:20+00:00" }, { "name": "dflydev/dot-access-configuration", @@ -1328,16 +1349,16 @@ }, { "name": "dflydev/placeholder-resolver", - "version": "v1.0.2", + "version": "v1.0.3", "source": { "type": "git", "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git", - "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356" + "reference": "d0161b4be1e15838327b01b21d0149f382d69906" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356", - "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356", + "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/d0161b4be1e15838327b01b21d0149f382d69906", + "reference": "d0161b4be1e15838327b01b21d0149f382d69906", "shasum": "" }, "require": { @@ -1378,9 +1399,9 @@ ], "support": { "issues": "https://github.com/dflydev/dflydev-placeholder-resolver/issues", - "source": "https://github.com/dflydev/dflydev-placeholder-resolver/tree/v1.0.2" + "source": "https://github.com/dflydev/dflydev-placeholder-resolver/tree/v1.0.3" }, - "time": "2012-10-28T21:08:28+00:00" + "time": "2021-12-03T16:48:58+00:00" }, { "name": "doctrine/annotations", @@ -1727,34 +1748,35 @@ }, { "name": "doctrine/dbal", - "version": "2.13.2", + "version": "2.13.9", "source": { "type": "git", "url": "https://github.com/doctrine/dbal.git", - "reference": "8dd39d2ead4409ce652fd4f02621060f009ea5e4" + "reference": "c480849ca3ad6706a39c970cdfe6888fa8a058b8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/dbal/zipball/8dd39d2ead4409ce652fd4f02621060f009ea5e4", - "reference": "8dd39d2ead4409ce652fd4f02621060f009ea5e4", + "url": "https://api.github.com/repos/doctrine/dbal/zipball/c480849ca3ad6706a39c970cdfe6888fa8a058b8", + "reference": "c480849ca3ad6706a39c970cdfe6888fa8a058b8", "shasum": "" }, "require": { "doctrine/cache": "^1.0|^2.0", - "doctrine/deprecations": "^0.5.3", + "doctrine/deprecations": "^0.5.3|^1", "doctrine/event-manager": "^1.0", "ext-pdo": "*", "php": "^7.1 || ^8" }, "require-dev": { "doctrine/coding-standard": "9.0.0", - "jetbrains/phpstorm-stubs": "2020.2", - "phpstan/phpstan": "0.12.81", - "phpunit/phpunit": "^7.5.20|^8.5|9.5.5", - "squizlabs/php_codesniffer": "3.6.0", + "jetbrains/phpstorm-stubs": "2021.1", + "phpstan/phpstan": "1.4.6", + "phpunit/phpunit": "^7.5.20|^8.5|9.5.16", + "psalm/plugin-phpunit": "0.16.1", + "squizlabs/php_codesniffer": "3.6.2", "symfony/cache": "^4.4", "symfony/console": "^2.0.5|^3.0|^4.0|^5.0", - "vimeo/psalm": "4.6.4" + "vimeo/psalm": "4.22.0" }, "suggest": { "symfony/console": "For helpful console commands such as SQL execution and import of files." @@ -1815,7 +1837,7 @@ ], "support": { "issues": "https://github.com/doctrine/dbal/issues", - "source": "https://github.com/doctrine/dbal/tree/2.13.2" + "source": "https://github.com/doctrine/dbal/tree/2.13.9" }, "funding": [ { @@ -1831,29 +1853,29 @@ "type": "tidelift" } ], - "time": "2021-06-18T21:48:39+00:00" + "time": "2022-05-02T20:28:55+00:00" }, { "name": "doctrine/deprecations", - "version": "v0.5.3", + "version": "v1.0.0", "source": { "type": "git", "url": "https://github.com/doctrine/deprecations.git", - "reference": "9504165960a1f83cc1480e2be1dd0a0478561314" + "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314", - "reference": "9504165960a1f83cc1480e2be1dd0a0478561314", + "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de", + "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de", "shasum": "" }, "require": { "php": "^7.1|^8.0" }, "require-dev": { - "doctrine/coding-standard": "^6.0|^7.0|^8.0", - "phpunit/phpunit": "^7.0|^8.0|^9.0", - "psr/log": "^1.0" + "doctrine/coding-standard": "^9", + "phpunit/phpunit": "^7.5|^8.5|^9.5", + "psr/log": "^1|^2|^3" }, "suggest": { "psr/log": "Allows logging deprecations via PSR-3 logger implementation" @@ -1872,9 +1894,9 @@ "homepage": "https://www.doctrine-project.org/", "support": { "issues": "https://github.com/doctrine/deprecations/issues", - "source": "https://github.com/doctrine/deprecations/tree/v0.5.3" + "source": "https://github.com/doctrine/deprecations/tree/v1.0.0" }, - "time": "2021-03-21T12:59:47+00:00" + "time": "2022-05-02T15:47:09+00:00" }, { "name": "doctrine/event-manager", @@ -2538,29 +2560,32 @@ }, { "name": "drupal/auto_entitylabel", - "version": "3.0.0-beta4", + "version": "3.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/auto_entitylabel.git", - "reference": "8.x-3.0-beta4" + "reference": "8.x-3.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/auto_entitylabel-8.x-3.0-beta4.zip", - "reference": "8.x-3.0-beta4", - "shasum": "916befd4ce95b5d73de48ac1b105cc33e9f7821f" + "url": "https://ftp.drupal.org/files/projects/auto_entitylabel-8.x-3.0.zip", + "reference": "8.x-3.0", + "shasum": "8dd54d4b677f2c7259a15afd7b71d0d1b6f6b4a6" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": "^9.3 || ^10" + }, + "require-dev": { + "drupal/token": "^1.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.0-beta4", - "datestamp": "1609349103", + "version": "8.x-3.0", + "datestamp": "1671545557", "security-coverage": { - "status": "not-covered", - "message": "Beta releases are not covered by Drupal security advisories." + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, @@ -2569,18 +2594,6 @@ "GPL-2.0-or-later" ], "authors": [ - { - "name": "Pravin Ajaaz", - "homepage": "https://www.drupal.org/user/2910049" - }, - { - "name": "RenatoG", - "homepage": "https://www.drupal.org/user/3326031" - }, - { - "name": "VladimirAus", - "homepage": "https://www.drupal.org/user/673120" - }, { "name": "bforchhammer", "homepage": "https://www.drupal.org/user/216396" @@ -2593,9 +2606,25 @@ "name": "diqidoq", "homepage": "https://www.drupal.org/user/1001934" }, + { + "name": "japerry", + "homepage": "https://www.drupal.org/user/45640" + }, + { + "name": "Pravin Ajaaz", + "homepage": "https://www.drupal.org/user/2910049" + }, { "name": "purushotam.rai", "homepage": "https://www.drupal.org/user/3193859" + }, + { + "name": "RenatoG", + "homepage": "https://www.drupal.org/user/3326031" + }, + { + "name": "VladimirAus", + "homepage": "https://www.drupal.org/user/673120" } ], "description": "Allows hiding of entity label fields and automatic label creation.", @@ -2607,26 +2636,26 @@ }, { "name": "drupal/captcha", - "version": "1.2.0", + "version": "1.8.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/captcha.git", - "reference": "8.x-1.2" + "reference": "8.x-1.8" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/captcha-8.x-1.2.zip", - "reference": "8.x-1.2", - "shasum": "e35a2ce42b652f833d140f7571d1eef0e06b0edc" + "url": "https://ftp.drupal.org/files/projects/captcha-8.x-1.8.zip", + "reference": "8.x-1.8", + "shasum": "1d02df92de72616e75c9006549ae4d4c4dcbb5f5" }, "require": { - "drupal/core": "^8.8 || ^9" + "drupal/core": ">=8.9 <11" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.2", - "datestamp": "1619673374", + "version": "8.x-1.8", + "datestamp": "1668593425", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2739,16 +2768,16 @@ }, { "name": "drupal/console", - "version": "1.9.7", + "version": "1.9.9", "source": { "type": "git", "url": "https://github.com/hechoendrupal/drupal-console.git", - "reference": "90053d30f52427edb4e4941a9063acb65b5a2c1e" + "reference": "3756318780483910250e4ba78207cf960bde4545" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/90053d30f52427edb4e4941a9063acb65b5a2c1e", - "reference": "90053d30f52427edb4e4941a9063acb65b5a2c1e", + "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/3756318780483910250e4ba78207cf960bde4545", + "reference": "3756318780483910250e4ba78207cf960bde4545", "shasum": "" }, "require": { @@ -2762,6 +2791,7 @@ "psy/psysh": "0.6.* || ~0.8", "symfony/css-selector": "~3.0|~4.0", "symfony/dom-crawler": "~3.0|~4.0", + "symfony/expression-language": "~3.0|~4.0", "symfony/http-foundation": "~3.0|~4.0" }, "suggest": { @@ -2818,7 +2848,7 @@ "docs": "https://docs.drupalconsole.com/", "forum": "https://gitter.im/hechoendrupal/DrupalConsole", "issues": "https://github.com/hechoendrupal/drupal-console/issues", - "source": "https://github.com/hechoendrupal/drupal-console/tree/1.9.7" + "source": "https://github.com/hechoendrupal/drupal-console/tree/1.9.9" }, "funding": [ { @@ -2826,7 +2856,7 @@ "type": "open_collective" } ], - "time": "2020-11-30T02:09:53+00:00" + "time": "2022-09-17T20:50:37+00:00" }, { "name": "drupal/console-core", @@ -3068,26 +3098,26 @@ }, { "name": "drupal/contact_block", - "version": "1.5.0", + "version": "1.7.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/contact_block.git", - "reference": "8.x-1.5" + "reference": "8.x-1.7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/contact_block-8.x-1.5.zip", - "reference": "8.x-1.5", - "shasum": "5a5d7febd240fc3673ca755d475bfd4ad4f5a8f3" + "url": "https://ftp.drupal.org/files/projects/contact_block-8.x-1.7.zip", + "reference": "8.x-1.7", + "shasum": "1ccc790294dad3dfcbe90e465b994fa4b48dc13e" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": "^8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.5", - "datestamp": "1587219506", + "version": "8.x-1.7", + "datestamp": "1665911371", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3096,7 +3126,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { @@ -3170,27 +3200,27 @@ }, { "name": "drupal/contact_storage", - "version": "1.1.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/contact_storage.git", - "reference": "8.x-1.1" + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/contact_storage-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "3560a3eb06daa5f5156c0986989a0b5deadd9de1" + "url": "https://ftp.drupal.org/files/projects/contact_storage-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "719dad5a991aa32e14c9bcb7b9dc76830e2331df" }, "require": { - "drupal/core": "^8.7.7 || ^9", + "drupal/core": "^9.1 || ^10", "drupal/token": "^1.6" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.1", - "datestamp": "1591811491", + "version": "8.x-1.3", + "datestamp": "1667651867", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3231,28 +3261,28 @@ }, { "name": "drupal/content_browser", - "version": "1.0.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/content_browser.git", - "reference": "8.x-1.0" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/content_browser-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "a947716ca56ebefaca2790c6ca4be8f657036e3a" + "url": "https://ftp.drupal.org/files/projects/content_browser-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "a920fcae412af83f64590b484e428cead04fd943" }, "require": { - "drupal/core": "^8 || ^9", + "drupal/core": "^8 || ^9 || ^10", "drupal/entity_browser": "*", "drupal/entity_embed": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0", - "datestamp": "1590339486", + "version": "8.x-1.1", + "datestamp": "1670990746", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3736,16 +3766,16 @@ }, { "name": "drupal/core-vendor-hardening", - "version": "9.2.4", + "version": "9.5.0", "source": { "type": "git", "url": "https://github.com/drupal/core-vendor-hardening.git", - "reference": "f9eaafd58792fef38037979c2344a9216a93cc7e" + "reference": "8293a845c64f1faad0d44955611f8cce69320274" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-vendor-hardening/zipball/f9eaafd58792fef38037979c2344a9216a93cc7e", - "reference": "f9eaafd58792fef38037979c2344a9216a93cc7e", + "url": "https://api.github.com/repos/drupal/core-vendor-hardening/zipball/8293a845c64f1faad0d44955611f8cce69320274", + "reference": "8293a845c64f1faad0d44955611f8cce69320274", "shasum": "" }, "require": { @@ -3771,23 +3801,23 @@ "drupal" ], "support": { - "source": "https://github.com/drupal/core-vendor-hardening/tree/9.2.4" + "source": "https://github.com/drupal/core-vendor-hardening/tree/9.5.0" }, - "time": "2021-04-22T15:46:23+00:00" + "time": "2022-12-07T11:22:43+00:00" }, { "name": "drupal/csv_serialization", - "version": "2.0.0", + "version": "2.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/csv_serialization.git", - "reference": "8.x-2.0" + "reference": "8.x-2.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/csv_serialization-8.x-2.0.zip", - "reference": "8.x-2.0", - "shasum": "3531383a6926a4ed761be56553997c2a937449ac" + "url": "https://ftp.drupal.org/files/projects/csv_serialization-8.x-2.1.zip", + "reference": "8.x-2.1", + "shasum": "10b8629a5808ed1ecf358d5ca7054d6c14a476d4" }, "require": { "drupal/core": "^8 || ^9", @@ -3800,8 +3830,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.0", - "datestamp": "1612801962", + "version": "8.x-2.1", + "datestamp": "1655054417", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3827,17 +3857,17 @@ }, { "name": "drupal/devel", - "version": "4.1.1", + "version": "4.2.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/devel.git", - "reference": "4.1.1" + "reference": "4.2.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/devel-4.1.1.zip", - "reference": "4.1.1", - "shasum": "88e5d49dda26a3136291ecd97bc6c8e897b24198" + "url": "https://ftp.drupal.org/files/projects/devel-4.2.1.zip", + "reference": "4.2.1", + "shasum": "aa08379bad81cb2e604ee9a0b9e2aabd86fae13f" }, "require": { "doctrine/common": "^2.7", @@ -3856,8 +3886,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "4.1.1", - "datestamp": "1631968537", + "version": "4.2.1", + "datestamp": "1664317444", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3893,26 +3923,26 @@ }, { "name": "drupal/embed", - "version": "1.4.0", + "version": "1.6.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/embed.git", - "reference": "8.x-1.4" + "reference": "8.x-1.6" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "09a2bda039bfbb3fff01c91964384bf3d924b8c5" + "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.6.zip", + "reference": "8.x-1.6", + "shasum": "6d2964775c3228d122cd61904786b3640fa83045" }, "require": { - "drupal/core": "^8.7.7 || ^9" + "drupal/core": "^9.3 | ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.4", - "datestamp": "1590176831", + "version": "8.x-1.6", + "datestamp": "1661298150", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3957,20 +3987,20 @@ }, { "name": "drupal/entity_browser", - "version": "2.6.0", + "version": "2.8.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/entity_browser.git", - "reference": "8.x-2.6" + "reference": "8.x-2.8" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.6.zip", - "reference": "8.x-2.6", - "shasum": "95cad4ce9620ccb4f02afa0e8b8bbf7c73fc5aac" + "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.8.zip", + "reference": "8.x-2.8", + "shasum": "151433fb7681f3e844010072285a374a5e46cf2a" }, "require": { - "drupal/core": "^8.8 || ^9" + "drupal/core": "^9.2 || ^10" }, "require-dev": { "drupal/embed": "~1.0", @@ -3979,13 +4009,13 @@ "drupal/entityqueue": "1.x-dev", "drupal/inline_entity_form": "1.x-dev", "drupal/paragraphs": "1.x-dev", - "drupal/token": "~1.0" + "drupal/token": "1.x-dev" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.6", - "datestamp": "1624401306", + "version": "8.x-2.8", + "datestamp": "1658509699", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4047,21 +4077,21 @@ }, { "name": "drupal/entity_embed", - "version": "1.2.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/entity_embed.git", - "reference": "8.x-1.2" + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/entity_embed-8.x-1.2.zip", - "reference": "8.x-1.2", - "shasum": "e1d4c9d6931984836c1ea550c32ae40f42367525" + "url": "https://ftp.drupal.org/files/projects/entity_embed-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "37781222e0b31a0319f0b2e67ef345f2033435e7" }, "require": { - "drupal/core": "^8.8 || ^9", - "drupal/embed": "^1.3" + "drupal/core": "^9.3", + "drupal/embed": "^1.5" }, "require-dev": { "drupal/entity_browser": "^2.2" @@ -4069,8 +4099,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.2", - "datestamp": "1631726164", + "version": "8.x-1.3", + "datestamp": "1666275539", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4079,7 +4109,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { @@ -4118,9 +4148,7 @@ "description": "Allows any entity to be embedded within a text area using a WYSIWYG editor.", "homepage": "https://www.drupal.org/project/entity_embed", "support": { - "source": "https://git.drupalcode.org/project/entity_embed", - "issues": "https://www.drupal.org/project/issues/entity_embed", - "irc": "irc://irc.freenode.org/drupal-media" + "source": "https://git.drupalcode.org/project/entity_embed" } }, { @@ -4169,26 +4197,26 @@ }, { "name": "drupal/epp", - "version": "1.1.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/epp.git", - "reference": "8.x-1.1" + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/epp-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "d52e973eb61182b56929aa62a9dc673e0acfd9e4" + "url": "https://ftp.drupal.org/files/projects/epp-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "f76397710f3ed2d88d72fa164456cc44afdcf16e" }, "require": { - "drupal/core": "^8.7.7 || ^9" + "drupal/core": "^8.7.7 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.1", - "datestamp": "1622317397", + "version": "8.x-1.3", + "datestamp": "1670961451", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4213,7 +4241,7 @@ "homepage": "https://www.drupal.org/user/998658" } ], - "description": "Prepopulate entity values via tokens.", + "description": "Prepopulate entity values via tokens. Install the Token module for more tokens and Token browser access.", "homepage": "https://www.drupal.org/project/epp", "support": { "source": "https://git.drupalcode.org/project/epp" @@ -4284,26 +4312,26 @@ }, { "name": "drupal/externalauth", - "version": "1.4.0", + "version": "2.0.3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/externalauth.git", - "reference": "8.x-1.4" + "reference": "2.0.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/externalauth-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "caea7d2d5a890adad9e6b5beaa2cf139727266d6" + "url": "https://ftp.drupal.org/files/projects/externalauth-2.0.3.zip", + "reference": "2.0.3", + "shasum": "dae49e3df8739538d7b9371ab7fb5005b8d953fd" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": "^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.4", - "datestamp": "1624457496", + "version": "2.0.3", + "datestamp": "1668777505", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4316,8 +4344,9 @@ ], "authors": [ { - "name": "rgristroph", - "homepage": "https://www.drupal.org/user/516442" + "name": "Sven Decabooter", + "homepage": "https://www.drupal.org/u/svendecabooter", + "role": "Maintainer" }, { "name": "snufkin", @@ -4329,9 +4358,10 @@ } ], "description": "Helper module to authenticate users using an external site / service and storing identification details", - "homepage": "https://www.drupal.org/project/externalauth", + "homepage": "https://drupal.org/project/externalauth", "support": { - "source": "https://git.drupalcode.org/project/externalauth" + "source": "https://git.drupalcode.org/project/externalauth", + "issues": "https://www.drupal.org/project/issues/externalauth" } }, { @@ -4489,29 +4519,26 @@ }, { "name": "drupal/field_group", - "version": "3.2.0", + "version": "3.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/field_group.git", - "reference": "8.x-3.2" + "reference": "8.x-3.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.2.zip", - "reference": "8.x-3.2", - "shasum": "2020bbfe40f6ba43bc733ae7c8761632572433a0" + "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.4.zip", + "reference": "8.x-3.4", + "shasum": "80b937e1a11f8b29c69d853fc4bf798c057c6f94" }, "require": { - "drupal/core": "^8.8 || ^9" - }, - "require-dev": { - "drupal/jquery_ui_accordion": "^1.0" + "drupal/core": "^9.2 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.2", - "datestamp": "1628513585", + "version": "8.x-3.4", + "datestamp": "1667241979", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4553,26 +4580,26 @@ }, { "name": "drupal/field_permissions", - "version": "1.1.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/field_permissions.git", - "reference": "8.x-1.1" + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/field_permissions-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "11e31db94999e6871ad7633455315bc27989a7ea" + "url": "https://ftp.drupal.org/files/projects/field_permissions-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "0b1a5edfac518fe6005d015b3781774b41cdec76" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": ">=8.9 <11" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.1", - "datestamp": "1598646882", + "version": "8.x-1.2", + "datestamp": "1658941749", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4617,32 +4644,32 @@ }, { "name": "drupal/file_mdm", - "version": "2.1.0", + "version": "2.5.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/file_mdm.git", - "reference": "8.x-2.1" + "reference": "8.x-2.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-2.1.zip", - "reference": "8.x-2.1", - "shasum": "5c3d75622299ebddc0e8456bb08bb371da8771bd" + "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-2.5.zip", + "reference": "8.x-2.5", + "shasum": "391d9902733704274594873aa9b1f6b6ba3bd319" }, "require": { - "drupal/core": "^8.8 || ^9", - "lsolesen/pel": "^0.9.8", - "phenx/php-font-lib": "^0.5.2", - "php": ">=7" + "drupal/core": "^9.3 | ^10", + "lsolesen/pel": "^0.9.12", + "phenx/php-font-lib": "^0.5.4" }, "require-dev": { - "drupal/image_effects": "*" + "drupal/vendor_stream_wrapper": "^2.0.2", + "fileeye/linuxlibertine-fonts": "^5.3" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.1", - "datestamp": "1586801064", + "version": "8.x-2.5", + "datestamp": "1663668519", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4667,26 +4694,26 @@ }, { "name": "drupal/file_replace", - "version": "1.2.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/file_replace.git", - "reference": "8.x-1.2" + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/file_replace-8.x-1.2.zip", - "reference": "8.x-1.2", - "shasum": "9ee1af7ad1f9cf3836b89bc43c3873960166f44d" + "url": "https://ftp.drupal.org/files/projects/file_replace-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "d0c1d6378d2958d8fd70b9cb55f884e3ddaf5f87" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": "^8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.2", - "datestamp": "1600085951", + "version": "8.x-1.3", + "datestamp": "1659099667", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4719,26 +4746,29 @@ }, { "name": "drupal/filehash", - "version": "1.5.0", + "version": "1.11.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/filehash.git", - "reference": "8.x-1.5" + "reference": "8.x-1.11" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/filehash-8.x-1.5.zip", - "reference": "8.x-1.5", - "shasum": "3b260fca1f77a003e3849709911ba36503ccb5ba" + "url": "https://ftp.drupal.org/files/projects/filehash-8.x-1.11.zip", + "reference": "8.x-1.11", + "shasum": "2399804f2e5f4d79d22ac768b736642c294a0d18" }, "require": { - "drupal/core": "^8.5 || ^9.0" + "drupal/core": "^8.5 || ^9.0 || ^10.0" + }, + "require-dev": { + "drush/drush": "^10.6 || ^11.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.5", - "datestamp": "1615099468", + "version": "8.x-1.11", + "datestamp": "1648209292", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4746,7 +4776,7 @@ }, "drush": { "services": { - "drush.services.yml": "^9" + "drush.services.yml": "^9 || ^10 || ^11" } } }, @@ -4859,20 +4889,23 @@ }, { "name": "drupal/geolocation", - "version": "3.7.0", + "version": "3.11.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/geolocation.git", - "reference": "8.x-3.7" + "reference": "8.x-3.11" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/geolocation-8.x-3.7.zip", - "reference": "8.x-3.7", - "shasum": "796797ff4d3cc9d8b645bf2534d783d170ef77f5" + "url": "https://ftp.drupal.org/files/projects/geolocation-8.x-3.11.zip", + "reference": "8.x-3.11", + "shasum": "7a563ba6ba18380b636c10d936a28837100a4e02" }, "require": { - "drupal/core": "^8.7.7 || ^9" + "drupal/core": "^9.3 || ^10", + "drupal/jquery_ui": "*", + "drupal/jquery_ui_autocomplete": "*", + "php": "^7.3 || ^8.0" }, "require-dev": { "drupal/address": "*", @@ -4891,8 +4924,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.7", - "datestamp": "1623052750", + "version": "8.x-3.11", + "datestamp": "1671546967", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4922,20 +4955,20 @@ }, { "name": "drupal/google_analytics", - "version": "4.0.0", + "version": "4.0.2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/google_analytics.git", - "reference": "4.0.0" + "reference": "4.0.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/google_analytics-4.0.0.zip", - "reference": "4.0.0", - "shasum": "4f761d4c852d11966f7289b0eb6431cc8db27240" + "url": "https://ftp.drupal.org/files/projects/google_analytics-4.0.2.zip", + "reference": "4.0.2", + "shasum": "6deec511373e4659e42ff494c8729434728e37d7" }, "require": { - "drupal/core": "^8.9|^9.0" + "drupal/core": "^9.3 || ^10" }, "require-dev": { "drupal/token": "^1.7" @@ -4943,8 +4976,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "4.0.0", - "datestamp": "1634230238", + "version": "4.0.2", + "datestamp": "1662768595", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4993,26 +5026,26 @@ }, { "name": "drupal/google_tag", - "version": "1.4.0", + "version": "1.6.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/google_tag.git", - "reference": "8.x-1.4" + "reference": "8.x-1.6" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/google_tag-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "1bdc6f93d1c79c27738320597f2185f5de37432f" + "url": "https://ftp.drupal.org/files/projects/google_tag-8.x-1.6.zip", + "reference": "8.x-1.6", + "shasum": "d084315e54c2e561b8b64eef86081c2634d054cd" }, "require": { - "drupal/core": "^8.8 || ^9" + "drupal/core": "^8.8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.4", - "datestamp": "1593179846", + "version": "8.x-1.6", + "datestamp": "1671145853", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5037,29 +5070,28 @@ }, { "name": "drupal/imagemagick", - "version": "3.2.0", + "version": "3.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/imagemagick.git", - "reference": "8.x-3.2" + "reference": "8.x-3.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-3.2.zip", - "reference": "8.x-3.2", - "shasum": "35346cda3bb9c989387a282dd7f7bb4da4f70fce" + "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-3.4.zip", + "reference": "8.x-3.4", + "shasum": "9f07b7db4bba2cb0e4ff004629f8f78242bb7226" }, "require": { - "drupal/core": "^8.9 || ^9.1", - "drupal/file_mdm": "^2", - "drupal/sophron": "^1", - "php": ">=7.1" + "drupal/core": "^9.3 || ^10", + "drupal/file_mdm": "^2.5", + "drupal/sophron": "^1.2 || ^2" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.2", - "datestamp": "1622711751", + "version": "8.x-3.4", + "datestamp": "1663947784", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5122,19 +5154,246 @@ "source": "https://git.drupalcode.org/project/imagemagick" } }, + { + "name": "drupal/jquery_ui", + "version": "1.6.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/jquery_ui.git", + "reference": "8.x-1.6" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.6.zip", + "reference": "8.x-1.6", + "shasum": "0ddccdcf35a066de1843e1d9670677ee1a2faac0" + }, + "require": { + "drupal/core": "^9.2 || ^10" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.6", + "datestamp": "1668521197", + "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": "bnjmnm", + "homepage": "https://www.drupal.org/user/2369194" + }, + { + "name": "jjeff", + "homepage": "https://www.drupal.org/user/17190" + }, + { + "name": "lauriii", + "homepage": "https://www.drupal.org/user/1078742" + }, + { + "name": "litwol", + "homepage": "https://www.drupal.org/user/78134" + }, + { + "name": "mfb", + "homepage": "https://www.drupal.org/user/12302" + }, + { + "name": "mfer", + "homepage": "https://www.drupal.org/user/25701" + }, + { + "name": "mikelutz", + "homepage": "https://www.drupal.org/user/2972409" + }, + { + "name": "nod_", + "homepage": "https://www.drupal.org/user/598310" + }, + { + "name": "phenaproxima", + "homepage": "https://www.drupal.org/user/205645" + }, + { + "name": "RobLoach", + "homepage": "https://www.drupal.org/user/61114" + }, + { + "name": "sun", + "homepage": "https://www.drupal.org/user/54136" + }, + { + "name": "webchick", + "homepage": "https://www.drupal.org/user/24967" + }, + { + "name": "Wim Leers", + "homepage": "https://www.drupal.org/user/99777" + }, + { + "name": "zrpnr", + "homepage": "https://www.drupal.org/user/1448368" + } + ], + "description": "Provides jQuery UI library.", + "homepage": "https://www.drupal.org/project/jquery_ui", + "support": { + "source": "https://git.drupalcode.org/project/jquery_ui" + } + }, + { + "name": "drupal/jquery_ui_autocomplete", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/jquery_ui_autocomplete.git", + "reference": "2.0.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/jquery_ui_autocomplete-2.0.0.zip", + "reference": "2.0.0", + "shasum": "927d312a74002f99e1c971d3d268be1b0a532fc7" + }, + "require": { + "drupal/core": "^9.2 || ^10", + "drupal/jquery_ui": "^1.6", + "drupal/jquery_ui_menu": "^2" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.0.0", + "datestamp": "1670871461", + "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": "bnjmnm", + "homepage": "https://www.drupal.org/user/2369194" + }, + { + "name": "lauriii", + "homepage": "https://www.drupal.org/user/1078742" + }, + { + "name": "nod_", + "homepage": "https://www.drupal.org/user/598310" + }, + { + "name": "phenaproxima", + "homepage": "https://www.drupal.org/user/205645" + }, + { + "name": "Wim Leers", + "homepage": "https://www.drupal.org/user/99777" + }, + { + "name": "zrpnr", + "homepage": "https://www.drupal.org/user/1448368" + } + ], + "description": "Provides jQuery UI Autocomplete library.", + "homepage": "https://www.drupal.org/project/jquery_ui_autocomplete", + "support": { + "source": "https://git.drupalcode.org/project/jquery_ui_autocomplete" + } + }, + { + "name": "drupal/jquery_ui_menu", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/jquery_ui_menu.git", + "reference": "2.0.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/jquery_ui_menu-2.0.0.zip", + "reference": "2.0.0", + "shasum": "5e1b56bf457669c7779a81784f49da63e3956854" + }, + "require": { + "drupal/core": "^9.2 || ^10", + "drupal/jquery_ui": "^1.6" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.0.0", + "datestamp": "1670871546", + "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": "bnjmnm", + "homepage": "https://www.drupal.org/user/2369194" + }, + { + "name": "lauriii", + "homepage": "https://www.drupal.org/user/1078742" + }, + { + "name": "nod_", + "homepage": "https://www.drupal.org/user/598310" + }, + { + "name": "phenaproxima", + "homepage": "https://www.drupal.org/user/205645" + }, + { + "name": "Wim Leers", + "homepage": "https://www.drupal.org/user/99777" + }, + { + "name": "zrpnr", + "homepage": "https://www.drupal.org/user/1448368" + } + ], + "description": "Provides jQuery UI Menu library.", + "homepage": "https://www.drupal.org/project/jquery_ui_menu", + "support": { + "source": "https://git.drupalcode.org/project/jquery_ui_menu" + } + }, { "name": "drupal/jwt", - "version": "1.0.0-rc1", + "version": "1.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/jwt.git", - "reference": "8.x-1.0-rc1" + "reference": "8.x-1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/jwt-8.x-1.0-rc1.zip", - "reference": "8.x-1.0-rc1", - "shasum": "80b26cba67d7593e7b40985dfbf6c8d9b244f5a4" + "url": "https://ftp.drupal.org/files/projects/jwt-8.x-1.0.zip", + "reference": "8.x-1.0", + "shasum": "1792f600b7b8357e4d1b2fbe365af7a41564db25" }, "require": { "drupal/core": "^8.7.12 || ^9.0", @@ -5148,17 +5407,17 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0-rc1", - "datestamp": "1623958868", + "version": "8.x-1.0", + "datestamp": "1653322599", "security-coverage": { - "status": "not-covered", - "message": "RC releases are not covered by Drupal security advisories." + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { @@ -5190,26 +5449,26 @@ }, { "name": "drupal/key", - "version": "1.14.0", + "version": "1.16.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/key.git", - "reference": "8.x-1.14" + "reference": "8.x-1.16" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/key-8.x-1.14.zip", - "reference": "8.x-1.14", - "shasum": "097cec8e86b1c164727ca62521a06c36459754f1" + "url": "https://ftp.drupal.org/files/projects/key-8.x-1.16.zip", + "reference": "8.x-1.16", + "shasum": "35a4476d7d52563bb26bd4dcc5fbf5fdd7c9391b" }, "require": { - "drupal/core": "^8.7.7 || ^9" + "drupal/core": ">=8.9 <11" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.14", - "datestamp": "1591765429", + "version": "8.x-1.16", + "datestamp": "1661968490", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5217,13 +5476,13 @@ }, "drush": { "services": { - "drush.services.yml": "^9" + "drush.services.yml": ">=9" } } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { @@ -5249,7 +5508,7 @@ "Drupal" ], "support": { - "source": "http://cgit.drupalcode.org/key", + "source": "https://git.drupalcode.org/project/key", "issues": "http://drupal.org/project/key" } }, @@ -5259,7 +5518,7 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/libraries.git", - "reference": "ba30ae518d87313a5d532ba0d45581243b81ac1b" + "reference": "ec0c6401e45ff8b09d10e043ff2dd4de324df86e" }, "require": { "drupal/core": "^8.8 || ^9" @@ -5314,26 +5573,24 @@ "source": "http://cgit.drupalcode.org/libraries", "issues": "http://drupal.org/project/issues/libraries", "irc": "irc://irc.freenode.org/drupal-contribute" - }, - "time": "2021-06-02T04:24:38+00:00" + } }, { "name": "drupal/migrate_plus", - "version": "5.1.0", + "version": "5.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/migrate_plus.git", - "reference": "8.x-5.1" + "reference": "8.x-5.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-5.1.zip", - "reference": "8.x-5.1", - "shasum": "1257427ab0c64459c3c1e42bb2a98d3114b77163" + "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-5.3.zip", + "reference": "8.x-5.3", + "shasum": "3cf6dde235d7604ee49be2986812c0ee5e2982f6" }, "require": { - "drupal/core": "^8.8 || ^9", - "php": ">=7.1" + "drupal/core": "^9.1" }, "require-dev": { "drupal/migrate_example_advanced_setup": "*", @@ -5346,8 +5603,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-5.1", - "datestamp": "1588261060", + "version": "8.x-5.3", + "datestamp": "1650658156", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5384,31 +5641,31 @@ }, { "name": "drupal/migrate_source_csv", - "version": "3.4.0", + "version": "3.5.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/migrate_source_csv.git", - "reference": "8.x-3.4" + "reference": "8.x-3.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/migrate_source_csv-8.x-3.4.zip", - "reference": "8.x-3.4", - "shasum": "12990ad8c3b99e16c1b2a1be955aaa28581e5d1c" + "url": "https://ftp.drupal.org/files/projects/migrate_source_csv-8.x-3.5.zip", + "reference": "8.x-3.5", + "shasum": "ddddba22fa7b4a54f05a606db33986b23b1a69ea" }, "require": { - "drupal/core": "^8.7 || ^9.0", + "drupal/core": ">=9.1", "league/csv": "^9.1", "php": ">=7.1" }, "require-dev": { - "drupal/migrate_plus": "5.x-dev" + "drupal/migrate_plus": ">=5.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.4", - "datestamp": "1588260548", + "version": "8.x-3.5", + "datestamp": "1645538421", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5430,8 +5687,7 @@ "homepage": "https://www.drupal.org/project/migrate_source_csv", "support": { "source": "https://cgit.drupalcode.org/migrate_source_csv", - "issues": "https://www.drupal.org/project/issues/migrate_source_csv", - "irc": "irc://irc.freenode.org/drupal-migrate" + "issues": "https://www.drupal.org/project/issues/migrate_source_csv" } }, { @@ -5492,11 +5748,17 @@ }, { "name": "drupal/migrate_tools", - "version": "dev-5.x", + "version": "5.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/migrate_tools.git", - "reference": "56d82b4fc111dd26f2c3a1e53c06015eb854df20" + "reference": "8.x-5.1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-5.1.zip", + "reference": "8.x-5.1", + "shasum": "2c1a9d35d318a0e1de30a99fbf64bedd4e65cee1" }, "require": { "drupal/core": "^9.1", @@ -5512,15 +5774,12 @@ }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-5.x": "5.x-dev" - }, "drupal": { - "version": "8.x-5.1+3-dev", - "datestamp": "1650661352", + "version": "8.x-5.1", + "datestamp": "1640378500", "security-coverage": { - "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } }, "drush": { @@ -5555,31 +5814,30 @@ "source": "https://git.drupalcode.org/project/migrate_tools", "issues": "https://www.drupal.org/project/issues/migrate_tools", "slack": "#migrate" - }, - "time": "2021-07-05T21:38:52+00:00" + } }, { "name": "drupal/pager_serializer", - "version": "1.1.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/pager_serializer.git", - "reference": "8.x-1.1" + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/pager_serializer-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "0f25319e3e0641a7b867cd55210d519e28d96896" + "url": "https://ftp.drupal.org/files/projects/pager_serializer-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "71b2b785889a30bc2dc7b130bf53a686d849785f" }, "require": { - "drupal/core": "^8.7.7 || ^9" + "drupal/core": "^8.7.7 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.1", - "datestamp": "1614122787", + "version": "8.x-1.2", + "datestamp": "1656444579", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5612,7 +5870,7 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/pdf.git", - "reference": "1e33fbf7013df3998dd4f1375889a2df93156a0e" + "reference": "c9b4600ee73b1555efe35c97b2260daf65a810a4" }, "require": { "drupal/core": "^8 || ^9" @@ -5665,22 +5923,21 @@ "homepage": "https://www.drupal.org/project/pdf", "support": { "source": "https://git.drupalcode.org/project/pdf" - }, - "time": "2020-06-26T10:23:16+00:00" + } }, { "name": "drupal/permissions_by_term", - "version": "3.1.16", + "version": "3.1.21", "source": { "type": "git", "url": "https://git.drupalcode.org/project/permissions_by_term.git", - "reference": "3.1.16" + "reference": "3.1.21" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/permissions_by_term-3.1.16.zip", - "reference": "3.1.16", - "shasum": "4208c34a4399249052bd7b070cd51d7628c6b184" + "url": "https://ftp.drupal.org/files/projects/permissions_by_term-3.1.21.zip", + "reference": "3.1.21", + "shasum": "ecd9340f1aac1f183398a571415bb0859fcb6f4c" }, "require": { "drupal/core": "^9.0", @@ -5689,8 +5946,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "3.1.16", - "datestamp": "1626101110", + "version": "3.1.21", + "datestamp": "1668009531", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5959,26 +6216,26 @@ }, { "name": "drupal/restui", - "version": "1.20.0", + "version": "1.21.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/restui.git", - "reference": "8.x-1.20" + "reference": "8.x-1.21" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.20.zip", - "reference": "8.x-1.20", - "shasum": "df1d3c486ee0e7b4e9a24e6523a69c9efe73caff" + "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.21.zip", + "reference": "8.x-1.21", + "shasum": "2a67dc2c1953dced0bddaff25e5c60784ee0178c" }, "require": { - "drupal/core": "^8.7.7 || ^9" + "drupal/core": "^8.7.7 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.20", - "datestamp": "1616839543", + "version": "8.x-1.21", + "datestamp": "1659086914", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6015,26 +6272,26 @@ }, { "name": "drupal/role_delegation", - "version": "1.1.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/role_delegation.git", - "reference": "8.x-1.1" + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/role_delegation-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "a63b548056cc729beacfd385625fafb983e0f73e" + "url": "https://ftp.drupal.org/files/projects/role_delegation-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "08095bada0f492e70d32fcf357a8c01825ca81fc" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": "^9.2 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.1", - "datestamp": "1580498751", + "version": "8.x-1.2", + "datestamp": "1644487627", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6113,24 +6370,24 @@ }, { "name": "drupal/s3fs", - "version": "3.0.0-beta3", + "version": "3.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/s3fs.git", - "reference": "8.x-3.0-beta3" + "reference": "8.x-3.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/s3fs-8.x-3.0-beta3.zip", - "reference": "8.x-3.0-beta3", - "shasum": "47b096438202633b07261b76d93c958a150a3159" + "url": "https://ftp.drupal.org/files/projects/s3fs-8.x-3.1.zip", + "reference": "8.x-3.1", + "shasum": "8de42701f4ce25c2c16c9efe28e605a712f1be9e" }, "require": { "aws/aws-sdk-php": "^3.18", - "drupal/core": "^8.8 || ^9" + "drupal/core": "^8.8 || ^9 || ~10.0.0" }, "require-dev": { - "drush/drush": "^10.0" + "drush/drush": "^10 || ^11" }, "suggest": { "doctrine/cache": "~1.4" @@ -6138,11 +6395,11 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.0-beta3", - "datestamp": "1629922175", + "version": "8.x-3.1", + "datestamp": "1670992386", "security-coverage": { - "status": "not-covered", - "message": "Beta releases are not covered by Drupal security advisories." + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, @@ -6190,20 +6447,20 @@ }, { "name": "drupal/search_api", - "version": "1.20.0", + "version": "1.28.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/search_api.git", - "reference": "8.x-1.20" + "reference": "8.x-1.28" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.20.zip", - "reference": "8.x-1.20", - "shasum": "4bed60ac7b502ccc1d4a01411aa35d2cb7f496c7" + "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.28.zip", + "reference": "8.x-1.28", + "shasum": "d3ae0bb3cf17c986d5e0c6edb87aee6580b6fc1e" }, "require": { - "drupal/core": "^8.8 || ^9" + "drupal/core": "^9.3 || ^10.0" }, "conflict": { "drupal/search_api_solr": "2.* || 3.0 || 3.1" @@ -6221,8 +6478,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.20", - "datestamp": "1626684847", + "version": "8.x-1.28", + "datestamp": "1667814116", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6262,44 +6519,44 @@ }, { "name": "drupal/search_api_solr", - "version": "4.2.1", + "version": "4.2.10", "source": { "type": "git", "url": "https://git.drupalcode.org/project/search_api_solr.git", - "reference": "4.2.1" + "reference": "4.2.10" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/search_api_solr-4.2.1.zip", - "reference": "4.2.1", - "shasum": "54e40c7ce41cef8edfb92807f87db06b0b13e9c8" + "url": "https://ftp.drupal.org/files/projects/search_api_solr-4.2.10.zip", + "reference": "4.2.10", + "shasum": "28b1ccd5c462db92af3561103e9a33569a674387" }, "require": { "composer/semver": "^1.0|^3.0", "consolidation/annotated-command": "^2.12|^4.1", - "drupal/core": "^8.8 || ^9", - "drupal/search_api": "~1.17", + "drupal/core": "^9.3 || ^10.0", + "drupal/search_api": "~1.28", "ext-dom": "*", "ext-json": "*", "ext-simplexml": "*", "laminas/laminas-stdlib": "^3.2", - "maennchen/zipstream-php": "^1.2|^2.0", - "php": "^7.3|^8.0", - "solarium/solarium": "^6.1.5" + "maennchen/zipstream-php": "^2.2.1", + "php": ">=7.4", + "solarium/solarium": "^6.2.8" }, "conflict": { "drupal/acquia_search_solr": "<1.0.0-beta8", + "drupal/search_api_autocomplete": "<1.6.0", "drupal/search_api_solr_multilingual": "<3.0.0" }, "require-dev": { - "drupal/devel": "^4.0", - "drupal/facets": "1.x-dev", + "drupal/devel": "^4.0|^5.0", + "drupal/facets": "^3.0.x-dev", "drupal/geofield": "1.x-dev", "drupal/search_api_autocomplete": "1.x-dev", "drupal/search_api_location": "1.x-dev", "drupal/search_api_spellcheck": "3.x-dev", - "monolog/monolog": "^1.25", - "phayes/geophp": "^1.2" + "monolog/monolog": "^1.25|^3" }, "suggest": { "drupal/facets": "Provides facetted search.", @@ -6311,8 +6568,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "4.2.1", - "datestamp": "1628871708", + "version": "4.2.10", + "datestamp": "1671442326", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6320,7 +6577,7 @@ }, "drush": { "services": { - "drush.services.yml": "^9" + "drush.services.yml": ">=9" } } }, @@ -6364,28 +6621,28 @@ }, { "name": "drupal/simplesamlphp_auth", - "version": "3.2.0", + "version": "3.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/simplesamlphp_auth.git", - "reference": "8.x-3.2" + "reference": "8.x-3.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/simplesamlphp_auth-8.x-3.2.zip", - "reference": "8.x-3.2", - "shasum": "a5a2b10fc873eb8669929ad1a6d9599e47a2ca99" + "url": "https://ftp.drupal.org/files/projects/simplesamlphp_auth-8.x-3.3.zip", + "reference": "8.x-3.3", + "shasum": "14b33fc4e7c9a6a72de5a4ec32722200e7203d43" }, "require": { - "drupal/core": "^8.7|^9.0", - "drupal/externalauth": "^1.1", - "simplesamlphp/simplesamlphp": "^1.18.2" + "drupal/core": "^8.7||^9.0", + "drupal/externalauth": "^1.1||^2.0", + "simplesamlphp/simplesamlphp": "^1.18.2||^1.19" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.2", - "datestamp": "1580423953", + "version": "8.x-3.3", + "datestamp": "1660687554", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6434,28 +6691,27 @@ }, { "name": "drupal/sophron", - "version": "1.1.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/sophron.git", - "reference": "8.x-1.1" + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/sophron-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "afb3650458b15b87918471defa763f24880622ca" + "url": "https://ftp.drupal.org/files/projects/sophron-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "426dde53813e855317d6f7ef9fd6b104cc8a3e22" }, "require": { - "drupal/core": "^8.9 || ^9", - "fileeye/mimemap": "^1.1.4", - "php": ">=7.1" + "drupal/core": "^9.2 || ^10", + "fileeye/mimemap": "^2" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.1", - "datestamp": "1606047077", + "version": "8.x-1.3", + "datestamp": "1663598448", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6485,17 +6741,17 @@ }, { "name": "drupal/title_length", - "version": "1.1.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/title_length.git", - "reference": "8.x-1.1" + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/title_length-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "f8a961bcc4cde1bf7c0f57c0a7b6248ea9d92bd4" + "url": "https://ftp.drupal.org/files/projects/title_length-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "22a19724c3807b6847a84ae0a38df80eebe69360" }, "require": { "drupal/core": "^8 || ^9" @@ -6503,8 +6759,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.1", - "datestamp": "1591431505", + "version": "8.x-1.2", + "datestamp": "1631721151", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6537,26 +6793,26 @@ }, { "name": "drupal/token", - "version": "1.9.0", + "version": "1.11.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/token.git", - "reference": "8.x-1.9" + "reference": "8.x-1.11" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/token-8.x-1.9.zip", - "reference": "8.x-1.9", - "shasum": "a5d234382a1a0e4ba61d4c7a2fa10671ca656be4" + "url": "https://ftp.drupal.org/files/projects/token-8.x-1.11.zip", + "reference": "8.x-1.11", + "shasum": "da264b36d1f88eb0c74bf84e18e8789854f98400" }, "require": { - "drupal/core": "^8.8 || ^9" + "drupal/core": "^9.2 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.9", - "datestamp": "1608284866", + "version": "8.x-1.11", + "datestamp": "1659471813", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6606,26 +6862,26 @@ }, { "name": "drupal/transliterate_filenames", - "version": "1.5.0", + "version": "1.10.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/transliterate_filenames.git", - "reference": "8.x-1.5" + "reference": "8.x-1.10" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/transliterate_filenames-8.x-1.5.zip", - "reference": "8.x-1.5", - "shasum": "c2f103a188b8ea19f380fae29434e1064c40dd55" + "url": "https://ftp.drupal.org/files/projects/transliterate_filenames-8.x-1.10.zip", + "reference": "8.x-1.10", + "shasum": "8c88c6411fd94cac271e38736664538c54f243ec" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": "^8.7.7 || ^9.2" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.5", - "datestamp": "1606460881", + "version": "8.x-1.10", + "datestamp": "1644653446", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6661,21 +6917,21 @@ }, { "name": "drupal/views_data_export", - "version": "1.0.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/views_data_export.git", - "reference": "8.x-1.0" + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/views_data_export-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "f1d16fd06ee7574f680e30f6bf5d6a152e3e9f42" + "url": "https://ftp.drupal.org/files/projects/views_data_export-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "168c0d3de19f2182f2c1bc16066498342015970e" }, "require": { - "drupal/core": "^8.8 || ^9", - "drupal/csv_serialization": "~1.4 || ~2.0" + "drupal/core": "^9 || ^10", + "drupal/csv_serialization": "~1.4 || ~2.0 || ~3" }, "require-dev": { "drupal/search_api": "~1.12", @@ -6684,8 +6940,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0", - "datestamp": "1592589996", + "version": "8.x-1.2", + "datestamp": "1665515238", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6730,26 +6986,26 @@ }, { "name": "drupal/workbench", - "version": "1.3.0", + "version": "1.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/workbench.git", - "reference": "8.x-1.3" + "reference": "8.x-1.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/workbench-8.x-1.3.zip", - "reference": "8.x-1.3", - "shasum": "643d5f27503d7fceda8673812ca9a3bc25ed53e5" + "url": "https://ftp.drupal.org/files/projects/workbench-8.x-1.4.zip", + "reference": "8.x-1.4", + "shasum": "bec38d8c333c1b72402f2e66be29838b65235fcd" }, "require": { - "drupal/core": "^8.8 || ^9" + "drupal/core": "^8.8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.3", - "datestamp": "1590419810", + "version": "8.x-1.4", + "datestamp": "1666723245", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6798,29 +7054,32 @@ }, { "name": "drupal/workbench_access", - "version": "1.0.0-beta4", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/workbench_access.git", - "reference": "8.x-1.0-beta4" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/workbench_access-8.x-1.0-beta4.zip", - "reference": "8.x-1.0-beta4", - "shasum": "8d81c3daef91d89ecb3c0e3823ee0144b37889a8" + "url": "https://ftp.drupal.org/files/projects/workbench_access-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "9546c6c0269e5883551abab1f9b51d2d363404ae" }, "require": { "drupal/core": "^8.7.7 || ^9" }, + "require-dev": { + "drupal/inline_entity_form": "*" + }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0-beta4", - "datestamp": "1591119383", + "version": "8.x-1.1", + "datestamp": "1663772820", "security-coverage": { - "status": "not-covered", - "message": "Beta releases are not covered by Drupal security advisories." + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } }, "drush": { @@ -6855,16 +7114,16 @@ }, { "name": "drush/drush", - "version": "10.6.0", + "version": "10.6.2", "source": { "type": "git", "url": "https://github.com/drush-ops/drush.git", - "reference": "c86d327359baddb0a2f51bb458703826469a0445" + "reference": "0a570a16ec63259eb71195aba5feab532318b337" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drush-ops/drush/zipball/c86d327359baddb0a2f51bb458703826469a0445", - "reference": "c86d327359baddb0a2f51bb458703826469a0445", + "url": "https://api.github.com/repos/drush-ops/drush/zipball/0a570a16ec63259eb71195aba5feab532318b337", + "reference": "0a570a16ec63259eb71195aba5feab532318b337", "shasum": "" }, "require": { @@ -6872,17 +7131,17 @@ "composer/semver": "^1.4 || ^3", "consolidation/config": "^1.2", "consolidation/filter-via-dot-access-data": "^1", - "consolidation/robo": "^1.4.11 || ^2", + "consolidation/robo": "^1.4.11 || ^2 || ^3", "consolidation/site-alias": "^3.0.0@stable", "consolidation/site-process": "^2.1 || ^4", "enlightn/security-checker": "^1", "ext-dom": "*", "grasmash/yaml-expander": "^1.1.1", "guzzlehttp/guzzle": "^6.3 || ^7.0", - "league/container": "~2", + "league/container": "^2.5 || ^3.4", "php": ">=7.1.3", "psr/log": "~1.0", - "psy/psysh": "~0.6", + "psy/psysh": ">=0.6 <0.11", "symfony/event-dispatcher": "^3.4 || ^4.0", "symfony/finder": "^3.4 || ^4.0 || ^5", "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0", @@ -6988,7 +7247,7 @@ "irc": "irc://irc.freenode.org/drush", "issues": "https://github.com/drush-ops/drush/issues", "slack": "https://drupal.slack.com/messages/C62H9CWQM", - "source": "https://github.com/drush-ops/drush/tree/10.6.0" + "source": "https://github.com/drush-ops/drush/tree/10.6.2" }, "funding": [ { @@ -6996,7 +7255,7 @@ "type": "github" } ], - "time": "2021-08-13T10:40:40+00:00" + "time": "2021-12-15T17:09:54+00:00" }, { "name": "easyrdf/easyrdf", @@ -7143,30 +7402,30 @@ }, { "name": "enlightn/security-checker", - "version": "v1.9.0", + "version": "v1.10.0", "source": { "type": "git", "url": "https://github.com/enlightn/security-checker.git", - "reference": "dc5bce653fa4d9c792e9dcffa728c0642847c1e1" + "reference": "196bacc76e7a72a63d0e1220926dbb190272db97" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/enlightn/security-checker/zipball/dc5bce653fa4d9c792e9dcffa728c0642847c1e1", - "reference": "dc5bce653fa4d9c792e9dcffa728c0642847c1e1", + "url": "https://api.github.com/repos/enlightn/security-checker/zipball/196bacc76e7a72a63d0e1220926dbb190272db97", + "reference": "196bacc76e7a72a63d0e1220926dbb190272db97", "shasum": "" }, "require": { "ext-json": "*", "guzzlehttp/guzzle": "^6.3|^7.0", "php": ">=5.6", - "symfony/console": "^3.4|^4|^5", - "symfony/finder": "^3|^4|^5", - "symfony/process": "^3.4|^4|^5", - "symfony/yaml": "^3.4|^4|^5" + "symfony/console": "^3.4|^4|^5|^6", + "symfony/finder": "^3|^4|^5|^6", + "symfony/process": "^3.4|^4|^5|^6", + "symfony/yaml": "^3.4|^4|^5|^6" }, "require-dev": { "ext-zip": "*", - "friendsofphp/php-cs-fixer": "^2.18", + "friendsofphp/php-cs-fixer": "^2.18|^3.0", "phpunit/phpunit": "^5.5|^6|^7|^8|^9" }, "bin": [ @@ -7203,36 +7462,39 @@ ], "support": { "issues": "https://github.com/enlightn/security-checker/issues", - "source": "https://github.com/enlightn/security-checker/tree/v1.9.0" + "source": "https://github.com/enlightn/security-checker/tree/v1.10.0" }, - "time": "2021-05-06T09:03:35+00:00" + "time": "2022-02-21T22:40:16+00:00" }, { "name": "fileeye/mimemap", - "version": "1.1.5", + "version": "2.0.0", "source": { "type": "git", "url": "https://github.com/FileEye/MimeMap.git", - "reference": "9efaad84adce38f2ee49331b2bd684c83fd9aa3b" + "reference": "24144b7dc84168e14e4fc893d654c4fb40628346" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/FileEye/MimeMap/zipball/9efaad84adce38f2ee49331b2bd684c83fd9aa3b", - "reference": "9efaad84adce38f2ee49331b2bd684c83fd9aa3b", + "url": "https://api.github.com/repos/FileEye/MimeMap/zipball/24144b7dc84168e14e4fc893d654c4fb40628346", + "reference": "24144b7dc84168e14e4fc893d654c4fb40628346", "shasum": "" }, "require": { - "php": ">=5.4" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "<10", - "sebastian/comparator": "*", - "sebastian/diff": "*", - "squizlabs/php_codesniffer": "*", - "symfony/console": "*", - "symfony/filesystem": "*", - "symfony/var-dumper": "*", - "symfony/yaml": "*" + "composer-runtime-api": "^2.0.0", + "phpstan/phpstan": "^1.2", + "phpunit/phpunit": "^9", + "sebastian/comparator": ">=4", + "sebastian/diff": ">=4", + "squizlabs/php_codesniffer": ">=3.6", + "symfony/console": ">=5.4", + "symfony/filesystem": ">=5.4", + "symfony/var-dumper": ">=5.4", + "symfony/yaml": ">=5.4", + "vimeo/psalm": "^4.23" }, "bin": [ "bin/fileeye-mimemap" @@ -7240,7 +7502,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.x-dev" + "dev-master": "2.x-dev" } }, "autoload": { @@ -7262,22 +7524,22 @@ ], "support": { "issues": "https://github.com/FileEye/MimeMap/issues", - "source": "https://github.com/FileEye/MimeMap/tree/1.1.5" + "source": "https://github.com/FileEye/MimeMap/tree/2.0.0" }, - "time": "2021-04-02T20:21:45+00:00" + "time": "2022-07-17T13:00:20+00:00" }, { "name": "firebase/php-jwt", - "version": "v5.4.0", + "version": "v5.5.1", "source": { "type": "git", "url": "https://github.com/firebase/php-jwt.git", - "reference": "d2113d9b2e0e349796e72d2a63cf9319100382d2" + "reference": "83b609028194aa042ea33b5af2d41a7427de80e6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/firebase/php-jwt/zipball/d2113d9b2e0e349796e72d2a63cf9319100382d2", - "reference": "d2113d9b2e0e349796e72d2a63cf9319100382d2", + "url": "https://api.github.com/repos/firebase/php-jwt/zipball/83b609028194aa042ea33b5af2d41a7427de80e6", + "reference": "83b609028194aa042ea33b5af2d41a7427de80e6", "shasum": "" }, "require": { @@ -7319,22 +7581,22 @@ ], "support": { "issues": "https://github.com/firebase/php-jwt/issues", - "source": "https://github.com/firebase/php-jwt/tree/v5.4.0" + "source": "https://github.com/firebase/php-jwt/tree/v5.5.1" }, - "time": "2021-06-23T19:00:23+00:00" + "time": "2021-11-08T20:18:51+00:00" }, { "name": "gettext/gettext", - "version": "v4.8.5", + "version": "v4.8.8", "source": { "type": "git", "url": "https://github.com/php-gettext/Gettext.git", - "reference": "ef2e312dff383fc0e4cd62dd39042e1157f137d4" + "reference": "302a00aa9d6762c92c884d879c15d3ed05d6a37d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-gettext/Gettext/zipball/ef2e312dff383fc0e4cd62dd39042e1157f137d4", - "reference": "ef2e312dff383fc0e4cd62dd39042e1157f137d4", + "url": "https://api.github.com/repos/php-gettext/Gettext/zipball/302a00aa9d6762c92c884d879c15d3ed05d6a37d", + "reference": "302a00aa9d6762c92c884d879c15d3ed05d6a37d", "shasum": "" }, "require": { @@ -7386,7 +7648,7 @@ "support": { "email": "oom@oscarotero.com", "issues": "https://github.com/oscarotero/Gettext/issues", - "source": "https://github.com/php-gettext/Gettext/tree/v4.8.5" + "source": "https://github.com/php-gettext/Gettext/tree/v4.8.8" }, "funding": [ { @@ -7402,20 +7664,20 @@ "type": "patreon" } ], - "time": "2021-07-13T16:45:53+00:00" + "time": "2022-12-08T11:59:50+00:00" }, { "name": "gettext/languages", - "version": "2.8.1", + "version": "2.10.0", "source": { "type": "git", "url": "https://github.com/php-gettext/Languages.git", - "reference": "4ad818b6341e177b7c508ec4c37e18932a7b788a" + "reference": "4d61d67fe83a2ad85959fe6133d6d9ba7dddd1ab" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-gettext/Languages/zipball/4ad818b6341e177b7c508ec4c37e18932a7b788a", - "reference": "4ad818b6341e177b7c508ec4c37e18932a7b788a", + "url": "https://api.github.com/repos/php-gettext/Languages/zipball/4d61d67fe83a2ad85959fe6133d6d9ba7dddd1ab", + "reference": "4d61d67fe83a2ad85959fe6133d6d9ba7dddd1ab", "shasum": "" }, "require": { @@ -7464,7 +7726,7 @@ ], "support": { "issues": "https://github.com/php-gettext/Languages/issues", - "source": "https://github.com/php-gettext/Languages/tree/2.8.1" + "source": "https://github.com/php-gettext/Languages/tree/2.10.0" }, "funding": [ { @@ -7476,7 +7738,7 @@ "type": "github" } ], - "time": "2021-07-14T15:03:58+00:00" + "time": "2022-10-18T15:00:10+00:00" }, { "name": "grasmash/expander", @@ -7905,12 +8167,12 @@ "source": { "type": "git", "url": "https://github.com/roblib/islandora_fits.git", - "reference": "586427738cd9e2724d1ee3aeff8b42d114b518a6" + "reference": "f03b4eeff3598a9b81aad614f8aecd62cf14d81d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/roblib/islandora_fits/zipball/586427738cd9e2724d1ee3aeff8b42d114b518a6", - "reference": "586427738cd9e2724d1ee3aeff8b42d114b518a6", + "url": "https://api.github.com/repos/roblib/islandora_fits/zipball/f03b4eeff3598a9b81aad614f8aecd62cf14d81d", + "reference": "f03b4eeff3598a9b81aad614f8aecd62cf14d81d", "shasum": "" }, "require": { @@ -7931,7 +8193,7 @@ "issues": "https://www.drupal.org/project/issues/islandora_fits", "source": "http://cgit.drupalcode.org/islandora_fits" }, - "time": "2021-01-14T23:01:15+00:00" + "time": "2022-09-23T14:27:40+00:00" }, { "name": "islandora/carapace", @@ -7939,12 +8201,12 @@ "source": { "type": "git", "url": "https://github.com/Islandora/carapace.git", - "reference": "30e66191ff3ec46795832a6ea35f5a3f73b2a82e" + "reference": "8eb604852044beeb04f60baf9e684ab66154a0ea" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Islandora/carapace/zipball/30e66191ff3ec46795832a6ea35f5a3f73b2a82e", - "reference": "30e66191ff3ec46795832a6ea35f5a3f73b2a82e", + "url": "https://api.github.com/repos/Islandora/carapace/zipball/8eb604852044beeb04f60baf9e684ab66154a0ea", + "reference": "8eb604852044beeb04f60baf9e684ab66154a0ea", "shasum": "" }, "require": { @@ -7985,17 +8247,76 @@ "source": "https://github.com/Islandora/carapace/tree/4.0.1" }, "abandoned": true, - "time": "2021-04-21T13:06:26+00:00" + "time": "2022-10-15T16:33:10+00:00" }, { "name": "islandora/chullo", - "version": "dev-dev", + "version": "1.2.0", "source": { "type": "git", "url": "https://github.com/Islandora/chullo.git", "reference": "d563d5e48ef9b15dcf45029277bbc2f6eeef2454" }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Islandora/chullo/zipball/d563d5e48ef9b15dcf45029277bbc2f6eeef2454", + "reference": "d563d5e48ef9b15dcf45029277bbc2f6eeef2454", + "shasum": "" + }, + "require": { + "easyrdf/easyrdf": "^0.9 || ^1", + "guzzlehttp/guzzle": "^6.1.0", + "ml/json-ld": "^1.0.4", + "php": "^7.3 || ^7.4" + }, + "require-dev": { + "mockery/mockery": "^0.9", + "phpunit/phpunit": "^9.0", + "sebastian/phpcpd": "^6.0", + "squizlabs/php_codesniffer": "^3.0" + }, "type": "library", + "autoload": { + "psr-4": { + "Islandora\\Chullo\\": "src/" + } + }, + "scripts": { + "check": [ + "vendor/bin/phpcs --standard=PSR2 src test", + "vendor/bin/phpcpd --suffix *.php src test" + ], + "test": [ + "@check", + "vendor/bin/phpunit" + ] + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Islandora Foundation", + "email": "community@islandora.ca", + "role": "Owner" + }, + { + "name": "Daniel Lamb", + "email": "dlamb@islandora.ca", + "role": "Maintainer" + }, + { + "name": "Nick Ruest", + "email": "ruestn@gmail.com", + "role": "Maintainer" + } + ], + "description": "A PHP client for interacting with a Fedora 4 server.", + "homepage": "https://github.com/Islandora/chullo", + "support": { + "issues": "https://github.com/Islandora/documentation/issues", + "source": "https://github.com/Islandora/chullo/tree/1.2.0" + }, "time": "2021-05-05T17:38:36+00:00" }, { @@ -8031,14 +8352,22 @@ "sebastian/phpcpd": "^6.0", "squizlabs/php_codesniffer": "^3.0" }, - "default-branch": true, "type": "library", "autoload": { "psr-4": { "Islandora\\Crayfish\\Commons\\": "src/" } }, - "notification-url": "https://packagist.org/downloads/", + "scripts": { + "check": [ + "vendor/bin/phpcs --standard=PSR2 src tests", + "vendor/bin/phpcpd --suffix *.php src tests" + ], + "test": [ + "@check", + "vendor/bin/phpunit" + ] + }, "license": [ "MIT" ], @@ -8068,12 +8397,12 @@ "source": { "type": "git", "url": "https://github.com/Islandora/islandora.git", - "reference": "aa94c9afa50cdc6d31d68943bb52e1d6e2976c2b" + "reference": "2923a1a8b9303569fdea4bdbf580c1f56e3ed033" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Islandora/islandora/zipball/aa94c9afa50cdc6d31d68943bb52e1d6e2976c2b", - "reference": "aa94c9afa50cdc6d31d68943bb52e1d6e2976c2b", + "url": "https://api.github.com/repos/Islandora/islandora/zipball/2923a1a8b9303569fdea4bdbf580c1f56e3ed033", + "reference": "2923a1a8b9303569fdea4bdbf580c1f56e3ed033", "shasum": "" }, "require": { @@ -8129,7 +8458,7 @@ "issues": "https://github.com/Islandora/documentation/issues", "source": "https://github.com/Islandora/islandora/tree/8.x-1.x" }, - "time": "2021-08-18T17:21:32+00:00" + "time": "2021-10-04T15:56:49+00:00" }, { "name": "islandora/jsonld", @@ -8137,12 +8466,12 @@ "source": { "type": "git", "url": "https://github.com/Islandora/jsonld.git", - "reference": "dfd99c4c1beac54efc0eaa6cdbadc01d4918fd6c" + "reference": "7f169128a638562dba8f7f9109a8e01c6a59e69c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Islandora/jsonld/zipball/dfd99c4c1beac54efc0eaa6cdbadc01d4918fd6c", - "reference": "dfd99c4c1beac54efc0eaa6cdbadc01d4918fd6c", + "url": "https://api.github.com/repos/Islandora/jsonld/zipball/7f169128a638562dba8f7f9109a8e01c6a59e69c", + "reference": "7f169128a638562dba8f7f9109a8e01c6a59e69c", "shasum": "" }, "require-dev": { @@ -8180,7 +8509,7 @@ "issues": "https://github.com/Islandora/documentation/issues", "source": "https://github.com/Islandora/jsonld/tree/2.x" }, - "time": "2021-05-03T15:37:22+00:00" + "time": "2021-09-21T14:54:18+00:00" }, { "name": "islandora/openseadragon", @@ -8320,12 +8649,12 @@ "source": { "type": "git", "url": "https://github.com/jhu-idc/idc_defaults.git", - "reference": "cb033a6f2e2423abec6d2dd66366c0e4da85b7d7" + "reference": "32b72a5c7faacf5647f311576761fd749fbe90c4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/jhu-idc/idc_defaults/zipball/cb033a6f2e2423abec6d2dd66366c0e4da85b7d7", - "reference": "cb033a6f2e2423abec6d2dd66366c0e4da85b7d7", + "url": "https://api.github.com/repos/jhu-idc/idc_defaults/zipball/32b72a5c7faacf5647f311576761fd749fbe90c4", + "reference": "32b72a5c7faacf5647f311576761fd749fbe90c4", "shasum": "" }, "require": { @@ -8339,7 +8668,7 @@ "source": "https://github.com/jhu-idc/idc_defaults/tree/main", "issues": "https://github.com/jhu-idc/idc_defaults/issues" }, - "time": "2021-10-05T14:45:02+00:00" + "time": "2022-07-21T20:41:01+00:00" }, { "name": "jhu-idc/idc_export", @@ -8347,12 +8676,12 @@ "source": { "type": "git", "url": "https://github.com/jhu-idc/idc_export.git", - "reference": "33c3b31ac884b9dc524ab864620d58660344a346" + "reference": "08f94f30b756728995833288162ae203fdbe6add" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/jhu-idc/idc_export/zipball/33c3b31ac884b9dc524ab864620d58660344a346", - "reference": "33c3b31ac884b9dc524ab864620d58660344a346", + "url": "https://api.github.com/repos/jhu-idc/idc_export/zipball/08f94f30b756728995833288162ae203fdbe6add", + "reference": "08f94f30b756728995833288162ae203fdbe6add", "shasum": "" }, "require": { @@ -8374,7 +8703,7 @@ "source": "https://github.com/jhu-idc/idc_export/tree/main", "issues": "https://github.com/jhu-idc/idc_export/issues" }, - "time": "2021-11-03T14:42:44+00:00" + "time": "2022-07-21T20:38:58+00:00" }, { "name": "jhu-idc/idc_ui_module", @@ -8397,7 +8726,7 @@ "source": "https://github.com/jhu-idc/idc_ui_module/tree/main", "issues": "https://github.com/jhu-idc/idc_ui_module/issues" }, - "time": "2022-12-14T16:34:58+00:00" + "time": "2022-12-15T17:09:58+00:00" }, { "name": "jhu-idc/islandora_defaults", @@ -8880,37 +9209,39 @@ }, { "name": "league/container", - "version": "2.5.0", + "version": "3.4.1", "source": { "type": "git", "url": "https://github.com/thephpleague/container.git", - "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3" + "reference": "84ecbc2dbecc31bd23faf759a0e329ee49abddbd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/container/zipball/8438dc47a0674e3378bcce893a0a04d79a2c22b3", - "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3", + "url": "https://api.github.com/repos/thephpleague/container/zipball/84ecbc2dbecc31bd23faf759a0e329ee49abddbd", + "reference": "84ecbc2dbecc31bd23faf759a0e329ee49abddbd", "shasum": "" }, "require": { - "container-interop/container-interop": "^1.2", - "php": "^5.4 || ^7.0 || ^8.0" + "php": "^7.0 || ^8.0", + "psr/container": "^1.0.0" }, "provide": { - "container-interop/container-interop-implementation": "^1.2", "psr/container-implementation": "^1.0" }, "replace": { "orno/di": "~2.0" }, "require-dev": { - "phpunit/phpunit": "^4.8.36", - "scrutinizer/ocular": "^1.3", + "phpunit/phpunit": "^6.0 || ^7.0", + "roave/security-advisories": "dev-latest", + "scrutinizer/ocular": "^1.8", "squizlabs/php_codesniffer": "^3.5" }, "type": "library", "extra": { "branch-alias": { + "dev-master": "3.x-dev", + "dev-3.x": "3.x-dev", "dev-2.x": "2.x-dev", "dev-1.x": "1.x-dev" } @@ -8945,7 +9276,7 @@ ], "support": { "issues": "https://github.com/thephpleague/container/issues", - "source": "https://github.com/thephpleague/container/tree/2.5.0" + "source": "https://github.com/thephpleague/container/tree/3.4.1" }, "funding": [ { @@ -8953,35 +9284,35 @@ "type": "github" } ], - "time": "2021-02-22T09:20:06+00:00" + "time": "2021-07-09T08:23:52+00:00" }, { "name": "league/csv", - "version": "9.7.1", + "version": "9.8.0", "source": { "type": "git", "url": "https://github.com/thephpleague/csv.git", - "reference": "0ec57e8264ec92565974ead0d1724cf1026e10c1" + "reference": "9d2e0265c5d90f5dd601bc65ff717e05cec19b47" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/csv/zipball/0ec57e8264ec92565974ead0d1724cf1026e10c1", - "reference": "0ec57e8264ec92565974ead0d1724cf1026e10c1", + "url": "https://api.github.com/repos/thephpleague/csv/zipball/9d2e0265c5d90f5dd601bc65ff717e05cec19b47", + "reference": "9d2e0265c5d90f5dd601bc65ff717e05cec19b47", "shasum": "" }, "require": { "ext-json": "*", "ext-mbstring": "*", - "php": "^7.3 || ^8.0" + "php": "^7.4 || ^8.0" }, "require-dev": { "ext-curl": "*", "ext-dom": "*", - "friendsofphp/php-cs-fixer": "^2.16", - "phpstan/phpstan": "^0.12.0", - "phpstan/phpstan-phpunit": "^0.12.0", - "phpstan/phpstan-strict-rules": "^0.12.0", - "phpunit/phpunit": "^9.5" + "friendsofphp/php-cs-fixer": "^v3.4.0", + "phpstan/phpstan": "^1.3.0", + "phpstan/phpstan-phpunit": "^1.0.0", + "phpstan/phpstan-strict-rules": "^1.1.0", + "phpunit/phpunit": "^9.5.11" }, "suggest": { "ext-dom": "Required to use the XMLConverter and or the HTMLConverter classes", @@ -9014,7 +9345,7 @@ } ], "description": "CSV data manipulation made easy in PHP", - "homepage": "http://csv.thephpleague.com", + "homepage": "https://csv.thephpleague.com", "keywords": [ "convert", "csv", @@ -9037,20 +9368,20 @@ "type": "github" } ], - "time": "2021-04-17T16:32:08+00:00" + "time": "2022-01-04T00:13:07+00:00" }, { "name": "league/flysystem", - "version": "1.1.5", + "version": "1.1.10", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem.git", - "reference": "18634df356bfd4119fe3d6156bdb990c414c14ea" + "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/18634df356bfd4119fe3d6156bdb990c414c14ea", - "reference": "18634df356bfd4119fe3d6156bdb990c414c14ea", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1", + "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1", "shasum": "" }, "require": { @@ -9123,7 +9454,7 @@ ], "support": { "issues": "https://github.com/thephpleague/flysystem/issues", - "source": "https://github.com/thephpleague/flysystem/tree/1.1.5" + "source": "https://github.com/thephpleague/flysystem/tree/1.1.10" }, "funding": [ { @@ -9131,7 +9462,7 @@ "type": "other" } ], - "time": "2021-08-17T13:49:42+00:00" + "time": "2022-10-04T09:16:37+00:00" }, { "name": "league/flysystem-replicate-adapter", @@ -9185,16 +9516,16 @@ }, { "name": "league/mime-type-detection", - "version": "1.7.0", + "version": "1.11.0", "source": { "type": "git", "url": "https://github.com/thephpleague/mime-type-detection.git", - "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3" + "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3", - "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3", + "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd", + "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd", "shasum": "" }, "require": { @@ -9202,7 +9533,7 @@ "php": "^7.2 || ^8.0" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^2.18", + "friendsofphp/php-cs-fixer": "^3.2", "phpstan/phpstan": "^0.12.68", "phpunit/phpunit": "^8.5.8 || ^9.3" }, @@ -9225,7 +9556,7 @@ "description": "Mime-type detection for Flysystem", "support": { "issues": "https://github.com/thephpleague/mime-type-detection/issues", - "source": "https://github.com/thephpleague/mime-type-detection/tree/1.7.0" + "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0" }, "funding": [ { @@ -9237,20 +9568,20 @@ "type": "tidelift" } ], - "time": "2021-01-18T20:58:21+00:00" + "time": "2022-04-17T13:12:02+00:00" }, { "name": "lsolesen/pel", - "version": "0.9.10", + "version": "0.9.12", "source": { "type": "git", "url": "https://github.com/pel/pel.git", - "reference": "04ecb8a29e4b1628414193b0df9294232a44f8a9" + "reference": "b95fe29cdacf9d36330da277f10910a13648c84c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pel/pel/zipball/04ecb8a29e4b1628414193b0df9294232a44f8a9", - "reference": "04ecb8a29e4b1628414193b0df9294232a44f8a9", + "url": "https://api.github.com/repos/pel/pel/zipball/b95fe29cdacf9d36330da277f10910a13648c84c", + "reference": "b95fe29cdacf9d36330da277f10910a13648c84c", "shasum": "" }, "require": { @@ -9295,35 +9626,38 @@ ], "support": { "issues": "https://github.com/pel/pel/issues", - "source": "https://github.com/pel/pel/tree/0.9.10" + "source": "https://github.com/pel/pel/tree/0.9.12" }, - "time": "2021-01-01T22:15:50+00:00" + "time": "2022-02-18T13:20:54+00:00" }, { "name": "maennchen/zipstream-php", - "version": "2.1.0", + "version": "2.2.6", "source": { "type": "git", "url": "https://github.com/maennchen/ZipStream-PHP.git", - "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58" + "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58", - "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58", + "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f", + "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f", "shasum": "" }, "require": { "myclabs/php-enum": "^1.5", - "php": ">= 7.1", + "php": "^7.4 || ^8.0", "psr/http-message": "^1.0", "symfony/polyfill-mbstring": "^1.0" }, "require-dev": { "ext-zip": "*", - "guzzlehttp/guzzle": ">= 6.3", + "friendsofphp/php-cs-fixer": "^3.9", + "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0", "mikey179/vfsstream": "^1.6", - "phpunit/phpunit": ">= 7.5" + "php-coveralls/php-coveralls": "^2.4", + "phpunit/phpunit": "^8.5.8 || ^9.4.2", + "vimeo/psalm": "^4.1" }, "type": "library", "autoload": { @@ -9360,7 +9694,7 @@ ], "support": { "issues": "https://github.com/maennchen/ZipStream-PHP/issues", - "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.1.0" + "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.2.6" }, "funding": [ { @@ -9372,7 +9706,7 @@ "type": "open_collective" } ], - "time": "2020-05-30T13:11:16+00:00" + "time": "2022-11-25T18:57:19+00:00" }, { "name": "masonry/masonry", @@ -9453,18 +9787,122 @@ }, "time": "2022-08-18T16:18:26+00:00" }, + { + "name": "ml/iri", + "version": "1.1.4", + "target-dir": "ML/IRI", + "source": { + "type": "git", + "url": "https://github.com/lanthaler/IRI.git", + "reference": "cbd44fa913e00ea624241b38cefaa99da8d71341" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/lanthaler/IRI/zipball/cbd44fa913e00ea624241b38cefaa99da8d71341", + "reference": "cbd44fa913e00ea624241b38cefaa99da8d71341", + "shasum": "" + }, + "require": { + "lib-pcre": ">=4.0", + "php": ">=5.3.0" + }, + "type": "library", + "autoload": { + "psr-0": { + "ML\\IRI": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Markus Lanthaler", + "email": "mail@markus-lanthaler.com", + "homepage": "http://www.markus-lanthaler.com", + "role": "Developer" + } + ], + "description": "IRI handling for PHP", + "homepage": "http://www.markus-lanthaler.com", + "keywords": [ + "URN", + "iri", + "uri", + "url" + ], + "support": { + "issues": "https://github.com/lanthaler/IRI/issues", + "source": "https://github.com/lanthaler/IRI/tree/master" + }, + "time": "2014-01-21T13:43:39+00:00" + }, + { + "name": "ml/json-ld", + "version": "1.2.1", + "source": { + "type": "git", + "url": "https://github.com/lanthaler/JsonLD.git", + "reference": "537e68e87a6bce23e57c575cd5dcac1f67ce25d8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/lanthaler/JsonLD/zipball/537e68e87a6bce23e57c575cd5dcac1f67ce25d8", + "reference": "537e68e87a6bce23e57c575cd5dcac1f67ce25d8", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ml/iri": "^1.1.1", + "php": ">=5.3.0" + }, + "require-dev": { + "json-ld/tests": "1.0", + "phpunit/phpunit": "^4" + }, + "type": "library", + "autoload": { + "psr-4": { + "ML\\JsonLD\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Markus Lanthaler", + "email": "mail@markus-lanthaler.com", + "homepage": "http://www.markus-lanthaler.com", + "role": "Developer" + } + ], + "description": "JSON-LD Processor for PHP", + "homepage": "http://www.markus-lanthaler.com", + "keywords": [ + "JSON-LD", + "jsonld" + ], + "support": { + "issues": "https://github.com/lanthaler/JsonLD/issues", + "source": "https://github.com/lanthaler/JsonLD/tree/1.2.1" + }, + "time": "2022-09-29T08:45:17+00:00" + }, { "name": "monolog/monolog", - "version": "1.26.1", + "version": "1.27.1", "source": { "type": "git", "url": "https://github.com/Seldaek/monolog.git", - "reference": "c6b00f05152ae2c9b04a448f99c7590beb6042f5" + "reference": "904713c5929655dc9b97288b69cfeedad610c9a1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/c6b00f05152ae2c9b04a448f99c7590beb6042f5", - "reference": "c6b00f05152ae2c9b04a448f99c7590beb6042f5", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/904713c5929655dc9b97288b69cfeedad610c9a1", + "reference": "904713c5929655dc9b97288b69cfeedad610c9a1", "shasum": "" }, "require": { @@ -9525,7 +9963,7 @@ ], "support": { "issues": "https://github.com/Seldaek/monolog/issues", - "source": "https://github.com/Seldaek/monolog/tree/1.26.1" + "source": "https://github.com/Seldaek/monolog/tree/1.27.1" }, "funding": [ { @@ -9537,7 +9975,7 @@ "type": "tidelift" } ], - "time": "2021-05-28T08:32:12+00:00" + "time": "2022-06-09T08:53:42+00:00" }, { "name": "mtdowling/jmespath.php", @@ -9602,16 +10040,16 @@ }, { "name": "myclabs/php-enum", - "version": "1.8.3", + "version": "1.8.4", "source": { "type": "git", "url": "https://github.com/myclabs/php-enum.git", - "reference": "b942d263c641ddb5190929ff840c68f78713e937" + "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/php-enum/zipball/b942d263c641ddb5190929ff840c68f78713e937", - "reference": "b942d263c641ddb5190929ff840c68f78713e937", + "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483", + "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483", "shasum": "" }, "require": { @@ -9627,7 +10065,10 @@ "autoload": { "psr-4": { "MyCLabs\\Enum\\": "src/" - } + }, + "classmap": [ + "stubs/Stringable.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -9646,7 +10087,7 @@ ], "support": { "issues": "https://github.com/myclabs/php-enum/issues", - "source": "https://github.com/myclabs/php-enum/tree/1.8.3" + "source": "https://github.com/myclabs/php-enum/tree/1.8.4" }, "funding": [ { @@ -9658,7 +10099,7 @@ "type": "tidelift" } ], - "time": "2021-07-05T08:18:36+00:00" + "time": "2022-08-04T09:53:51+00:00" }, { "name": "namshi/jose", @@ -10023,20 +10464,23 @@ }, { "name": "phenx/php-font-lib", - "version": "0.5.2", + "version": "0.5.4", "source": { "type": "git", - "url": "https://github.com/PhenX/php-font-lib.git", - "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8" + "url": "https://github.com/dompdf/php-font-lib.git", + "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PhenX/php-font-lib/zipball/ca6ad461f032145fff5971b5985e5af9e7fa88d8", - "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8", + "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/dd448ad1ce34c63d09baccd05415e361300c35b4", + "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4", "shasum": "" }, + "require": { + "ext-mbstring": "*" + }, "require-dev": { - "phpunit/phpunit": "^4.8.35 || ^5 || ^6 || ^7" + "symfony/phpunit-bridge": "^3 || ^4 || ^5" }, "type": "library", "autoload": { @@ -10057,10 +10501,10 @@ "description": "A library to read, parse, export and make subsets of different types of font files.", "homepage": "https://github.com/PhenX/php-font-lib", "support": { - "issues": "https://github.com/PhenX/php-font-lib/issues", - "source": "https://github.com/PhenX/php-font-lib/tree/0.5.2" + "issues": "https://github.com/dompdf/php-font-lib/issues", + "source": "https://github.com/dompdf/php-font-lib/tree/0.5.4" }, - "time": "2020-03-08T15:31:32+00:00" + "time": "2021-12-17T19:44:54+00:00" }, { "name": "phpfastcache/riak-client", @@ -10140,16 +10584,16 @@ }, { "name": "phpmailer/phpmailer", - "version": "v6.5.1", + "version": "v6.7.1", "source": { "type": "git", "url": "https://github.com/PHPMailer/PHPMailer.git", - "reference": "dd803df5ad7492e1b40637f7ebd258fee5ca7355" + "reference": "49cd7ea3d2563f028d7811f06864a53b1f15ff55" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/dd803df5ad7492e1b40637f7ebd258fee5ca7355", - "reference": "dd803df5ad7492e1b40637f7ebd258fee5ca7355", + "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/49cd7ea3d2563f028d7811f06864a53b1f15ff55", + "reference": "49cd7ea3d2563f028d7811f06864a53b1f15ff55", "shasum": "" }, "require": { @@ -10159,22 +10603,24 @@ "php": ">=5.5.0" }, "require-dev": { - "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", - "doctrine/annotations": "^1.2", - "php-parallel-lint/php-console-highlighter": "^0.5.0", - "php-parallel-lint/php-parallel-lint": "^1.3", + "dealerdirect/phpcodesniffer-composer-installer": "^0.7.2", + "doctrine/annotations": "^1.2.6 || ^1.13.3", + "php-parallel-lint/php-console-highlighter": "^1.0.0", + "php-parallel-lint/php-parallel-lint": "^1.3.2", "phpcompatibility/php-compatibility": "^9.3.5", "roave/security-advisories": "dev-latest", - "squizlabs/php_codesniffer": "^3.6.0", - "yoast/phpunit-polyfills": "^1.0.0" + "squizlabs/php_codesniffer": "^3.7.1", + "yoast/phpunit-polyfills": "^1.0.4" }, "suggest": { "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses", + "ext-openssl": "Needed for secure SMTP sending and DKIM signing", + "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication", "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication", "league/oauth2-google": "Needed for Google XOAUTH2 authentication", "psr/log": "For optional PSR-3 debug logging", - "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication", - "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)" + "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)", + "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication" }, "type": "library", "autoload": { @@ -10206,7 +10652,7 @@ "description": "PHPMailer is a full-featured email creation and transfer class for PHP", "support": { "issues": "https://github.com/PHPMailer/PHPMailer/issues", - "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.5.1" + "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.7.1" }, "funding": [ { @@ -10214,33 +10660,37 @@ "type": "github" } ], - "time": "2021-08-18T09:14:16+00:00" + "time": "2022-12-08T13:30:06+00:00" }, { "name": "phpoption/phpoption", - "version": "1.7.5", + "version": "1.9.0", "source": { "type": "git", "url": "https://github.com/schmittjoh/php-option.git", - "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525" + "reference": "dc5ff11e274a90cc1c743f66c9ad700ce50db9ab" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525", - "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dc5ff11e274a90cc1c743f66c9ad700ce50db9ab", + "reference": "dc5ff11e274a90cc1c743f66c9ad700ce50db9ab", "shasum": "" }, "require": { - "php": "^5.5.9 || ^7.0 || ^8.0" + "php": "^7.2.5 || ^8.0" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.4.1", - "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0" + "bamarni/composer-bin-plugin": "^1.8", + "phpunit/phpunit": "^8.5.28 || ^9.5.21" }, "type": "library", "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": true + }, "branch-alias": { - "dev-master": "1.7-dev" + "dev-master": "1.9-dev" } }, "autoload": { @@ -10255,11 +10705,13 @@ "authors": [ { "name": "Johannes M. Schmitt", - "email": "schmittjoh@gmail.com" + "email": "schmittjoh@gmail.com", + "homepage": "https://github.com/schmittjoh" }, { "name": "Graham Campbell", - "email": "graham@alt-three.com" + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" } ], "description": "Option Type for PHP", @@ -10271,7 +10723,7 @@ ], "support": { "issues": "https://github.com/schmittjoh/php-option/issues", - "source": "https://github.com/schmittjoh/php-option/tree/1.7.5" + "source": "https://github.com/schmittjoh/php-option/tree/1.9.0" }, "funding": [ { @@ -10283,28 +10735,28 @@ "type": "tidelift" } ], - "time": "2020-07-20T17:29:33+00:00" + "time": "2022-07-30T15:51:26+00:00" }, { "name": "pimple/pimple", - "version": "v3.4.0", + "version": "v3.5.0", "source": { "type": "git", "url": "https://github.com/silexphp/Pimple.git", - "reference": "86406047271859ffc13424a048541f4531f53601" + "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/silexphp/Pimple/zipball/86406047271859ffc13424a048541f4531f53601", - "reference": "86406047271859ffc13424a048541f4531f53601", + "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed", + "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed", "shasum": "" }, "require": { "php": ">=7.2.5", - "psr/container": "^1.1" + "psr/container": "^1.1 || ^2.0" }, "require-dev": { - "symfony/phpunit-bridge": "^5.0" + "symfony/phpunit-bridge": "^5.4@dev" }, "type": "library", "extra": { @@ -10334,9 +10786,9 @@ "dependency injection" ], "support": { - "source": "https://github.com/silexphp/Pimple/tree/v3.4.0" + "source": "https://github.com/silexphp/Pimple/tree/v3.5.0" }, - "time": "2021-03-06T08:28:00+00:00" + "time": "2021-10-28T11:13:42+00:00" }, { "name": "psr/cache", @@ -10697,16 +11149,16 @@ }, { "name": "psy/psysh", - "version": "v0.10.8", + "version": "v0.10.12", "source": { "type": "git", "url": "https://github.com/bobthecow/psysh.git", - "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3" + "reference": "a0d9981aa07ecfcbea28e4bfa868031cca121e7d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bobthecow/psysh/zipball/e4573f47750dd6c92dca5aee543fa77513cbd8d3", - "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a0d9981aa07ecfcbea28e4bfa868031cca121e7d", + "reference": "a0d9981aa07ecfcbea28e4bfa868031cca121e7d", "shasum": "" }, "require": { @@ -10766,9 +11218,9 @@ ], "support": { "issues": "https://github.com/bobthecow/psysh/issues", - "source": "https://github.com/bobthecow/psysh/tree/v0.10.8" + "source": "https://github.com/bobthecow/psysh/tree/v0.10.12" }, - "time": "2021-04-10T16:23:39+00:00" + "time": "2021-11-30T14:05:36+00:00" }, { "name": "ralouphie/getallheaders", @@ -11124,29 +11576,30 @@ }, { "name": "simplesamlphp/composer-module-installer", - "version": "v1.1.8", + "version": "v1.2.0", "source": { "type": "git", "url": "https://github.com/simplesamlphp/composer-module-installer.git", - "reference": "45161b5406f3e9c82459d0f9a5a1dba064953cfa" + "reference": "27b4fe96198ffaff3ab49c87b40f4cb24de77b01" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/composer-module-installer/zipball/45161b5406f3e9c82459d0f9a5a1dba064953cfa", - "reference": "45161b5406f3e9c82459d0f9a5a1dba064953cfa", + "url": "https://api.github.com/repos/simplesamlphp/composer-module-installer/zipball/27b4fe96198ffaff3ab49c87b40f4cb24de77b01", + "reference": "27b4fe96198ffaff3ab49c87b40f4cb24de77b01", "shasum": "" }, "require": { - "composer-plugin-api": "^1.1|^2.0", + "composer-plugin-api": "^1.1 || ^2.0", + "php": "^7.4 || ^8.0", "simplesamlphp/simplesamlphp": "*" }, "type": "composer-plugin", "extra": { - "class": "SimpleSamlPhp\\Composer\\ModuleInstallerPlugin" + "class": "SimpleSAML\\Composer\\ModuleInstallerPlugin" }, "autoload": { - "psr-0": { - "SimpleSamlPhp\\Composer": "src/" + "psr-4": { + "SimpleSAML\\Composer\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -11156,22 +11609,22 @@ "description": "A Composer plugin that allows installing SimpleSAMLphp modules through Composer.", "support": { "issues": "https://github.com/simplesamlphp/composer-module-installer/issues", - "source": "https://github.com/simplesamlphp/composer-module-installer/tree/v1.1.8" + "source": "https://github.com/simplesamlphp/composer-module-installer/tree/v1.2.0" }, - "time": "2020-08-25T19:04:33+00:00" + "time": "2022-08-31T17:20:27+00:00" }, { "name": "simplesamlphp/saml2", - "version": "v4.2.4", + "version": "v4.6.5", "source": { "type": "git", "url": "https://github.com/simplesamlphp/saml2.git", - "reference": "8e3ad89b97d2f2f922f67894675e3460feab2209" + "reference": "35e4cac48ef97d454d25a92eb24c85cadf96de9d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/saml2/zipball/8e3ad89b97d2f2f922f67894675e3460feab2209", - "reference": "8e3ad89b97d2f2f922f67894675e3460feab2209", + "url": "https://api.github.com/repos/simplesamlphp/saml2/zipball/35e4cac48ef97d454d25a92eb24c85cadf96de9d", + "reference": "35e4cac48ef97d454d25a92eb24c85cadf96de9d", "shasum": "" }, "require": { @@ -11179,7 +11632,7 @@ "ext-openssl": "*", "ext-zlib": "*", "php": ">=7.1 || ^8.0", - "psr/log": "~1.1", + "psr/log": "~1.1 || ^2.0 || ^3.0", "robrichards/xmlseclibs": "^3.1.1", "webmozart/assert": "^1.9" }, @@ -11214,22 +11667,22 @@ "description": "SAML2 PHP library from SimpleSAMLphp", "support": { "issues": "https://github.com/simplesamlphp/saml2/issues", - "source": "https://github.com/simplesamlphp/saml2/tree/v4.2.4" + "source": "https://github.com/simplesamlphp/saml2/tree/v4.6.5" }, - "time": "2021-08-24T12:21:57+00:00" + "time": "2022-11-23T12:50:43+00:00" }, { "name": "simplesamlphp/simplesamlphp", - "version": "v1.19.1", + "version": "v1.19.7", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp.git", - "reference": "59e08962c3890fc7be737591c3743fcbf770baa3" + "reference": "f62565d62e0d4e5f105008608faa96949acf854b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp/zipball/59e08962c3890fc7be737591c3743fcbf770baa3", - "reference": "59e08962c3890fc7be737591c3743fcbf770baa3", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp/zipball/f62565d62e0d4e5f105008608faa96949acf854b", + "reference": "f62565d62e0d4e5f105008608faa96949acf854b", "shasum": "" }, "require": { @@ -11242,13 +11695,13 @@ "ext-pcre": "*", "ext-spl": "*", "ext-zlib": "*", - "gettext/gettext": "^4.8", - "php": ">=7.1 <8.0", + "gettext/gettext": "^4.8.7", + "php": ">=7.1|^8", "phpmailer/phpmailer": "^6.1", "robrichards/xmlseclibs": "^3.1", "simplesamlphp/assert": "^0.0.13", - "simplesamlphp/saml2": "^4.2", - "simplesamlphp/simplesamlphp-module-adfs": "^0.9", + "simplesamlphp/saml2": "^4.5", + "simplesamlphp/simplesamlphp-module-adfs": "^1.0", "simplesamlphp/simplesamlphp-module-authcrypt": "^0.9", "simplesamlphp/simplesamlphp-module-authfacebook": "^0.9", "simplesamlphp/simplesamlphp-module-authorize": "^0.9", @@ -11260,15 +11713,15 @@ "simplesamlphp/simplesamlphp-module-cdc": "^0.9", "simplesamlphp/simplesamlphp-module-consent": "^0.9", "simplesamlphp/simplesamlphp-module-consentadmin": "^0.9", - "simplesamlphp/simplesamlphp-module-discopower": "^0.9", + "simplesamlphp/simplesamlphp-module-discopower": "^0.10", "simplesamlphp/simplesamlphp-module-exampleattributeserver": "^1.0", "simplesamlphp/simplesamlphp-module-expirycheck": "^0.9", "simplesamlphp/simplesamlphp-module-ldap": "^0.9 | ^1.0", "simplesamlphp/simplesamlphp-module-memcachemonitor": "^0.9", "simplesamlphp/simplesamlphp-module-memcookie": "^1.2", - "simplesamlphp/simplesamlphp-module-metarefresh": "^0.9", + "simplesamlphp/simplesamlphp-module-metarefresh": "^0.10", "simplesamlphp/simplesamlphp-module-negotiate": "^0.9", - "simplesamlphp/simplesamlphp-module-oauth": "^0.9", + "simplesamlphp/simplesamlphp-module-oauth": "^0.9.3", "simplesamlphp/simplesamlphp-module-preprodwarning": "^0.9", "simplesamlphp/simplesamlphp-module-radius": "^0.9", "simplesamlphp/simplesamlphp-module-riak": "^0.9", @@ -11288,7 +11741,7 @@ "symfony/routing": "^4.4 || ^5.0", "symfony/var-exporter": "^4.4 || ^5.0", "symfony/yaml": "^4.4 || ^5.0", - "twig/twig": "^1.43 || ^2.0" + "twig/twig": "^2.15.3" }, "require-dev": { "ext-curl": "*", @@ -11348,32 +11801,30 @@ "issues": "https://github.com/simplesamlphp/simplesamlphp/issues", "source": "https://github.com/simplesamlphp/simplesamlphp" }, - "time": "2021-04-29T10:11:23+00:00" + "time": "2022-12-05T19:46:47+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-adfs", - "version": "v0.9.8", + "version": "v1.0.9", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-adfs.git", - "reference": "ac2ba46a6b94ed48b527ac190b0fa99bcda8d98e" + "reference": "c47daabc262b7e14a76879015fd9db85319752ec" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-adfs/zipball/ac2ba46a6b94ed48b527ac190b0fa99bcda8d98e", - "reference": "ac2ba46a6b94ed48b527ac190b0fa99bcda8d98e", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-adfs/zipball/c47daabc262b7e14a76879015fd9db85319752ec", + "reference": "c47daabc262b7e14a76879015fd9db85319752ec", "shasum": "" }, "require": { - "php": ">=5.6", - "simplesamlphp/composer-module-installer": "~1.1" + "php": ">=7.1", + "simplesamlphp/assert": "^0.0.13", + "simplesamlphp/composer-module-installer": "^1.1.7" }, "require-dev": { - "phpunit/phpunit": "~5.7", - "sensiolabs/security-checker": "^5.0", - "simplesamlphp/simplesamlphp": "^1.17", - "simplesamlphp/simplesamlphp-test-framework": "^0.0.15", - "webmozart/assert": "<1.7" + "simplesamlphp/simplesamlphp": "^1.18", + "simplesamlphp/simplesamlphp-test-framework": "^0.1.2" }, "type": "simplesamlphp-module", "autoload": { @@ -11397,23 +11848,23 @@ "simplesamlphp" ], "support": { - "issues": "https://github.com/tvdijen/simplesamlphp-module-adfs/issues", - "source": "https://github.com/tvdijen/simplesamlphp-module-adfs" + "issues": "https://github.com/simplesamlphp/simplesamlphp-module-adfs/issues", + "source": "https://github.com/simplesamlphp/simplesamlphp-module-adfs" }, - "time": "2021-08-17T07:54:07+00:00" + "time": "2022-04-11T10:24:25+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-authcrypt", - "version": "v0.9.3", + "version": "v0.9.4", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-authcrypt.git", - "reference": "9a2c1a761e2d94394a4f2d3499fd6f0853899530" + "reference": "62555123e61b11463be3cd7adb708562023cff28" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-authcrypt/zipball/9a2c1a761e2d94394a4f2d3499fd6f0853899530", - "reference": "9a2c1a761e2d94394a4f2d3499fd6f0853899530", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-authcrypt/zipball/62555123e61b11463be3cd7adb708562023cff28", + "reference": "62555123e61b11463be3cd7adb708562023cff28", "shasum": "" }, "require": { @@ -11451,7 +11902,7 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-authcrypt/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-authcrypt" }, - "time": "2021-01-08T09:09:33+00:00" + "time": "2022-01-03T20:50:47+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-authfacebook", @@ -11509,16 +11960,16 @@ }, { "name": "simplesamlphp/simplesamlphp-module-authorize", - "version": "v0.9.3", + "version": "v0.9.4", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-authorize.git", - "reference": "0593bfcb84fca9d9133f415246ab8ca51b412c92" + "reference": "4c7ce4eaa54fc301f131c62e803fc843e4d88056" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-authorize/zipball/0593bfcb84fca9d9133f415246ab8ca51b412c92", - "reference": "0593bfcb84fca9d9133f415246ab8ca51b412c92", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-authorize/zipball/4c7ce4eaa54fc301f131c62e803fc843e4d88056", + "reference": "4c7ce4eaa54fc301f131c62e803fc843e4d88056", "shasum": "" }, "require": { @@ -11554,20 +12005,20 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-authorize/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-authorize" }, - "time": "2021-03-24T10:37:17+00:00" + "time": "2022-01-03T20:56:53+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-authtwitter", - "version": "v0.9.1", + "version": "v0.9.3", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-authtwitter.git", - "reference": "29a15e58061222632fea9eb2c807aef5e2c0d54a" + "reference": "6e178e7aae7827a64dc462b5bb2f28d6eddc4381" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-authtwitter/zipball/29a15e58061222632fea9eb2c807aef5e2c0d54a", - "reference": "29a15e58061222632fea9eb2c807aef5e2c0d54a", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-authtwitter/zipball/6e178e7aae7827a64dc462b5bb2f28d6eddc4381", + "reference": "6e178e7aae7827a64dc462b5bb2f28d6eddc4381", "shasum": "" }, "require": { @@ -11577,7 +12028,8 @@ }, "require-dev": { "phpunit/phpunit": "~4.8.35", - "simplesamlphp/simplesamlphp": "^1.17" + "simplesamlphp/simplesamlphp": "^1.17", + "webmozart/assert": "<1.7" }, "type": "simplesamlphp-module", "autoload": { @@ -11587,7 +12039,7 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-3.0-or-later" + "LGPL-2.1-or-later" ], "authors": [ { @@ -11608,7 +12060,7 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-authtwitter/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-authtwitter" }, - "time": "2019-12-03T09:00:09+00:00" + "time": "2022-01-03T23:01:48+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-authwindowslive", @@ -11668,16 +12120,16 @@ }, { "name": "simplesamlphp/simplesamlphp-module-authx509", - "version": "v0.9.8", + "version": "v0.9.9", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-authX509.git", - "reference": "66525b1ec4145ec8d0d0e9db4534624b6be4c1fb" + "reference": "b138f41b2bc725371f42abb63b5a39ac11b5432a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-authX509/zipball/66525b1ec4145ec8d0d0e9db4534624b6be4c1fb", - "reference": "66525b1ec4145ec8d0d0e9db4534624b6be4c1fb", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-authX509/zipball/b138f41b2bc725371f42abb63b5a39ac11b5432a", + "reference": "b138f41b2bc725371f42abb63b5a39ac11b5432a", "shasum": "" }, "require": { @@ -11721,20 +12173,20 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-authx509/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-authx509" }, - "time": "2020-12-15T23:06:47+00:00" + "time": "2022-01-06T19:02:38+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-authyubikey", - "version": "v0.9.1", + "version": "v0.9.3", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-authyubikey.git", - "reference": "8c27bfeb4981d2e6fa40a831e945f40c5a4ad3d2" + "reference": "414e2a73da4adfee6d97ba66e852ec7c85369913" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-authyubikey/zipball/8c27bfeb4981d2e6fa40a831e945f40c5a4ad3d2", - "reference": "8c27bfeb4981d2e6fa40a831e945f40c5a4ad3d2", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-authyubikey/zipball/414e2a73da4adfee6d97ba66e852ec7c85369913", + "reference": "414e2a73da4adfee6d97ba66e852ec7c85369913", "shasum": "" }, "require": { @@ -11748,7 +12200,7 @@ }, "type": "simplesamlphp-module", "extra": { - "ssp-mixedcase-module-name": "authYubikey" + "ssp-mixedcase-module-name": "authYubiKey" }, "autoload": { "psr-4": { @@ -11757,7 +12209,7 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-3.0-or-later" + "LGPL-2.1-or-later" ], "authors": [ { @@ -11774,7 +12226,7 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-authyubikey/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-authyubikey" }, - "time": "2019-12-03T08:52:49+00:00" + "time": "2022-01-06T19:07:32+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-cas", @@ -11829,16 +12281,16 @@ }, { "name": "simplesamlphp/simplesamlphp-module-cdc", - "version": "v0.9.1", + "version": "v0.9.2", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-cdc.git", - "reference": "16a5bfac7299e04e5feb472af328e07598708166" + "reference": "92498fc3004c02849d96da29ca472d99ed23af73" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-cdc/zipball/16a5bfac7299e04e5feb472af328e07598708166", - "reference": "16a5bfac7299e04e5feb472af328e07598708166", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-cdc/zipball/92498fc3004c02849d96da29ca472d99ed23af73", + "reference": "92498fc3004c02849d96da29ca472d99ed23af73", "shasum": "" }, "require": { @@ -11846,7 +12298,8 @@ }, "require-dev": { "phpunit/phpunit": "~5.7", - "simplesamlphp/simplesamlphp": "^1.17" + "simplesamlphp/simplesamlphp": "^1.17", + "webmozart/assert": "<1.7" }, "type": "simplesamlphp-module", "autoload": { @@ -11856,7 +12309,7 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-3.0-or-later" + "LGPL-2.1-or-later" ], "authors": [ { @@ -11878,20 +12331,20 @@ "issues": "https://github.com/simplesamlphp/simplesamlphp-module-cdc/issues", "source": "https://github.com/simplesamlphp/simplesamlphp-module-cdc/" }, - "time": "2019-12-03T09:04:11+00:00" + "time": "2022-01-06T19:27:16+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-consent", - "version": "v0.9.6", + "version": "v0.9.8", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-consent.git", - "reference": "2f84d15e96afb5a32b6d1cff93370f501ca7867d" + "reference": "8466b0b7c6207b15ca5e265f436299ff2dec85da" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-consent/zipball/2f84d15e96afb5a32b6d1cff93370f501ca7867d", - "reference": "2f84d15e96afb5a32b6d1cff93370f501ca7867d", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-consent/zipball/8466b0b7c6207b15ca5e265f436299ff2dec85da", + "reference": "8466b0b7c6207b15ca5e265f436299ff2dec85da", "shasum": "" }, "require": { @@ -11901,7 +12354,7 @@ "require-dev": { "phpunit/phpunit": "~5.7", "simplesamlphp/simplesamlphp": "^1.17", - "webmozart/assert": "<1.7" + "webmozart/assert": "<1.6" }, "type": "simplesamlphp-module", "autoload": { @@ -11928,20 +12381,20 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-consent/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-consent" }, - "time": "2020-06-15T14:26:23+00:00" + "time": "2022-01-06T19:17:22+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-consentadmin", - "version": "v0.9.1", + "version": "v0.9.2", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-consentadmin.git", - "reference": "466e8d0d751f0080162d78e63ab2e125b24d17a1" + "reference": "62dc5e9d5b1a12a73549c80140b7224d7f7d1c2e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-consentadmin/zipball/466e8d0d751f0080162d78e63ab2e125b24d17a1", - "reference": "466e8d0d751f0080162d78e63ab2e125b24d17a1", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-consentadmin/zipball/62dc5e9d5b1a12a73549c80140b7224d7f7d1c2e", + "reference": "62dc5e9d5b1a12a73549c80140b7224d7f7d1c2e", "shasum": "" }, "require": { @@ -11960,7 +12413,7 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-3.0-or-later" + "LGPL-2.1-or-later" ], "authors": [ { @@ -11981,30 +12434,29 @@ "issues": "https://github.com/simplesamlphp/simplesamlphp-module-consentadmin/issues", "source": "https://github.com/simplesamlphp/simplesamlphp-module-consentadmin" }, - "time": "2019-12-03T09:06:40+00:00" + "time": "2022-01-06T19:19:38+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-discopower", - "version": "v0.9.1", + "version": "v0.10.1", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-discopower.git", - "reference": "006c0617610f1bae11cf4d17e8ce4c509239a60e" + "reference": "4cb6b7c648b455586903b8932a171397375b50b0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-discopower/zipball/006c0617610f1bae11cf4d17e8ce4c509239a60e", - "reference": "006c0617610f1bae11cf4d17e8ce4c509239a60e", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-discopower/zipball/4cb6b7c648b455586903b8932a171397375b50b0", + "reference": "4cb6b7c648b455586903b8932a171397375b50b0", "shasum": "" }, "require": { - "php": ">=5.6", - "simplesamlphp/composer-module-installer": "~1.1", - "webmozart/assert": "~1.4" + "php": ">=7.1", + "simplesamlphp/composer-module-installer": "~1.1" }, "require-dev": { - "phpunit/phpunit": "~5.7", - "simplesamlphp/simplesamlphp": "^1.17" + "simplesamlphp/simplesamlphp": "^1.19", + "simplesamlphp/simplesamlphp-test-framework": "^0.1.2" }, "type": "simplesamlphp-module", "autoload": { @@ -12014,7 +12466,7 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-3.0-or-later" + "LGPL-2.1-or-later" ], "authors": [ { @@ -12032,7 +12484,7 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-discopower/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-discopower" }, - "time": "2019-11-27T20:34:37+00:00" + "time": "2021-08-17T14:29:22+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-exampleattributeserver", @@ -12085,26 +12537,25 @@ }, { "name": "simplesamlphp/simplesamlphp-module-expirycheck", - "version": "v0.9.3", + "version": "v0.9.4", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-expirycheck.git", - "reference": "59c59cdf87e2679257b46c07bb4c27666a11cc20" + "reference": "02101497281031befba93c48c96ee9133f57241d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-expirycheck/zipball/59c59cdf87e2679257b46c07bb4c27666a11cc20", - "reference": "59c59cdf87e2679257b46c07bb4c27666a11cc20", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-expirycheck/zipball/02101497281031befba93c48c96ee9133f57241d", + "reference": "02101497281031befba93c48c96ee9133f57241d", "shasum": "" }, "require": { "php": ">=5.6", - "simplesamlphp/composer-module-installer": "~1.1", - "webmozart/assert": "~1.4" + "simplesamlphp/composer-module-installer": "~1.1" }, "require-dev": { - "simplesamlphp/simplesamlphp": "^1.17", - "simplesamlphp/simplesamlphp-test-framework": "^0.0.10" + "phpunit/phpunit": "~5.7", + "simplesamlphp/simplesamlphp": "^1.17" }, "type": "simplesamlphp-module", "autoload": { @@ -12114,7 +12565,7 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-3.0-or-later" + "LGPL-2.1-or-later" ], "authors": [ { @@ -12128,23 +12579,23 @@ "simplesamlphp" ], "support": { - "issues": "https://github.com/simplesamlphp/simplesamlphp-module-expirycheck/issues", - "source": "https://github.com/simplesamlphp/simplesamlphp-module-expirycheck" + "issues": "https://github.com/tvdijen/simplesamlphp-module-expirycheck/issues", + "source": "https://github.com/tvdijen/simplesamlphp-module-expirycheck" }, - "time": "2019-12-14T13:20:46+00:00" + "time": "2022-01-06T21:16:01+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-ldap", - "version": "v0.9.10", + "version": "v0.9.17", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-ldap.git", - "reference": "78f04cbe41bfb9dcbcdeff4b5f12e67c060e1a77" + "reference": "40f1bfe0c4ac2f91cf8e52d22fa6ec2fe1c03066" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-ldap/zipball/78f04cbe41bfb9dcbcdeff4b5f12e67c060e1a77", - "reference": "78f04cbe41bfb9dcbcdeff4b5f12e67c060e1a77", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-ldap/zipball/40f1bfe0c4ac2f91cf8e52d22fa6ec2fe1c03066", + "reference": "40f1bfe0c4ac2f91cf8e52d22fa6ec2fe1c03066", "shasum": "" }, "require": { @@ -12187,20 +12638,20 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-ldap/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-ldap" }, - "time": "2020-09-16T21:09:07+00:00" + "time": "2022-01-11T12:50:47+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-memcachemonitor", - "version": "v0.9.2", + "version": "v0.9.3", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-memcachemonitor.git", - "reference": "900b5c6b59913d9013b8dae090841a127ae55ae5" + "reference": "8d25463ac56b4e2294f59f622a6658e0c67086f4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-memcachemonitor/zipball/900b5c6b59913d9013b8dae090841a127ae55ae5", - "reference": "900b5c6b59913d9013b8dae090841a127ae55ae5", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-memcachemonitor/zipball/8d25463ac56b4e2294f59f622a6658e0c67086f4", + "reference": "8d25463ac56b4e2294f59f622a6658e0c67086f4", "shasum": "" }, "require": { @@ -12238,7 +12689,7 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-memcachemonitor/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-memcachemonitor" }, - "time": "2021-01-25T15:44:44+00:00" + "time": "2022-01-06T22:37:15+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-memcookie", @@ -12294,16 +12745,16 @@ }, { "name": "simplesamlphp/simplesamlphp-module-metarefresh", - "version": "v0.9.6", + "version": "v0.10.0", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-metarefresh.git", - "reference": "e284306a7097297765b5b78a4e28f19f18d4e001" + "reference": "488d7809857c274befac89facfa03520a05bc1ba" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-metarefresh/zipball/e284306a7097297765b5b78a4e28f19f18d4e001", - "reference": "e284306a7097297765b5b78a4e28f19f18d4e001", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-metarefresh/zipball/488d7809857c274befac89facfa03520a05bc1ba", + "reference": "488d7809857c274befac89facfa03520a05bc1ba", "shasum": "" }, "require": { @@ -12339,20 +12790,20 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-metarefresh/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-metarefresh" }, - "time": "2020-07-31T14:43:37+00:00" + "time": "2022-05-03T08:57:30+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-negotiate", - "version": "v0.9.11", + "version": "v0.9.12", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-negotiate.git", - "reference": "e7c4597110c753a750cd522220fc2a5a34b7c1b8" + "reference": "48752cea80e81a60ebb522cc10789589ac16df50" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-negotiate/zipball/e7c4597110c753a750cd522220fc2a5a34b7c1b8", - "reference": "e7c4597110c753a750cd522220fc2a5a34b7c1b8", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-negotiate/zipball/48752cea80e81a60ebb522cc10789589ac16df50", + "reference": "48752cea80e81a60ebb522cc10789589ac16df50", "shasum": "" }, "require": { @@ -12393,23 +12844,23 @@ "simplesamlphp" ], "support": { - "issues": "https://github.com/tvdijen/simplesamlphp-module-negotiate/issues", - "source": "https://github.com/tvdijen/simplesamlphp-module-negotiate" + "issues": "https://github.com/simplesamlphp/simplesamlphp-module-negotiate/issues", + "source": "https://github.com/simplesamlphp/simplesamlphp-module-negotiate" }, - "time": "2021-05-17T11:01:39+00:00" + "time": "2022-01-03T23:18:27+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-oauth", - "version": "v0.9.2", + "version": "v0.9.3", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-oauth.git", - "reference": "d14d7aca6e699ec12b3f4dd0128373faa1a2cc61" + "reference": "2a2433144dca408315e4ee163f9ab73a6110b2b1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-oauth/zipball/d14d7aca6e699ec12b3f4dd0128373faa1a2cc61", - "reference": "d14d7aca6e699ec12b3f4dd0128373faa1a2cc61", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-oauth/zipball/2a2433144dca408315e4ee163f9ab73a6110b2b1", + "reference": "2a2433144dca408315e4ee163f9ab73a6110b2b1", "shasum": "" }, "require": { @@ -12420,6 +12871,11 @@ "simplesamlphp/simplesamlphp": "^1.17" }, "type": "simplesamlphp-module", + "autoload": { + "psr-4": { + "SimpleSAML\\Module\\oauth\\": "lib/" + } + }, "notification-url": "https://packagist.org/downloads/", "license": [ "LGPL-2.1-or-later" @@ -12445,29 +12901,29 @@ "source": "https://github.com/simplesamlphp/simplesamlphp-module-oauth/" }, "abandoned": true, - "time": "2020-04-29T19:37:43+00:00" + "time": "2021-08-31T18:55:00+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-preprodwarning", - "version": "v0.9.2", + "version": "v0.9.3", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-preprodwarning.git", - "reference": "8e032de33a75eb44857dc06d886ad94ee3af4638" + "reference": "b3c6d9d41d009e340f4843ce5c24b4118a38e4c3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-preprodwarning/zipball/8e032de33a75eb44857dc06d886ad94ee3af4638", - "reference": "8e032de33a75eb44857dc06d886ad94ee3af4638", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-preprodwarning/zipball/b3c6d9d41d009e340f4843ce5c24b4118a38e4c3", + "reference": "b3c6d9d41d009e340f4843ce5c24b4118a38e4c3", "shasum": "" }, "require": { - "php": ">=5.6", + "php": ">=7.0", "simplesamlphp/composer-module-installer": "~1.1" }, "require-dev": { "phpunit/phpunit": "~5.7", - "simplesamlphp/simplesamlphp": "^1.17", + "simplesamlphp/simplesamlphp": "dev-simplesamlphp-1.19", "webmozart/assert": "^1.4" }, "type": "simplesamlphp-module", @@ -12495,20 +12951,20 @@ "issues": "https://github.com/simplesamlphp/simplesamlphp-module-preprodwarning/issues", "source": "https://github.com/simplesamlphp/simplesamlphp-module-preprodwarning" }, - "time": "2020-04-09T13:05:27+00:00" + "time": "2022-01-06T23:21:17+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-radius", - "version": "v0.9.3", + "version": "v0.9.4", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-radius.git", - "reference": "36bd0f39f9a13f7eb96ead97c97c3634aa1c3f2d" + "reference": "dbe2976ba27f5131faeca368a5665f8baeaae8b6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-radius/zipball/36bd0f39f9a13f7eb96ead97c97c3634aa1c3f2d", - "reference": "36bd0f39f9a13f7eb96ead97c97c3634aa1c3f2d", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-radius/zipball/dbe2976ba27f5131faeca368a5665f8baeaae8b6", + "reference": "dbe2976ba27f5131faeca368a5665f8baeaae8b6", "shasum": "" }, "require": { @@ -12528,7 +12984,7 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-3.0-or-later" + "LGPL-2.1-or-later" ], "authors": [ { @@ -12545,7 +13001,7 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-radius/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-radius" }, - "time": "2019-10-03T18:13:07+00:00" + "time": "2022-01-06T23:23:28+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-riak", @@ -12650,16 +13106,16 @@ }, { "name": "simplesamlphp/simplesamlphp-module-smartattributes", - "version": "v0.9.1", + "version": "v0.9.2", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-smartattributes.git", - "reference": "b45d3ecd916e359a9cae05f9ae9df09b5c42f4e6" + "reference": "ba6a32fa287db0f8d767104471176f70fad7f0e1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-smartattributes/zipball/b45d3ecd916e359a9cae05f9ae9df09b5c42f4e6", - "reference": "b45d3ecd916e359a9cae05f9ae9df09b5c42f4e6", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-smartattributes/zipball/ba6a32fa287db0f8d767104471176f70fad7f0e1", + "reference": "ba6a32fa287db0f8d767104471176f70fad7f0e1", "shasum": "" }, "require": { @@ -12678,7 +13134,7 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-3.0-or-later" + "LGPL-2.1-or-later" ], "authors": [ { @@ -12695,20 +13151,20 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-smartattributes/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-smartattributes" }, - "time": "2019-12-03T09:24:09+00:00" + "time": "2022-01-06T23:42:07+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-sqlauth", - "version": "v0.9.3", + "version": "v0.9.4", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-sqlauth.git", - "reference": "c2dc4fc8aa6d8b2408131e09b39f06d8610ff374" + "reference": "8a28f9a9726bab1dbc8fd3734daa08882dd0a25b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-sqlauth/zipball/c2dc4fc8aa6d8b2408131e09b39f06d8610ff374", - "reference": "c2dc4fc8aa6d8b2408131e09b39f06d8610ff374", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-sqlauth/zipball/8a28f9a9726bab1dbc8fd3734daa08882dd0a25b", + "reference": "8a28f9a9726bab1dbc8fd3734daa08882dd0a25b", "shasum": "" }, "require": { @@ -12745,7 +13201,7 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-sqlauth/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-sqlauth" }, - "time": "2021-04-29T16:51:59+00:00" + "time": "2022-01-06T23:50:52+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-statistics", @@ -12800,16 +13256,16 @@ }, { "name": "simplesamlphp/twig-configurable-i18n", - "version": "v2.3.4", + "version": "v2.3.5", "source": { "type": "git", "url": "https://github.com/simplesamlphp/twig-configurable-i18n.git", - "reference": "e2bffc7eed3112a0b3870ef5b4da0fd74c7c4b8a" + "reference": "1dc0ff69ec1dfb4cab6a30c583b59faf0efc27d6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/twig-configurable-i18n/zipball/e2bffc7eed3112a0b3870ef5b4da0fd74c7c4b8a", - "reference": "e2bffc7eed3112a0b3870ef5b4da0fd74c7c4b8a", + "url": "https://api.github.com/repos/simplesamlphp/twig-configurable-i18n/zipball/1dc0ff69ec1dfb4cab6a30c583b59faf0efc27d6", + "reference": "1dc0ff69ec1dfb4cab6a30c583b59faf0efc27d6", "shasum": "" }, "require": { @@ -12821,7 +13277,7 @@ "sensiolabs/security-checker": "~6.0.3", "simplesamlphp/simplesamlphp-test-framework": "~0.1.2", "squizlabs/php_codesniffer": "^3.5", - "twig/twig": "^2.13" + "twig/twig": "^2.15.3" }, "type": "project", "autoload": { @@ -12852,41 +13308,44 @@ "issues": "https://github.com/simplesamlphp/twig-configurable-i18n/issues", "source": "https://github.com/simplesamlphp/twig-configurable-i18n" }, - "time": "2020-08-27T12:51:10+00:00" + "time": "2022-11-28T16:34:29+00:00" }, { "name": "solarium/solarium", - "version": "6.1.5", + "version": "6.2.8", "source": { "type": "git", "url": "https://github.com/solariumphp/solarium.git", - "reference": "beec496540c3d227201c556729d2c61d1c1f8ab1" + "reference": "0bca4fdcd53e86dea19754b0081f91fe17248a9d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/solariumphp/solarium/zipball/beec496540c3d227201c556729d2c61d1c1f8ab1", - "reference": "beec496540c3d227201c556729d2c61d1c1f8ab1", + "url": "https://api.github.com/repos/solariumphp/solarium/zipball/0bca4fdcd53e86dea19754b0081f91fe17248a9d", + "reference": "0bca4fdcd53e86dea19754b0081f91fe17248a9d", "shasum": "" }, "require": { + "composer-runtime-api": ">=2.0", "ext-json": "*", "php": "^7.3 || ^8.0", "psr/event-dispatcher": "^1.0", "psr/http-client": "^1.0", "psr/http-factory": "^1.0", - "symfony/event-dispatcher-contracts": "^1.0 || ^2.0" + "symfony/event-dispatcher-contracts": "^1.0 || ^2.0 || ^3.0" }, "require-dev": { "escapestudios/symfony2-coding-standard": "^3.11", + "ext-iconv": "*", "guzzlehttp/guzzle": "^7.2", "nyholm/psr7": "^1.2", "php-http/guzzle7-adapter": "^0.1", "phpstan/extension-installer": "^1.0", - "phpstan/phpstan": "^0.12", - "phpstan/phpstan-phpunit": "^0.12", + "phpstan/phpstan": "^1.0", + "phpstan/phpstan-deprecation-rules": "^1.0", + "phpstan/phpstan-phpunit": "^1.0", "phpunit/phpunit": "^9.5", "roave/security-advisories": "dev-master", - "symfony/event-dispatcher": "^4.3 || ^5.0" + "symfony/event-dispatcher": "^4.3 || ^5.0 || ^6.0" }, "type": "library", "autoload": { @@ -12913,9 +13372,9 @@ ], "support": { "issues": "https://github.com/solariumphp/solarium/issues", - "source": "https://github.com/solariumphp/solarium/tree/6.1.5" + "source": "https://github.com/solariumphp/solarium/tree/6.2.8" }, - "time": "2021-08-12T15:28:32+00:00" + "time": "2022-12-06T10:22:19+00:00" }, { "name": "stack/builder", @@ -13158,16 +13617,16 @@ }, { "name": "symfony/cache", - "version": "v5.3.4", + "version": "v5.4.15", "source": { "type": "git", "url": "https://github.com/symfony/cache.git", - "reference": "944db6004fc374fbe032d18e07cce51cc4e1e661" + "reference": "60e87188abbacd29ccde44d69c5392a33e888e98" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/cache/zipball/944db6004fc374fbe032d18e07cce51cc4e1e661", - "reference": "944db6004fc374fbe032d18e07cce51cc4e1e661", + "url": "https://api.github.com/repos/symfony/cache/zipball/60e87188abbacd29ccde44d69c5392a33e888e98", + "reference": "60e87188abbacd29ccde44d69c5392a33e888e98", "shasum": "" }, "require": { @@ -13175,34 +13634,35 @@ "psr/cache": "^1.0|^2.0", "psr/log": "^1.1|^2|^3", "symfony/cache-contracts": "^1.1.7|^2", - "symfony/deprecation-contracts": "^2.1", + "symfony/deprecation-contracts": "^2.1|^3", + "symfony/polyfill-php73": "^1.9", "symfony/polyfill-php80": "^1.16", - "symfony/service-contracts": "^1.1|^2", - "symfony/var-exporter": "^4.4|^5.0" + "symfony/service-contracts": "^1.1|^2|^3", + "symfony/var-exporter": "^4.4|^5.0|^6.0" }, "conflict": { - "doctrine/dbal": "<2.10", + "doctrine/dbal": "<2.13.1", "symfony/dependency-injection": "<4.4", "symfony/http-kernel": "<4.4", "symfony/var-dumper": "<4.4" }, "provide": { "psr/cache-implementation": "1.0|2.0", - "psr/simple-cache-implementation": "1.0", + "psr/simple-cache-implementation": "1.0|2.0", "symfony/cache-implementation": "1.0|2.0" }, "require-dev": { "cache/integration-tests": "dev-master", "doctrine/cache": "^1.6|^2.0", - "doctrine/dbal": "^2.10|^3.0", + "doctrine/dbal": "^2.13.1|^3.0", "predis/predis": "^1.1", - "psr/simple-cache": "^1.0", - "symfony/config": "^4.4|^5.0", - "symfony/dependency-injection": "^4.4|^5.0", - "symfony/filesystem": "^4.4|^5.0", - "symfony/http-kernel": "^4.4|^5.0", - "symfony/messenger": "^4.4|^5.0", - "symfony/var-dumper": "^4.4|^5.0" + "psr/simple-cache": "^1.0|^2.0", + "symfony/config": "^4.4|^5.0|^6.0", + "symfony/dependency-injection": "^4.4|^5.0|^6.0", + "symfony/filesystem": "^4.4|^5.0|^6.0", + "symfony/http-kernel": "^4.4|^5.0|^6.0", + "symfony/messenger": "^4.4|^5.0|^6.0", + "symfony/var-dumper": "^4.4|^5.0|^6.0" }, "type": "library", "autoload": { @@ -13227,14 +13687,14 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation", + "description": "Provides extended PSR-6, PSR-16 (and tags) implementations", "homepage": "https://symfony.com", "keywords": [ "caching", "psr6" ], "support": { - "source": "https://github.com/symfony/cache/tree/v5.3.4" + "source": "https://github.com/symfony/cache/tree/v5.4.15" }, "funding": [ { @@ -13250,7 +13710,7 @@ "type": "tidelift" } ], - "time": "2021-07-23T15:55:36+00:00" + "time": "2022-10-27T07:55:40+00:00" }, { "name": "symfony/cache-contracts", @@ -13333,16 +13793,16 @@ }, { "name": "symfony/config", - "version": "v4.4.27", + "version": "v4.4.44", "source": { "type": "git", "url": "https://github.com/symfony/config.git", - "reference": "8132e8d645d703e9b7c9c4f25067b93638683a35" + "reference": "ed42f8f9da528d2c6cae36fe1f380b0c1d8f0658" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/8132e8d645d703e9b7c9c4f25067b93638683a35", - "reference": "8132e8d645d703e9b7c9c4f25067b93638683a35", + "url": "https://api.github.com/repos/symfony/config/zipball/ed42f8f9da528d2c6cae36fe1f380b0c1d8f0658", + "reference": "ed42f8f9da528d2c6cae36fe1f380b0c1d8f0658", "shasum": "" }, "require": { @@ -13391,7 +13851,7 @@ "description": "Helps you find, load, combine, autofill and validate configuration values of any kind", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/config/tree/v4.4.27" + "source": "https://github.com/symfony/config/tree/v4.4.44" }, "funding": [ { @@ -13407,7 +13867,7 @@ "type": "tidelift" } ], - "time": "2021-07-21T12:19:41+00:00" + "time": "2022-07-20T09:59:04+00:00" }, { "name": "symfony/console", @@ -14092,18 +14552,81 @@ ], "time": "2022-01-02T09:41:36+00:00" }, + { + "name": "symfony/expression-language", + "version": "v4.4.47", + "source": { + "type": "git", + "url": "https://github.com/symfony/expression-language.git", + "reference": "e4964c7636e19f6008660f450c09121c80c2a7b9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/expression-language/zipball/e4964c7636e19f6008660f450c09121c80c2a7b9", + "reference": "e4964c7636e19f6008660f450c09121c80c2a7b9", + "shasum": "" + }, + "require": { + "php": ">=7.1.3", + "symfony/cache": "^3.4|^4.0|^5.0", + "symfony/service-contracts": "^1.1|^2" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\ExpressionLanguage\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides an engine that can compile and evaluate expressions", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/expression-language/tree/v4.4.47" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2022-10-03T15:15:11+00:00" + }, { "name": "symfony/filesystem", - "version": "v4.4.39", + "version": "v4.4.42", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "72a5b35fecaa670b13954e6eaf414acbe2a67b35" + "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/72a5b35fecaa670b13954e6eaf414acbe2a67b35", - "reference": "72a5b35fecaa670b13954e6eaf414acbe2a67b35", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/815412ee8971209bd4c1eecd5f4f481eacd44bf5", + "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5", "shasum": "" }, "require": { @@ -14137,7 +14660,7 @@ "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/filesystem/tree/v4.4.39" + "source": "https://github.com/symfony/filesystem/tree/v4.4.42" }, "funding": [ { @@ -14153,7 +14676,7 @@ "type": "tidelift" } ], - "time": "2022-02-25T10:38:15+00:00" + "time": "2022-05-20T08:49:14+00:00" }, { "name": "symfony/finder", @@ -14219,16 +14742,16 @@ }, { "name": "symfony/framework-bundle", - "version": "v4.4.27", + "version": "v4.4.49", "source": { "type": "git", "url": "https://github.com/symfony/framework-bundle.git", - "reference": "b616b87fad76a783e6148a6849a5fbef18006e63" + "reference": "d8cf2558249004a29b8e27b1f6eae52337ff471b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/b616b87fad76a783e6148a6849a5fbef18006e63", - "reference": "b616b87fad76a783e6148a6849a5fbef18006e63", + "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/d8cf2558249004a29b8e27b1f6eae52337ff471b", + "reference": "d8cf2558249004a29b8e27b1f6eae52337ff471b", "shasum": "" }, "require": { @@ -14236,7 +14759,7 @@ "php": ">=7.1.3", "symfony/cache": "^4.4|^5.0", "symfony/config": "^4.4.11|~5.0.11|^5.1.3", - "symfony/dependency-injection": "^4.4.1|^5.0.1", + "symfony/dependency-injection": "^4.4.38|^5.0.1", "symfony/error-handler": "^4.4.1|^5.0.1", "symfony/filesystem": "^3.4|^4.0|^5.0", "symfony/finder": "^3.4|^4.0|^5.0", @@ -14276,14 +14799,14 @@ "require-dev": { "doctrine/annotations": "^1.10.4", "doctrine/cache": "^1.0|^2.0", - "doctrine/persistence": "^1.3|^2.0", + "doctrine/persistence": "^1.3|^2|^3", "paragonie/sodium_compat": "^1.8", "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", "symfony/asset": "^3.4|^4.0|^5.0", "symfony/browser-kit": "^4.3|^5.0", - "symfony/console": "^4.4.21|^5.0", + "symfony/console": "^4.4.42|^5.4.9", "symfony/css-selector": "^3.4|^4.0|^5.0", - "symfony/dom-crawler": "^4.3|^5.0", + "symfony/dom-crawler": "^4.4.30|^5.3.7", "symfony/dotenv": "^4.3.6|^5.0", "symfony/expression-language": "^3.4|^4.0|^5.0", "symfony/form": "^4.3.5|^5.0", @@ -14345,7 +14868,7 @@ "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/framework-bundle/tree/v4.4.27" + "source": "https://github.com/symfony/framework-bundle/tree/v4.4.49" }, "funding": [ { @@ -14361,7 +14884,7 @@ "type": "tidelift" } ], - "time": "2021-07-21T13:02:15+00:00" + "time": "2022-11-05T15:42:31+00:00" }, { "name": "symfony/http-client-contracts", @@ -15994,16 +16517,16 @@ }, { "name": "symfony/security", - "version": "v4.4.29", + "version": "v4.4.48", "source": { "type": "git", "url": "https://github.com/symfony/security.git", - "reference": "3053d8faa77a40491727445e410868a2a3762ff8" + "reference": "c36a32a2ec1ce91780685f8eb75dba9d832147fb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/security/zipball/3053d8faa77a40491727445e410868a2a3762ff8", - "reference": "3053d8faa77a40491727445e410868a2a3762ff8", + "url": "https://api.github.com/repos/symfony/security/zipball/c36a32a2ec1ce91780685f8eb75dba9d832147fb", + "reference": "c36a32a2ec1ce91780685f8eb75dba9d832147fb", "shasum": "" }, "require": { @@ -16074,7 +16597,7 @@ "description": "Provides a complete security system for your web application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/security/tree/v4.4.29" + "source": "https://github.com/symfony/security/tree/v4.4.48" }, "funding": [ { @@ -16090,7 +16613,7 @@ "type": "tidelift" } ], - "time": "2021-07-27T06:31:16+00:00" + "time": "2022-10-22T05:50:33+00:00" }, { "name": "symfony/serializer", @@ -17147,16 +17670,16 @@ }, { "name": "vlucas/phpdotenv", - "version": "v4.2.0", + "version": "v4.3.0", "source": { "type": "git", "url": "https://github.com/vlucas/phpdotenv.git", - "reference": "da64796370fc4eb03cc277088f6fede9fde88482" + "reference": "67a491df68208bef8c37092db11fa3885008efcf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/da64796370fc4eb03cc277088f6fede9fde88482", - "reference": "da64796370fc4eb03cc277088f6fede9fde88482", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/67a491df68208bef8c37092db11fa3885008efcf", + "reference": "67a491df68208bef8c37092db11fa3885008efcf", "shasum": "" }, "require": { @@ -17168,7 +17691,7 @@ "bamarni/composer-bin-plugin": "^1.4.1", "ext-filter": "*", "ext-pcre": "*", - "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20" + "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.30" }, "suggest": { "ext-filter": "Required to use the boolean validator.", @@ -17176,8 +17699,12 @@ }, "type": "library", "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": true + }, "branch-alias": { - "dev-master": "4.1-dev" + "dev-master": "4.3-dev" } }, "autoload": { @@ -17192,13 +17719,13 @@ "authors": [ { "name": "Graham Campbell", - "email": "graham@alt-three.com", - "homepage": "https://gjcampbell.co.uk/" + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" }, { "name": "Vance Lucas", "email": "vance@vancelucas.com", - "homepage": "https://vancelucas.com/" + "homepage": "https://github.com/vlucas" } ], "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", @@ -17209,7 +17736,7 @@ ], "support": { "issues": "https://github.com/vlucas/phpdotenv/issues", - "source": "https://github.com/vlucas/phpdotenv/tree/v4.2.0" + "source": "https://github.com/vlucas/phpdotenv/tree/v4.3.0" }, "funding": [ { @@ -17221,7 +17748,7 @@ "type": "tidelift" } ], - "time": "2021-01-20T15:11:48+00:00" + "time": "2022-10-16T00:51:09+00:00" }, { "name": "webflo/drupal-finder", @@ -17537,90 +18064,35 @@ }, "time": "2022-03-28T14:22:43+00:00" }, - { - "name": "behat/mink-goutte-driver", - "version": "v1.3.0", - "source": { - "type": "git", - "url": "https://github.com/minkphp/MinkGoutteDriver.git", - "reference": "8139f520f417c81bf9d2f9a171fff400f6adc9ea" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8139f520f417c81bf9d2f9a171fff400f6adc9ea", - "reference": "8139f520f417c81bf9d2f9a171fff400f6adc9ea", - "shasum": "" - }, - "require": { - "behat/mink-browserkit-driver": "~1.2@dev", - "fabpot/goutte": "~1.0.4|~2.0|~3.1", - "php": ">=5.4" - }, - "require-dev": { - "mink/driver-testsuite": "dev-master" - }, - "type": "mink-driver", - "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } - }, - "autoload": { - "psr-4": { - "Behat\\Mink\\Driver\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Konstantin Kudryashov", - "email": "ever.zet@gmail.com", - "homepage": "http://everzet.com" - } - ], - "description": "Goutte driver for Mink framework", - "homepage": "https://mink.behat.org/", - "keywords": [ - "browser", - "goutte", - "headless", - "testing" - ], - "support": { - "issues": "https://github.com/minkphp/MinkGoutteDriver/issues", - "source": "https://github.com/minkphp/MinkGoutteDriver/tree/v1.3.0" - }, - "time": "2021-10-12T11:35:46+00:00" - }, { "name": "behat/mink-selenium2-driver", - "version": "v1.4.0", + "version": "v1.6.0", "source": { "type": "git", "url": "https://github.com/minkphp/MinkSelenium2Driver.git", - "reference": "312a967dd527f28980cce40850339cd5316da092" + "reference": "e5f8421654930da725499fb92983e6948c6f973e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/312a967dd527f28980cce40850339cd5316da092", - "reference": "312a967dd527f28980cce40850339cd5316da092", + "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/e5f8421654930da725499fb92983e6948c6f973e", + "reference": "e5f8421654930da725499fb92983e6948c6f973e", "shasum": "" }, "require": { - "behat/mink": "~1.7@dev", - "instaclick/php-webdriver": "~1.1", - "php": ">=5.4" + "behat/mink": "^1.9@dev", + "ext-json": "*", + "instaclick/php-webdriver": "^1.4", + "php": ">=7.2" }, "require-dev": { - "mink/driver-testsuite": "dev-master" + "mink/driver-testsuite": "dev-master", + "phpunit/phpunit": "^8.5.22 || ^9.5.11", + "symfony/error-handler": "^4.4 || ^5.0" }, "type": "mink-driver", "extra": { "branch-alias": { - "dev-master": "1.4.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { @@ -17645,7 +18117,7 @@ } ], "description": "Selenium2 (WebDriver) driver for Mink framework", - "homepage": "http://mink.behat.org/", + "homepage": "https://mink.behat.org/", "keywords": [ "ajax", "browser", @@ -17656,22 +18128,22 @@ ], "support": { "issues": "https://github.com/minkphp/MinkSelenium2Driver/issues", - "source": "https://github.com/minkphp/MinkSelenium2Driver/tree/v1.4.0" + "source": "https://github.com/minkphp/MinkSelenium2Driver/tree/v1.6.0" }, - "time": "2020-03-11T14:43:21+00:00" + "time": "2022-03-28T14:55:17+00:00" }, { "name": "composer/ca-bundle", - "version": "1.3.1", + "version": "1.3.4", "source": { "type": "git", "url": "https://github.com/composer/ca-bundle.git", - "reference": "4c679186f2aca4ab6a0f1b0b9cf9252decb44d0b" + "reference": "69098eca243998b53eed7a48d82dedd28b447cd5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/ca-bundle/zipball/4c679186f2aca4ab6a0f1b0b9cf9252decb44d0b", - "reference": "4c679186f2aca4ab6a0f1b0b9cf9252decb44d0b", + "url": "https://api.github.com/repos/composer/ca-bundle/zipball/69098eca243998b53eed7a48d82dedd28b447cd5", + "reference": "69098eca243998b53eed7a48d82dedd28b447cd5", "shasum": "" }, "require": { @@ -17718,7 +18190,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.1" + "source": "https://github.com/composer/ca-bundle/tree/1.3.4" }, "funding": [ { @@ -17734,20 +18206,20 @@ "type": "tidelift" } ], - "time": "2021-10-28T20:44:15+00:00" + "time": "2022-10-12T12:08:29+00:00" }, { "name": "composer/composer", - "version": "2.2.12", + "version": "2.2.18", "source": { "type": "git", "url": "https://github.com/composer/composer.git", - "reference": "ba61e768b410736efe61df01b61f1ec44f51474f" + "reference": "84175907664ca8b73f73f4883e67e886dfefb9f5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/composer/zipball/ba61e768b410736efe61df01b61f1ec44f51474f", - "reference": "ba61e768b410736efe61df01b61f1ec44f51474f", + "url": "https://api.github.com/repos/composer/composer/zipball/84175907664ca8b73f73f4883e67e886dfefb9f5", + "reference": "84175907664ca8b73f73f4883e67e886dfefb9f5", "shasum": "" }, "require": { @@ -17817,7 +18289,7 @@ "support": { "irc": "ircs://irc.libera.chat:6697/composer", "issues": "https://github.com/composer/composer/issues", - "source": "https://github.com/composer/composer/tree/2.2.12" + "source": "https://github.com/composer/composer/tree/2.2.18" }, "funding": [ { @@ -17833,7 +18305,7 @@ "type": "tidelift" } ], - "time": "2022-04-13T14:42:25+00:00" + "time": "2022-08-20T09:33:38+00:00" }, { "name": "composer/metadata-minifier", @@ -17904,79 +18376,6 @@ ], "time": "2021-04-07T13:37:33+00:00" }, - { - "name": "composer/package-versions-deprecated", - "version": "1.11.99.3", - "source": { - "type": "git", - "url": "https://github.com/composer/package-versions-deprecated.git", - "reference": "fff576ac850c045158a250e7e27666e146e78d18" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/fff576ac850c045158a250e7e27666e146e78d18", - "reference": "fff576ac850c045158a250e7e27666e146e78d18", - "shasum": "" - }, - "require": { - "composer-plugin-api": "^1.1.0 || ^2.0", - "php": "^7 || ^8" - }, - "replace": { - "ocramius/package-versions": "1.11.99" - }, - "require-dev": { - "composer/composer": "^1.9.3 || ^2.0@dev", - "ext-zip": "^1.13", - "phpunit/phpunit": "^6.5 || ^7" - }, - "type": "composer-plugin", - "extra": { - "class": "PackageVersions\\Installer", - "branch-alias": { - "dev-master": "1.x-dev" - } - }, - "autoload": { - "psr-4": { - "PackageVersions\\": "src/PackageVersions" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Marco Pivetta", - "email": "ocramius@gmail.com" - }, - { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be" - } - ], - "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)", - "support": { - "issues": "https://github.com/composer/package-versions-deprecated/issues", - "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.3" - }, - "funding": [ - { - "url": "https://packagist.com", - "type": "custom" - }, - { - "url": "https://github.com/composer", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/composer/composer", - "type": "tidelift" - } - ], - "time": "2021-08-17T13:49:14+00:00" - }, { "name": "composer/pcre", "version": "1.0.1", @@ -18050,16 +18449,16 @@ }, { "name": "composer/spdx-licenses", - "version": "1.5.6", + "version": "1.5.7", "source": { "type": "git", "url": "https://github.com/composer/spdx-licenses.git", - "reference": "a30d487169d799745ca7280bc90fdfa693536901" + "reference": "c848241796da2abf65837d51dce1fae55a960149" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/a30d487169d799745ca7280bc90fdfa693536901", - "reference": "a30d487169d799745ca7280bc90fdfa693536901", + "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/c848241796da2abf65837d51dce1fae55a960149", + "reference": "c848241796da2abf65837d51dce1fae55a960149", "shasum": "" }, "require": { @@ -18110,7 +18509,7 @@ "support": { "irc": "irc://irc.freenode.org/composer", "issues": "https://github.com/composer/spdx-licenses/issues", - "source": "https://github.com/composer/spdx-licenses/tree/1.5.6" + "source": "https://github.com/composer/spdx-licenses/tree/1.5.7" }, "funding": [ { @@ -18126,31 +18525,31 @@ "type": "tidelift" } ], - "time": "2021-11-18T10:14:14+00:00" + "time": "2022-05-23T07:37:50+00:00" }, { "name": "composer/xdebug-handler", - "version": "2.0.5", + "version": "3.0.3", "source": { "type": "git", "url": "https://github.com/composer/xdebug-handler.git", - "reference": "9e36aeed4616366d2b690bdce11f71e9178c579a" + "reference": "ced299686f41dce890debac69273b47ffe98a40c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/9e36aeed4616366d2b690bdce11f71e9178c579a", - "reference": "9e36aeed4616366d2b690bdce11f71e9178c579a", + "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c", + "reference": "ced299686f41dce890debac69273b47ffe98a40c", "shasum": "" }, "require": { - "composer/pcre": "^1", - "php": "^5.3.2 || ^7.0 || ^8.0", + "composer/pcre": "^1 || ^2 || ^3", + "php": "^7.2.5 || ^8.0", "psr/log": "^1 || ^2 || ^3" }, "require-dev": { "phpstan/phpstan": "^1.0", "phpstan/phpstan-strict-rules": "^1.1", - "symfony/phpunit-bridge": "^4.2 || ^5.0 || ^6.0" + "symfony/phpunit-bridge": "^6.0" }, "type": "library", "autoload": { @@ -18176,7 +18575,7 @@ "support": { "irc": "irc://irc.freenode.org/composer", "issues": "https://github.com/composer/xdebug-handler/issues", - "source": "https://github.com/composer/xdebug-handler/tree/2.0.5" + "source": "https://github.com/composer/xdebug-handler/tree/3.0.3" }, "funding": [ { @@ -18192,7 +18591,82 @@ "type": "tidelift" } ], - "time": "2022-02-24T20:20:32+00:00" + "time": "2022-02-25T21:32:43+00:00" + }, + { + "name": "dealerdirect/phpcodesniffer-composer-installer", + "version": "v0.7.2", + "source": { + "type": "git", + "url": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer.git", + "reference": "1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Dealerdirect/phpcodesniffer-composer-installer/zipball/1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db", + "reference": "1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^1.0 || ^2.0", + "php": ">=5.3", + "squizlabs/php_codesniffer": "^2.0 || ^3.1.0 || ^4.0" + }, + "require-dev": { + "composer/composer": "*", + "php-parallel-lint/php-parallel-lint": "^1.3.1", + "phpcompatibility/php-compatibility": "^9.0" + }, + "type": "composer-plugin", + "extra": { + "class": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin" + }, + "autoload": { + "psr-4": { + "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Franck Nijhof", + "email": "franck.nijhof@dealerdirect.com", + "homepage": "http://www.frenck.nl", + "role": "Developer / IT Manager" + }, + { + "name": "Contributors", + "homepage": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer/graphs/contributors" + } + ], + "description": "PHP_CodeSniffer Standards Composer Installer Plugin", + "homepage": "http://www.dealerdirect.com", + "keywords": [ + "PHPCodeSniffer", + "PHP_CodeSniffer", + "code quality", + "codesniffer", + "composer", + "installer", + "phpcbf", + "phpcs", + "plugin", + "qa", + "quality", + "standard", + "standards", + "style guide", + "stylecheck", + "tests" + ], + "support": { + "issues": "https://github.com/dealerdirect/phpcodesniffer-composer-installer/issues", + "source": "https://github.com/dealerdirect/phpcodesniffer-composer-installer" + }, + "time": "2022-02-04T12:51:07+00:00" }, { "name": "doctrine/instantiator", @@ -18266,22 +18740,24 @@ }, { "name": "drupal/coder", - "version": "8.3.13", + "version": "8.3.16", "source": { "type": "git", "url": "https://git.drupalcode.org/project/coder.git", - "reference": "d3286d571b19633cc296d438c36b9aed195de43c" + "reference": "d6f6112e5e84ff4f6baaada223c93dadbd6d3887" }, "require": { + "dealerdirect/phpcodesniffer-composer-installer": "^0.7.1", "ext-mbstring": "*", - "php": ">=7.0.8", - "sirbrillig/phpcs-variable-analysis": "^2.10", - "squizlabs/php_codesniffer": "^3.5.6", - "symfony/yaml": ">=2.0.5" + "php": ">=7.1", + "sirbrillig/phpcs-variable-analysis": "^2.11.7", + "slevomat/coding-standard": "^7.0 || ^8.0", + "squizlabs/php_codesniffer": "^3.7.1", + "symfony/yaml": ">=3.4.0" }, "require-dev": { - "phpstan/phpstan": "^0.12.63", - "phpunit/phpunit": "^6.0 || ^7.0" + "phpstan/phpstan": "^1.7.12", + "phpunit/phpunit": "^7.0 || ^8.0" }, "type": "phpcodesniffer-standard", "autoload": { @@ -18305,118 +18781,57 @@ "issues": "https://www.drupal.org/project/issues/coder", "source": "https://www.drupal.org/project/coder" }, - "time": "2021-02-06T10:44:32+00:00" + "time": "2022-08-20T17:31:46+00:00" }, { "name": "drupal/core-dev", - "version": "9.2.4", + "version": "9.5.0", "source": { "type": "git", "url": "https://github.com/drupal/core-dev.git", - "reference": "4b5b8556711315e180d72830733ddb07a57a2d73" + "reference": "60196e12909624e168c482660c0f5795df67a6d7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-dev/zipball/4b5b8556711315e180d72830733ddb07a57a2d73", - "reference": "4b5b8556711315e180d72830733ddb07a57a2d73", + "url": "https://api.github.com/repos/drupal/core-dev/zipball/60196e12909624e168c482660c0f5795df67a6d7", + "reference": "60196e12909624e168c482660c0f5795df67a6d7", "shasum": "" }, "require": { "behat/mink": "^1.8", - "behat/mink-goutte-driver": "^1.2", "behat/mink-selenium2-driver": "^1.4", - "composer/composer": "^2.0.2", + "composer/composer": "^2.2.12", "drupal/coder": "^8.3.10", - "easyrdf/easyrdf": "^0.9 || ^1.0", - "fabpot/goutte": "^3.3", - "friends-of-behat/mink-browserkit-driver": "^1.4", - "instaclick/php-webdriver": "^1.4.1", - "justinrainbow/json-schema": "^5.2", - "mikey179/vfsstream": "^1.6.8", - "phpspec/prophecy": "^1.12", - "phpunit/phpunit": "^8.5.14 || ^9", - "symfony/browser-kit": "^4.4", - "symfony/css-selector": "^4.4", - "symfony/dom-crawler": "^4.4 !=4.4.5", - "symfony/error-handler": "^4.4", - "symfony/filesystem": "^4.4", - "symfony/finder": "^4.4", - "symfony/lock": "^4.4", - "symfony/phpunit-bridge": "^5.3.0", - "symfony/var-dumper": "^5.3.0" - }, - "conflict": { - "webflo/drupal-core-require-dev": "*" - }, - "type": "metapackage", - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "description": "require-dev dependencies from drupal/drupal; use in addition to drupal/core-recommended to run tests from drupal/core.", - "support": { - "source": "https://github.com/drupal/core-dev/tree/9.2.4" - }, - "time": "2021-06-01T16:41:50+00:00" - }, - { - "name": "fabpot/goutte", - "version": "v3.3.1", - "source": { - "type": "git", - "url": "https://github.com/FriendsOfPHP/Goutte.git", - "reference": "80a23b64f44d54dd571d114c473d9d7e9ed84ca5" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/80a23b64f44d54dd571d114c473d9d7e9ed84ca5", - "reference": "80a23b64f44d54dd571d114c473d9d7e9ed84ca5", - "shasum": "" - }, - "require": { - "guzzlehttp/guzzle": "^6.0", - "php": ">=7.1.3", - "symfony/browser-kit": "^4.4|^5.0", - "symfony/css-selector": "^4.4|^5.0", - "symfony/dom-crawler": "^4.4|^5.0" - }, - "require-dev": { - "symfony/phpunit-bridge": "^5.0" - }, - "type": "application", - "extra": { - "branch-alias": { - "dev-master": "3.3-dev" - } + "easyrdf/easyrdf": "^0.9 || ^1.0", + "friends-of-behat/mink-browserkit-driver": "^1.4", + "instaclick/php-webdriver": "^1.4.1", + "justinrainbow/json-schema": "^5.2", + "mikey179/vfsstream": "^1.6.11", + "phpspec/prophecy": "^1.12", + "phpunit/phpunit": "^8.5.14 || ^9", + "symfony/browser-kit": "^4.4", + "symfony/css-selector": "^4.4", + "symfony/dom-crawler": "^4.4 !=4.4.5", + "symfony/error-handler": "^4.4", + "symfony/filesystem": "^4.4", + "symfony/finder": "^4.4", + "symfony/lock": "^4.4", + "symfony/phpunit-bridge": "^5.4", + "symfony/var-dumper": "^5.4" }, - "autoload": { - "psr-4": { - "Goutte\\": "Goutte" - }, - "exclude-from-classmap": [ - "Goutte/Tests" - ] + "conflict": { + "webflo/drupal-core-require-dev": "*" }, + "type": "metapackage", "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - } - ], - "description": "A simple PHP Web Scraper", - "homepage": "https://github.com/FriendsOfPHP/Goutte", - "keywords": [ - "scraper" + "GPL-2.0-or-later" ], + "description": "require-dev dependencies from drupal/drupal; use in addition to drupal/core-recommended to run tests from drupal/core.", "support": { - "issues": "https://github.com/FriendsOfPHP/Goutte/issues", - "source": "https://github.com/FriendsOfPHP/Goutte/tree/v3.3.1" + "source": "https://github.com/drupal/core-dev/tree/9.5.0" }, - "time": "2020-11-01T09:30:18+00:00" + "time": "2022-07-27T00:23:55+00:00" }, { "name": "friends-of-behat/mink-browserkit-driver", @@ -18482,16 +18897,16 @@ }, { "name": "instaclick/php-webdriver", - "version": "1.4.9", + "version": "1.4.16", "source": { "type": "git", "url": "https://github.com/instaclick/php-webdriver.git", - "reference": "961b12178cb71f8667afaf2f66ab3e000e060e1c" + "reference": "a39a1f6dc0f4ddd8b2438fa5eb1f67755730d606" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/961b12178cb71f8667afaf2f66ab3e000e060e1c", - "reference": "961b12178cb71f8667afaf2f66ab3e000e060e1c", + "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/a39a1f6dc0f4ddd8b2438fa5eb1f67755730d606", + "reference": "a39a1f6dc0f4ddd8b2438fa5eb1f67755730d606", "shasum": "" }, "require": { @@ -18499,8 +18914,8 @@ "php": ">=5.3.2" }, "require-dev": { - "phpunit/phpunit": "^4.8", - "satooshi/php-coveralls": "^1.0||^2.0" + "phpunit/phpunit": "^8.5 || ^9.5", + "satooshi/php-coveralls": "^1.0 || ^2.0" }, "type": "library", "extra": { @@ -18539,30 +18954,34 @@ ], "support": { "issues": "https://github.com/instaclick/php-webdriver/issues", - "source": "https://github.com/instaclick/php-webdriver/tree/1.4.9" + "source": "https://github.com/instaclick/php-webdriver/tree/1.4.16" }, - "time": "2021-06-28T22:23:20+00:00" + "time": "2022-10-28T13:30:35+00:00" }, { "name": "jean85/pretty-package-versions", - "version": "1.6.0", + "version": "2.0.5", "source": { "type": "git", "url": "https://github.com/Jean85/pretty-package-versions.git", - "reference": "1e0104b46f045868f11942aea058cd7186d6c303" + "reference": "ae547e455a3d8babd07b96966b17d7fd21d9c6af" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/1e0104b46f045868f11942aea058cd7186d6c303", - "reference": "1e0104b46f045868f11942aea058cd7186d6c303", + "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/ae547e455a3d8babd07b96966b17d7fd21d9c6af", + "reference": "ae547e455a3d8babd07b96966b17d7fd21d9c6af", "shasum": "" }, "require": { - "composer/package-versions-deprecated": "^1.8.0", - "php": "^7.0|^8.0" + "composer-runtime-api": "^2.0.0", + "php": "^7.1|^8.0" }, "require-dev": { - "phpunit/phpunit": "^6.0|^8.5|^9.2" + "friendsofphp/php-cs-fixer": "^2.17", + "jean85/composer-provided-replaced-stub-package": "^1.0", + "phpstan/phpstan": "^0.12.66", + "phpunit/phpunit": "^7.5|^8.5|^9.4", + "vimeo/psalm": "^4.3" }, "type": "library", "extra": { @@ -18585,7 +19004,7 @@ "email": "alessandro.lai85@gmail.com" } ], - "description": "A wrapper for ocramius/package-versions to get pretty versions strings", + "description": "A library to get pretty versions strings of installed dependencies", "keywords": [ "composer", "package", @@ -18594,9 +19013,9 @@ ], "support": { "issues": "https://github.com/Jean85/pretty-package-versions/issues", - "source": "https://github.com/Jean85/pretty-package-versions/tree/1.6.0" + "source": "https://github.com/Jean85/pretty-package-versions/tree/2.0.5" }, - "time": "2021-02-04T16:20:16+00:00" + "time": "2021-10-08T21:21:46+00:00" }, { "name": "justinrainbow/json-schema", @@ -18670,32 +19089,32 @@ }, { "name": "mglaman/drupal-check", - "version": "1.1.10", + "version": "1.4.0", "source": { "type": "git", "url": "https://github.com/mglaman/drupal-check.git", - "reference": "b7bcfb2f766332a888bb6d550dedbb508a3a9d41" + "reference": "e78eff7b10f79659c020a45baaa1f3035cb9a06a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mglaman/drupal-check/zipball/b7bcfb2f766332a888bb6d550dedbb508a3a9d41", - "reference": "b7bcfb2f766332a888bb6d550dedbb508a3a9d41", + "url": "https://api.github.com/repos/mglaman/drupal-check/zipball/e78eff7b10f79659c020a45baaa1f3035cb9a06a", + "reference": "e78eff7b10f79659c020a45baaa1f3035cb9a06a", "shasum": "" }, "require": { - "composer/xdebug-handler": "^1.1 | ^2.0.1", + "composer/xdebug-handler": "^1.1 || ^2.0.1 || ^3.0", "jean85/pretty-package-versions": "^1.5.0 || ^2.0.1", - "mglaman/phpstan-drupal": "^0.12.12", + "mglaman/phpstan-drupal": "^1.0.0", "nette/neon": "^3.1", "php": "^7.2.5|^8.0", - "phpstan/phpstan-deprecation-rules": "^0.12.6", - "symfony/console": "~3.2 || ~4.0", - "symfony/process": "~3.2 || ~4.0", + "phpstan/phpstan-deprecation-rules": "^1.0.0", + "symfony/console": "~3.4.5 || ^4.2|| ^5.0 || ^6.0", + "symfony/process": "~3.4.5 || ^4.2|| ^5.0 || ^6.0", "webflo/drupal-finder": "^1.1" }, "require-dev": { - "phpstan/phpstan": "^0.12.81", - "phpstan/phpstan-strict-rules": "^0.12.9", + "phpstan/phpstan": "^1.0.0", + "phpstan/phpstan-strict-rules": "^1.0.0", "squizlabs/php_codesniffer": "^3.4" }, "bin": [ @@ -18725,7 +19144,7 @@ "description": "CLI tool for running checks on a Drupal code base", "support": { "issues": "https://github.com/mglaman/drupal-check/issues", - "source": "https://github.com/mglaman/drupal-check/tree/1.1.10" + "source": "https://github.com/mglaman/drupal-check/tree/1.4.0" }, "funding": [ { @@ -18741,46 +19160,51 @@ "type": "tidelift" } ], - "time": "2021-07-22T03:52:26+00:00" + "time": "2022-04-29T02:26:28+00:00" }, { "name": "mglaman/phpstan-drupal", - "version": "0.12.12", + "version": "1.1.25", "source": { "type": "git", "url": "https://github.com/mglaman/phpstan-drupal.git", - "reference": "548fa7cb31239997863bf695f04a9fefd04c7288" + "reference": "480245d5d0bd1858e01c43d738718dab85be0ad2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/548fa7cb31239997863bf695f04a9fefd04c7288", - "reference": "548fa7cb31239997863bf695f04a9fefd04c7288", + "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/480245d5d0bd1858e01c43d738718dab85be0ad2", + "reference": "480245d5d0bd1858e01c43d738718dab85be0ad2", "shasum": "" }, "require": { - "nette/finder": "^2.5", - "php": "^7.1 || ^8.0", - "phpstan/phpstan": "^0.12.65", - "symfony/yaml": "~3.4.5|^4.2", + "php": "^7.4 || ^8.0", + "phpstan/phpstan": "^1.6.0", + "symfony/finder": "~3.4.5 ||^4.2 || ^5.0 || ^6.0", + "symfony/yaml": "~3.4.5 || ^4.2|| ^5.0 || ^6.0", "webflo/drupal-finder": "^1.2" }, "require-dev": { + "behat/mink": "^1.8", "composer/installers": "^1.9", - "drupal/core-dev": "^8.8@alpha || ^9.0", "drupal/core-recommended": "^8.8@alpha || ^9.0", - "drush/drush": "^9.6 | ^10.0", - "phpstan/phpstan-deprecation-rules": "~0.12.0", - "phpstan/phpstan-strict-rules": "^0.12.0", + "drush/drush": "^9.6 || ^10.0", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan-deprecation-rules": "^1.0", + "phpstan/phpstan-strict-rules": "^1.0", "phpunit/phpunit": "^6.5 || ^7.5 || ^8.0 || ^9", - "squizlabs/php_codesniffer": "^3.3" + "slevomat/coding-standard": "^7.1", + "squizlabs/php_codesniffer": "^3.3", + "symfony/phpunit-bridge": "^3.4.3 || ^4.4 || ^5.4 || ^6.0" }, "suggest": { - "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core." + "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.", + "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.", + "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan." }, "type": "phpstan-extension", "extra": { "branch-alias": { - "dev-master": "0.12-dev" + "dev-main": "1.0-dev" }, "installer-paths": { "tests/fixtures/drupal/core": [ @@ -18801,16 +19225,14 @@ }, "phpstan": { "includes": [ - "extension.neon" + "extension.neon", + "rules.neon" ] } }, "autoload": { - "files": [ - "drupal-phpunit-hack.php" - ], "psr-4": { - "PHPStan\\": "src/" + "mglaman\\PHPStanDrupal\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -18826,7 +19248,7 @@ "description": "Drupal extension and rules for PHPStan", "support": { "issues": "https://github.com/mglaman/phpstan-drupal/issues", - "source": "https://github.com/mglaman/phpstan-drupal/tree/0.12.12" + "source": "https://github.com/mglaman/phpstan-drupal/tree/1.1.25" }, "funding": [ { @@ -18842,7 +19264,7 @@ "type": "tidelift" } ], - "time": "2021-07-21T20:46:24+00:00" + "time": "2022-07-18T17:17:55+00:00" }, { "name": "mikey179/vfsstream", @@ -18954,85 +19376,18 @@ ], "time": "2022-03-03T13:19:32+00:00" }, - { - "name": "nette/finder", - "version": "v2.5.2", - "source": { - "type": "git", - "url": "https://github.com/nette/finder.git", - "reference": "4ad2c298eb8c687dd0e74ae84206a4186eeaed50" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/nette/finder/zipball/4ad2c298eb8c687dd0e74ae84206a4186eeaed50", - "reference": "4ad2c298eb8c687dd0e74ae84206a4186eeaed50", - "shasum": "" - }, - "require": { - "nette/utils": "^2.4 || ^3.0", - "php": ">=7.1" - }, - "conflict": { - "nette/nette": "<2.2" - }, - "require-dev": { - "nette/tester": "^2.0", - "phpstan/phpstan": "^0.12", - "tracy/tracy": "^2.3" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.5-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause", - "GPL-2.0", - "GPL-3.0" - ], - "authors": [ - { - "name": "David Grudl", - "homepage": "https://davidgrudl.com" - }, - { - "name": "Nette Community", - "homepage": "https://nette.org/contributors" - } - ], - "description": "🔍 Nette Finder: find files and directories with an intuitive API.", - "homepage": "https://nette.org", - "keywords": [ - "filesystem", - "glob", - "iterator", - "nette" - ], - "support": { - "issues": "https://github.com/nette/finder/issues", - "source": "https://github.com/nette/finder/tree/v2.5.2" - }, - "time": "2020-01-03T20:35:40+00:00" - }, { "name": "nette/neon", - "version": "v3.2.2", + "version": "v3.3.3", "source": { "type": "git", "url": "https://github.com/nette/neon.git", - "reference": "e4ca6f4669121ca6876b1d048c612480e39a28d5" + "reference": "22e384da162fab42961d48eb06c06d3ad0c11b95" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/neon/zipball/e4ca6f4669121ca6876b1d048c612480e39a28d5", - "reference": "e4ca6f4669121ca6876b1d048c612480e39a28d5", + "url": "https://api.github.com/repos/nette/neon/zipball/22e384da162fab42961d48eb06c06d3ad0c11b95", + "reference": "22e384da162fab42961d48eb06c06d3ad0c11b95", "shasum": "" }, "require": { @@ -19042,12 +19397,15 @@ "require-dev": { "nette/tester": "^2.0", "phpstan/phpstan": "^0.12", - "tracy/tracy": "^2.3" + "tracy/tracy": "^2.7" }, + "bin": [ + "bin/neon-lint" + ], "type": "library", "extra": { "branch-alias": { - "dev-master": "3.2-dev" + "dev-master": "3.3-dev" } }, "autoload": { @@ -19082,94 +19440,9 @@ ], "support": { "issues": "https://github.com/nette/neon/issues", - "source": "https://github.com/nette/neon/tree/v3.2.2" - }, - "time": "2021-02-28T12:30:32+00:00" - }, - { - "name": "nette/utils", - "version": "v3.2.3", - "source": { - "type": "git", - "url": "https://github.com/nette/utils.git", - "reference": "5c36cc1ba9bb6abb8a9e425cf054e0c3fd5b9822" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/nette/utils/zipball/5c36cc1ba9bb6abb8a9e425cf054e0c3fd5b9822", - "reference": "5c36cc1ba9bb6abb8a9e425cf054e0c3fd5b9822", - "shasum": "" - }, - "require": { - "php": ">=7.2 <8.1" - }, - "conflict": { - "nette/di": "<3.0.6" - }, - "require-dev": { - "nette/tester": "~2.0", - "phpstan/phpstan": "^0.12", - "tracy/tracy": "^2.3" - }, - "suggest": { - "ext-gd": "to use Image", - "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()", - "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()", - "ext-json": "to use Nette\\Utils\\Json", - "ext-mbstring": "to use Strings::lower() etc...", - "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()", - "ext-xml": "to use Strings::length() etc. when mbstring is not available" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.2-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause", - "GPL-2.0-only", - "GPL-3.0-only" - ], - "authors": [ - { - "name": "David Grudl", - "homepage": "https://davidgrudl.com" - }, - { - "name": "Nette Community", - "homepage": "https://nette.org/contributors" - } - ], - "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.", - "homepage": "https://nette.org", - "keywords": [ - "array", - "core", - "datetime", - "images", - "json", - "nette", - "paginator", - "password", - "slugify", - "string", - "unicode", - "utf-8", - "utility", - "validation" - ], - "support": { - "issues": "https://github.com/nette/utils/issues", - "source": "https://github.com/nette/utils/tree/v3.2.3" + "source": "https://github.com/nette/neon/tree/v3.3.3" }, - "time": "2021-08-16T21:05:00+00:00" + "time": "2022-03-10T02:04:26+00:00" }, { "name": "phar-io/manifest", @@ -19566,22 +19839,67 @@ }, "time": "2020-07-09T08:33:42+00:00" }, + { + "name": "phpstan/phpdoc-parser", + "version": "1.15.2", + "source": { + "type": "git", + "url": "https://github.com/phpstan/phpdoc-parser.git", + "reference": "5941477f100993652218928039d530b75a13a9ca" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/5941477f100993652218928039d530b75a13a9ca", + "reference": "5941477f100993652218928039d530b75a13a9ca", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "php-parallel-lint/php-parallel-lint": "^1.2", + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^1.5", + "phpstan/phpstan-phpunit": "^1.1", + "phpstan/phpstan-strict-rules": "^1.0", + "phpunit/phpunit": "^9.5", + "symfony/process": "^5.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "PHPStan\\PhpDocParser\\": [ + "src/" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "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.15.2" + }, + "time": "2022-12-16T06:42:48+00:00" + }, { "name": "phpstan/phpstan", - "version": "0.12.96", + "version": "1.9.4", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "a98bdc51318f20fcae8c953d266f81a70254917f" + "reference": "d03bccee595e2146b7c9d174486b84f4dc61b0f2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/a98bdc51318f20fcae8c953d266f81a70254917f", - "reference": "a98bdc51318f20fcae8c953d266f81a70254917f", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/d03bccee595e2146b7c9d174486b84f4dc61b0f2", + "reference": "d03bccee595e2146b7c9d174486b84f4dc61b0f2", "shasum": "" }, "require": { - "php": "^7.1|^8.0" + "php": "^7.2|^8.0" }, "conflict": { "phpstan/phpstan-shim": "*" @@ -19591,11 +19909,6 @@ "phpstan.phar" ], "type": "library", - "extra": { - "branch-alias": { - "dev-master": "0.12-dev" - } - }, "autoload": { "files": [ "bootstrap.php" @@ -19606,9 +19919,13 @@ "MIT" ], "description": "PHPStan - PHP Static Analysis Tool", + "keywords": [ + "dev", + "static analysis" + ], "support": { "issues": "https://github.com/phpstan/phpstan/issues", - "source": "https://github.com/phpstan/phpstan/tree/0.12.96" + "source": "https://github.com/phpstan/phpstan/tree/1.9.4" }, "funding": [ { @@ -19619,46 +19936,39 @@ "url": "https://github.com/phpstan", "type": "github" }, - { - "url": "https://www.patreon.com/phpstan", - "type": "patreon" - }, { "url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan", "type": "tidelift" } ], - "time": "2021-08-21T11:55:13+00:00" + "time": "2022-12-17T13:33:52+00:00" }, { "name": "phpstan/phpstan-deprecation-rules", - "version": "0.12.6", + "version": "1.1.1", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan-deprecation-rules.git", - "reference": "46dbd43c2db973d2876d6653e53f5c2cc3a01fbb" + "reference": "2c6792eda026d9c474c14aa018aed312686714db" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/46dbd43c2db973d2876d6653e53f5c2cc3a01fbb", - "reference": "46dbd43c2db973d2876d6653e53f5c2cc3a01fbb", + "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/2c6792eda026d9c474c14aa018aed312686714db", + "reference": "2c6792eda026d9c474c14aa018aed312686714db", "shasum": "" }, "require": { - "php": "^7.1 || ^8.0", - "phpstan/phpstan": "^0.12.60" + "php": "^7.2 || ^8.0", + "phpstan/phpstan": "^1.9.3" }, "require-dev": { - "phing/phing": "^2.16.3", "php-parallel-lint/php-parallel-lint": "^1.2", - "phpstan/phpstan-phpunit": "^0.12", - "phpunit/phpunit": "^7.5.20" + "phpstan/phpstan-php-parser": "^1.1", + "phpstan/phpstan-phpunit": "^1.0", + "phpunit/phpunit": "^9.5" }, "type": "phpstan-extension", "extra": { - "branch-alias": { - "dev-master": "0.12-dev" - }, "phpstan": { "includes": [ "rules.neon" @@ -19677,22 +19987,22 @@ "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.", "support": { "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues", - "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/0.12.6" + "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.1.1" }, - "time": "2020-12-13T10:20:54+00:00" + "time": "2022-12-13T14:26:20+00:00" }, { "name": "phpunit/php-code-coverage", - "version": "9.2.20", + "version": "9.2.22", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "af7463c955007de36db0c5e26d03e2f933c2e980" + "reference": "e4bf60d2220b4baaa0572986b5d69870226b06df" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/af7463c955007de36db0c5e26d03e2f933c2e980", - "reference": "af7463c955007de36db0c5e26d03e2f933c2e980", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/e4bf60d2220b4baaa0572986b5d69870226b06df", + "reference": "e4bf60d2220b4baaa0572986b5d69870226b06df", "shasum": "" }, "require": { @@ -19748,7 +20058,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", - "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.20" + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.22" }, "funding": [ { @@ -19756,7 +20066,7 @@ "type": "github" } ], - "time": "2022-12-13T07:49:28+00:00" + "time": "2022-12-18T16:40:55+00:00" }, { "name": "phpunit/php-file-iterator", @@ -21207,16 +21517,16 @@ }, { "name": "seld/phar-utils", - "version": "1.2.0", + "version": "1.2.1", "source": { "type": "git", "url": "https://github.com/Seldaek/phar-utils.git", - "reference": "9f3452c93ff423469c0d56450431562ca423dcee" + "reference": "ea2f4014f163c1be4c601b9b7bd6af81ba8d701c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/9f3452c93ff423469c0d56450431562ca423dcee", - "reference": "9f3452c93ff423469c0d56450431562ca423dcee", + "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/ea2f4014f163c1be4c601b9b7bd6af81ba8d701c", + "reference": "ea2f4014f163c1be4c601b9b7bd6af81ba8d701c", "shasum": "" }, "require": { @@ -21249,34 +21559,35 @@ ], "support": { "issues": "https://github.com/Seldaek/phar-utils/issues", - "source": "https://github.com/Seldaek/phar-utils/tree/1.2.0" + "source": "https://github.com/Seldaek/phar-utils/tree/1.2.1" }, - "time": "2021-12-10T11:20:11+00:00" + "time": "2022-08-31T10:31:18+00:00" }, { "name": "sirbrillig/phpcs-variable-analysis", - "version": "v2.11.2", + "version": "v2.11.9", "source": { "type": "git", "url": "https://github.com/sirbrillig/phpcs-variable-analysis.git", - "reference": "3fad28475bfbdbf8aa5c440f8a8f89824983d85e" + "reference": "62730888d225d55a613854b6a76fb1f9f57d1618" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sirbrillig/phpcs-variable-analysis/zipball/3fad28475bfbdbf8aa5c440f8a8f89824983d85e", - "reference": "3fad28475bfbdbf8aa5c440f8a8f89824983d85e", + "url": "https://api.github.com/repos/sirbrillig/phpcs-variable-analysis/zipball/62730888d225d55a613854b6a76fb1f9f57d1618", + "reference": "62730888d225d55a613854b6a76fb1f9f57d1618", "shasum": "" }, "require": { "php": ">=5.4.0", - "squizlabs/php_codesniffer": "^3.5" + "squizlabs/php_codesniffer": "^3.5.6" }, "require-dev": { "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", - "limedeck/phpunit-detailed-printer": "^3.1 || ^4.0 || ^5.0", - "phpstan/phpstan": "^0.11.8", - "phpunit/phpunit": "^5.0 || ^6.5 || ^7.0 || ^8.0", - "sirbrillig/phpcs-import-detection": "^1.1" + "phpcsstandards/phpcsdevcs": "^1.1", + "phpstan/phpstan": "^1.7", + "phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6.5 || ^7.0 || ^8.0 || ^9.0", + "sirbrillig/phpcs-import-detection": "^1.1", + "vimeo/psalm": "^0.2 || ^0.3 || ^1.1 || ^4.24 || ^5.0@beta" }, "type": "phpcodesniffer-standard", "autoload": { @@ -21299,25 +21610,94 @@ } ], "description": "A PHPCS sniff to detect problems with variables.", + "keywords": [ + "phpcs", + "static analysis" + ], "support": { "issues": "https://github.com/sirbrillig/phpcs-variable-analysis/issues", "source": "https://github.com/sirbrillig/phpcs-variable-analysis", "wiki": "https://github.com/sirbrillig/phpcs-variable-analysis/wiki" }, - "time": "2021-07-06T23:45:17+00:00" + "time": "2022-10-05T23:31:46+00:00" + }, + { + "name": "slevomat/coding-standard", + "version": "8.7.1", + "source": { + "type": "git", + "url": "https://github.com/slevomat/coding-standard.git", + "reference": "c51edb898bebd36aac70a190c6a41a7c056bb5b9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/c51edb898bebd36aac70a190c6a41a7c056bb5b9", + "reference": "c51edb898bebd36aac70a190c6a41a7c056bb5b9", + "shasum": "" + }, + "require": { + "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7", + "php": "^7.2 || ^8.0", + "phpstan/phpdoc-parser": ">=1.15.0 <1.16.0", + "squizlabs/php_codesniffer": "^3.7.1" + }, + "require-dev": { + "phing/phing": "2.17.4", + "php-parallel-lint/php-parallel-lint": "1.3.2", + "phpstan/phpstan": "1.4.10|1.9.3", + "phpstan/phpstan-deprecation-rules": "1.1.0", + "phpstan/phpstan-phpunit": "1.0.0|1.3.1", + "phpstan/phpstan-strict-rules": "1.4.4", + "phpunit/phpunit": "7.5.20|8.5.21|9.5.27" + }, + "type": "phpcodesniffer-standard", + "extra": { + "branch-alias": { + "dev-master": "8.x-dev" + } + }, + "autoload": { + "psr-4": { + "SlevomatCodingStandard\\": "SlevomatCodingStandard" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Slevomat Coding Standard for PHP_CodeSniffer complements Consistence Coding Standard by providing sniffs with additional checks.", + "keywords": [ + "dev", + "phpcs" + ], + "support": { + "issues": "https://github.com/slevomat/coding-standard/issues", + "source": "https://github.com/slevomat/coding-standard/tree/8.7.1" + }, + "funding": [ + { + "url": "https://github.com/kukulich", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/slevomat/coding-standard", + "type": "tidelift" + } + ], + "time": "2022-12-14T08:49:18+00:00" }, { "name": "squizlabs/php_codesniffer", - "version": "3.6.0", + "version": "3.7.1", "source": { "type": "git", "url": "https://github.com/squizlabs/PHP_CodeSniffer.git", - "reference": "ffced0d2c8fa8e6cdc4d695a743271fab6c38625" + "reference": "1359e176e9307e906dc3d890bcc9603ff6d90619" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/ffced0d2c8fa8e6cdc4d695a743271fab6c38625", - "reference": "ffced0d2c8fa8e6cdc4d695a743271fab6c38625", + "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/1359e176e9307e906dc3d890bcc9603ff6d90619", + "reference": "1359e176e9307e906dc3d890bcc9603ff6d90619", "shasum": "" }, "require": { @@ -21360,7 +21740,7 @@ "source": "https://github.com/squizlabs/PHP_CodeSniffer", "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki" }, - "time": "2021-04-09T00:54:41+00:00" + "time": "2022-06-18T07:21:10+00:00" }, { "name": "symfony/browser-kit", @@ -21436,16 +21816,16 @@ }, { "name": "symfony/lock", - "version": "v4.4.27", + "version": "v4.4.46", "source": { "type": "git", "url": "https://github.com/symfony/lock.git", - "reference": "6ca476d4ac992802f2a4043929f68f1818449486" + "reference": "8b060dd4e10f05219698ceb3a4ad735b19c1be4f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/lock/zipball/6ca476d4ac992802f2a4043929f68f1818449486", - "reference": "6ca476d4ac992802f2a4043929f68f1818449486", + "url": "https://api.github.com/repos/symfony/lock/zipball/8b060dd4e10f05219698ceb3a4ad735b19c1be4f", + "reference": "8b060dd4e10f05219698ceb3a4ad735b19c1be4f", "shasum": "" }, "require": { @@ -21454,10 +21834,10 @@ "symfony/polyfill-php80": "^1.16" }, "conflict": { - "doctrine/dbal": "<2.6" + "doctrine/dbal": "<2.7" }, "require-dev": { - "doctrine/dbal": "^2.6|^3.0", + "doctrine/dbal": "^2.7|^3.0", "predis/predis": "~1.0" }, "type": "library", @@ -21494,7 +21874,7 @@ "semaphore" ], "support": { - "source": "https://github.com/symfony/lock/tree/v4.4.27" + "source": "https://github.com/symfony/lock/tree/v4.4.46" }, "funding": [ { @@ -21510,31 +21890,31 @@ "type": "tidelift" } ], - "time": "2021-07-23T15:41:52+00:00" + "time": "2022-09-19T08:41:12+00:00" }, { "name": "symfony/phpunit-bridge", - "version": "v5.3.4", + "version": "v5.4.16", "source": { "type": "git", "url": "https://github.com/symfony/phpunit-bridge.git", - "reference": "bc368b765a651424b19f5759953ce2873e7d448b" + "reference": "5ea977eb24dd9926e2920078530985dc6942597c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/bc368b765a651424b19f5759953ce2873e7d448b", - "reference": "bc368b765a651424b19f5759953ce2873e7d448b", + "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/5ea977eb24dd9926e2920078530985dc6942597c", + "reference": "5ea977eb24dd9926e2920078530985dc6942597c", "shasum": "" }, "require": { "php": ">=7.1.3", - "symfony/deprecation-contracts": "^2.1" + "symfony/deprecation-contracts": "^2.1|^3" }, "conflict": { "phpunit/phpunit": "<7.5|9.1.2" }, "require-dev": { - "symfony/error-handler": "^4.4|^5.0" + "symfony/error-handler": "^4.4|^5.0|^6.0" }, "suggest": { "symfony/error-handler": "For tracking deprecated interfaces usages at runtime with DebugClassLoader" @@ -21577,7 +21957,7 @@ "description": "Provides utilities for PHPUnit, especially user deprecation notices management", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/phpunit-bridge/tree/v5.3.4" + "source": "https://github.com/symfony/phpunit-bridge/tree/v5.4.16" }, "funding": [ { @@ -21593,7 +21973,7 @@ "type": "tidelift" } ], - "time": "2021-07-15T21:37:44+00:00" + "time": "2022-11-14T09:59:19+00:00" }, { "name": "theseer/tokenizer", @@ -21646,7 +22026,14 @@ "time": "2021-07-28T10:34:58+00:00" } ], - "aliases": [], + "aliases": [ + { + "package": "islandora/chullo", + "version": "1.2.0.0", + "alias": "dev-dev", + "alias_normalized": "dev-dev" + } + ], "minimum-stability": "dev", "stability-flags": { "drupal/auto_entitylabel": 10, From 4056fc6da18cf2eba276f9eb4f10902d6bf61f95 Mon Sep 17 00:00:00 2001 From: Tim Martin Date: Tue, 20 Dec 2022 09:54:10 -0700 Subject: [PATCH 07/10] checkpoint chullo unresolved tag fix --- codebase/composer.json | 3 ++- codebase/composer.lock | 14 +++----------- 2 files changed, 5 insertions(+), 12 deletions(-) diff --git a/codebase/composer.json b/codebase/composer.json index a29d08eb5..e366302d8 100644 --- a/codebase/composer.json +++ b/codebase/composer.json @@ -199,7 +199,8 @@ "drupal/core-project-message": true, "drupal/core-vendor-hardening": true, "zaporylie/composer-drupal-optimizations": true, - "wikimedia/composer-merge-plugin": true + "wikimedia/composer-merge-plugin": true, + "dealerdirect/phpcodesniffer-composer-installer": false } }, "autoload": { diff --git a/codebase/composer.lock b/codebase/composer.lock index 4dca3f2d2..d33f9f200 100644 --- a/codebase/composer.lock +++ b/codebase/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": "5e01051506b118394eeaaaeeeb0abaf8", + "content-hash": "81d89ce30a3e6e40021d650127fbf0c5", "packages": [ { "name": "alchemy/zippy", @@ -8352,22 +8352,14 @@ "sebastian/phpcpd": "^6.0", "squizlabs/php_codesniffer": "^3.0" }, + "default-branch": true, "type": "library", "autoload": { "psr-4": { "Islandora\\Crayfish\\Commons\\": "src/" } }, - "scripts": { - "check": [ - "vendor/bin/phpcs --standard=PSR2 src tests", - "vendor/bin/phpcpd --suffix *.php src tests" - ], - "test": [ - "@check", - "vendor/bin/phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], From ddc06497b644ecfd779afbe805270dd56af306e2 Mon Sep 17 00:00:00 2001 From: Tim Martin Date: Tue, 20 Dec 2022 12:10:20 -0700 Subject: [PATCH 08/10] reverting composer changes --- codebase/composer.json | 24 +- codebase/composer.lock | 3499 ++++++++++++++++++---------------------- 2 files changed, 1577 insertions(+), 1946 deletions(-) diff --git a/codebase/composer.json b/codebase/composer.json index e366302d8..d0bef3f12 100644 --- a/codebase/composer.json +++ b/codebase/composer.json @@ -19,10 +19,6 @@ "type": "vcs", "url": "git@github.com:Islandora/islandora.git" }, - { - "type": "vcs", - "url": "git@github.com:Islandora/chullo.git" - }, { "type": "vcs", "url": "git@github.com:jhu-idc/islandora_defaults.git" @@ -100,6 +96,18 @@ } } }, + { + "type": "package", + "package": { + "name": "islandora/chullo", + "version": "dev-dev", + "source": { + "type": "git", + "url": "https://github.com/Islandora/chullo.git", + "reference": "d563d5e48ef9b15dcf45029277bbc2f6eeef2454" + } + } + }, { "type": "package", "package": { @@ -160,7 +168,6 @@ "imagesloaded/imagesloaded": "^4.1", "islandora-rdm/islandora_fits": "dev-8.x-1.x", "islandora/carapace": "dev-8.x-3.x", - "islandora/chullo": "1.2.0 as dev-dev", "jhu-idc/idc-ui-theme": "dev-main", "jhu-idc/idc_defaults": "dev-main", "jhu-idc/idc_export": "dev-main", @@ -199,8 +206,7 @@ "drupal/core-project-message": true, "drupal/core-vendor-hardening": true, "zaporylie/composer-drupal-optimizations": true, - "wikimedia/composer-merge-plugin": true, - "dealerdirect/phpcodesniffer-composer-installer": false + "wikimedia/composer-merge-plugin": true } }, "autoload": { @@ -261,6 +267,10 @@ "simplesamlphp/simplesamlphp": { "SimpleSAMLphp config": "patches/simplesaml_config.patch" }, + "drupal/title_length": { + "Node title length 1: Apply user config override": "patches/node_title_length_fix-hook-install.patch", + "Node title length 2: Taxonomy name length": "patches/node_title_length_termNameCharLength-3041979-8.patch" + }, "islandora/islandora": { "Routing definitions": "patches/islandora.routing.yml.patch", "Media Source Serivce": "patches/mediasourceservice.patch", diff --git a/codebase/composer.lock b/codebase/composer.lock index d33f9f200..307551276 100644 --- a/codebase/composer.lock +++ b/codebase/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": "81d89ce30a3e6e40021d650127fbf0c5", + "content-hash": "f4d2410121b9ff99bc852a498aa5e460", "packages": [ { "name": "alchemy/zippy", @@ -130,78 +130,27 @@ }, "time": "2019-12-24T22:41:47+00:00" }, - { - "name": "aws/aws-crt-php", - "version": "v1.0.2", - "source": { - "type": "git", - "url": "https://github.com/awslabs/aws-crt-php.git", - "reference": "3942776a8c99209908ee0b287746263725685732" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/3942776a8c99209908ee0b287746263725685732", - "reference": "3942776a8c99209908ee0b287746263725685732", - "shasum": "" - }, - "require": { - "php": ">=5.5" - }, - "require-dev": { - "phpunit/phpunit": "^4.8.35|^5.4.3" - }, - "type": "library", - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Apache-2.0" - ], - "authors": [ - { - "name": "AWS SDK Common Runtime Team", - "email": "aws-sdk-common-runtime@amazon.com" - } - ], - "description": "AWS Common Runtime for PHP", - "homepage": "http://aws.amazon.com/sdkforphp", - "keywords": [ - "amazon", - "aws", - "crt", - "sdk" - ], - "support": { - "issues": "https://github.com/awslabs/aws-crt-php/issues", - "source": "https://github.com/awslabs/aws-crt-php/tree/v1.0.2" - }, - "time": "2021-09-03T22:57:30+00:00" - }, { "name": "aws/aws-sdk-php", - "version": "3.254.0", + "version": "3.191.4", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "9e07cddf9be6ab241c241344ca2e9cf33e32a22e" + "reference": "63f015b49346cda8e4ac57cc33174744cc116654" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/9e07cddf9be6ab241c241344ca2e9cf33e32a22e", - "reference": "9e07cddf9be6ab241c241344ca2e9cf33e32a22e", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/63f015b49346cda8e4ac57cc33174744cc116654", + "reference": "63f015b49346cda8e4ac57cc33174744cc116654", "shasum": "" }, "require": { - "aws/aws-crt-php": "^1.0.2", "ext-json": "*", "ext-pcre": "*", "ext-simplexml": "*", - "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5", + "guzzlehttp/guzzle": "^5.3.3|^6.2.1|^7.0", "guzzlehttp/promises": "^1.4.0", - "guzzlehttp/psr7": "^1.8.5 || ^2.3", + "guzzlehttp/psr7": "^1.7.0", "mtdowling/jmespath.php": "^2.6", "php": ">=5.5" }, @@ -209,8 +158,6 @@ "andrewsville/php-token-reflection": "^1.4", "aws/aws-php-sns-message-validator": "~1.0", "behat/behat": "~3.0", - "composer/composer": "^1.10.22", - "dms/phpunit-arraysubset-asserts": "^0.4.0", "doctrine/cache": "~1.4", "ext-dom": "*", "ext-openssl": "*", @@ -218,11 +165,10 @@ "ext-sockets": "*", "nette/neon": "^2.3", "paragonie/random_compat": ">= 2", - "phpunit/phpunit": "^4.8.35 || ^5.6.3 || ^9.5", + "phpunit/phpunit": "^4.8.35|^5.4.3", "psr/cache": "^1.0", "psr/simple-cache": "^1.0", - "sebastian/comparator": "^1.2.3 || ^4.0", - "yoast/phpunit-polyfills": "^1.0" + "sebastian/comparator": "^1.2.3" }, "suggest": { "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications", @@ -270,9 +216,9 @@ "support": { "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80", "issues": "https://github.com/aws/aws-sdk-php/issues", - "source": "https://github.com/aws/aws-sdk-php/tree/3.254.0" + "source": "https://github.com/aws/aws-sdk-php/tree/3.191.4" }, - "time": "2022-12-19T19:23:23+00:00" + "time": "2021-08-25T18:15:26+00:00" }, { "name": "chi-teck/drupal-code-generator", @@ -348,16 +294,16 @@ }, { "name": "composer/installers", - "version": "v1.12.0", + "version": "v1.11.0", "source": { "type": "git", "url": "https://github.com/composer/installers.git", - "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19" + "reference": "ae03311f45dfe194412081526be2e003960df74b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/installers/zipball/d20a64ed3c94748397ff5973488761b22f6d3f19", - "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19", + "url": "https://api.github.com/repos/composer/installers/zipball/ae03311f45dfe194412081526be2e003960df74b", + "reference": "ae03311f45dfe194412081526be2e003960df74b", "shasum": "" }, "require": { @@ -456,7 +402,6 @@ "modx", "moodle", "osclass", - "pantheon", "phpbb", "piwik", "ppi", @@ -479,7 +424,7 @@ ], "support": { "issues": "https://github.com/composer/installers/issues", - "source": "https://github.com/composer/installers/tree/v1.12.0" + "source": "https://github.com/composer/installers/tree/v1.11.0" }, "funding": [ { @@ -495,7 +440,7 @@ "type": "tidelift" } ], - "time": "2021-09-13T08:19:44+00:00" + "time": "2021-04-28T06:42:17+00:00" }, { "name": "composer/semver", @@ -580,29 +525,28 @@ }, { "name": "consolidation/annotated-command", - "version": "4.7.1", + "version": "4.2.4", "source": { "type": "git", "url": "https://github.com/consolidation/annotated-command.git", - "reference": "fd263e3e9341d29758025b1a9b2878e3247525be" + "reference": "ec297e05cb86557671c2d6cbb1bebba6c7ae2c60" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/fd263e3e9341d29758025b1a9b2878e3247525be", - "reference": "fd263e3e9341d29758025b1a9b2878e3247525be", + "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/ec297e05cb86557671c2d6cbb1bebba6c7ae2c60", + "reference": "ec297e05cb86557671c2d6cbb1bebba6c7ae2c60", "shasum": "" }, "require": { "consolidation/output-formatters": "^4.1.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" + "psr/log": "^1|^2", + "symfony/console": "^4.4.8|~5.1.0", + "symfony/event-dispatcher": "^4.4.8|^5", + "symfony/finder": "^4.4.8|^5" }, "require-dev": { - "composer-runtime-api": "^2.0", - "phpunit/phpunit": "^7.5.20 || ^8 || ^9", + "phpunit/phpunit": ">=7.5.20", "squizlabs/php_codesniffer": "^3", "yoast/phpunit-polyfills": "^0.2.0" }, @@ -630,9 +574,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.7.1" + "source": "https://github.com/consolidation/annotated-command/tree/4.2.4" }, - "time": "2022-12-06T22:57:25+00:00" + "time": "2020-12-10T16:56:39+00:00" }, { "name": "consolidation/config", @@ -791,22 +735,22 @@ }, { "name": "consolidation/log", - "version": "2.1.1", + "version": "2.0.2", "source": { "type": "git", "url": "https://github.com/consolidation/log.git", - "reference": "3ad08dc57e8aff9400111bad36beb0ed387fe6a9" + "reference": "82a2aaaa621a7b976e50a745a8d249d5085ee2b1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/log/zipball/3ad08dc57e8aff9400111bad36beb0ed387fe6a9", - "reference": "3ad08dc57e8aff9400111bad36beb0ed387fe6a9", + "url": "https://api.github.com/repos/consolidation/log/zipball/82a2aaaa621a7b976e50a745a8d249d5085ee2b1", + "reference": "82a2aaaa621a7b976e50a745a8d249d5085ee2b1", "shasum": "" }, "require": { "php": ">=7.1.3", - "psr/log": "^1 || ^2", - "symfony/console": "^4 || ^5 || ^6" + "psr/log": "^1.0", + "symfony/console": "^4|^5" }, "require-dev": { "phpunit/phpunit": ">=7.5.20", @@ -837,36 +781,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/2.1.1" + "source": "https://github.com/consolidation/log/tree/2.0.2" }, - "time": "2022-02-24T04:27:32+00:00" + "time": "2020-12-10T16:26:23+00:00" }, { "name": "consolidation/output-formatters", - "version": "4.2.3", + "version": "4.1.2", "source": { "type": "git", "url": "https://github.com/consolidation/output-formatters.git", - "reference": "cbb50cc86775f14972003f797b61e232788bee1f" + "reference": "5821e6ae076bf690058a4de6c94dce97398a69c9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/cbb50cc86775f14972003f797b61e232788bee1f", - "reference": "cbb50cc86775f14972003f797b61e232788bee1f", + "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/5821e6ae076bf690058a4de6c94dce97398a69c9", + "reference": "5821e6ae076bf690058a4de6c94dce97398a69c9", "shasum": "" }, "require": { - "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3", + "dflydev/dot-access-data": "^1.1.0", "php": ">=7.1.3", - "symfony/console": "^4|^5|^6", - "symfony/finder": "^4|^5|^6" + "symfony/console": "^4|^5", + "symfony/finder": "^4|^5" }, "require-dev": { "php-coveralls/php-coveralls": "^2.4.2", "phpunit/phpunit": ">=7", "squizlabs/php_codesniffer": "^3", - "symfony/var-dumper": "^4|^5|^6", - "symfony/yaml": "^4|^5|^6", + "symfony/var-dumper": "^4", + "symfony/yaml": "^4", "yoast/phpunit-polyfills": "^0.2.0" }, "suggest": { @@ -896,55 +840,57 @@ "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.2.3" + "source": "https://github.com/consolidation/output-formatters/tree/4.1.2" }, - "time": "2022-10-17T04:01:40+00:00" + "time": "2020-12-12T19:04:59+00:00" }, { "name": "consolidation/robo", - "version": "3.0.11", + "version": "2.2.2", "source": { "type": "git", - "url": "https://github.com/consolidation/robo.git", - "reference": "820fa0f164f77887e268b7dbfb2283416c7334c1" + "url": "https://github.com/consolidation/Robo.git", + "reference": "b365df174d9cfb0f5814e4f3275a1c558b17bc4c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/robo/zipball/820fa0f164f77887e268b7dbfb2283416c7334c1", - "reference": "820fa0f164f77887e268b7dbfb2283416c7334c1", + "url": "https://api.github.com/repos/consolidation/Robo/zipball/b365df174d9cfb0f5814e4f3275a1c558b17bc4c", + "reference": "b365df174d9cfb0f5814e4f3275a1c558b17bc4c", "shasum": "" }, "require": { - "consolidation/annotated-command": "^4.3", - "consolidation/config": "^1.2.1 || ^2.0.1", - "consolidation/log": "^1.1.1 || ^2.0.2", - "consolidation/output-formatters": "^4.1.2", - "consolidation/self-update": "^2.0", - "league/container": "^3.3.1 || ^4.0", + "consolidation/annotated-command": "^4.2.1", + "consolidation/config": "^1.2.1|^2", + "consolidation/log": "^1.1.1|^2.0.1", + "consolidation/output-formatters": "^4.1.1", + "consolidation/self-update": "^1.2", + "league/container": "^2.4.1", "php": ">=7.1.3", - "symfony/console": "^4.4.19 || ^5 || ^6", - "symfony/event-dispatcher": "^4.4.19 || ^5 || ^6", - "symfony/filesystem": "^4.4.9 || ^5 || ^6", - "symfony/finder": "^4.4.9 || ^5 || ^6", - "symfony/process": "^4.4.9 || ^5 || ^6", - "symfony/yaml": "^4.4 || ^5 || ^6" + "symfony/console": "^4.4.11|^5", + "symfony/event-dispatcher": "^4.4.11|^5", + "symfony/filesystem": "^4.4.11|^5", + "symfony/finder": "^4.4.11|^5", + "symfony/process": "^4.4.11|^5", + "symfony/yaml": "^4.0 || ^5.0" }, "conflict": { "codegyre/robo": "*" }, "require-dev": { + "g1a/composer-test-scenarios": "^3", "natxet/cssmin": "3.0.4", "patchwork/jsqueeze": "^2", "pear/archive_tar": "^1.4.4", - "phpunit/phpunit": "^7.5.20 || ^8", - "squizlabs/php_codesniffer": "^3.6", - "yoast/phpunit-polyfills": "^0.2.0" + "php-coveralls/php-coveralls": "^2.2", + "phpdocumentor/reflection-docblock": "^4.3.2", + "phpunit/phpunit": "^6.5.14", + "squizlabs/php_codesniffer": "^3" }, "suggest": { + "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch", "natxet/cssmin": "For minifying CSS files in taskMinify", "patchwork/jsqueeze": "For minifying JS files in taskMinify", - "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.", - "totten/lurkerlite": "For monitoring filesystem changes in taskWatch" + "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively." }, "bin": [ "robo" @@ -994,30 +940,29 @@ ], "description": "Modern task runner", "support": { - "issues": "https://github.com/consolidation/robo/issues", - "source": "https://github.com/consolidation/robo/tree/3.0.11" + "issues": "https://github.com/consolidation/Robo/issues", + "source": "https://github.com/consolidation/Robo/tree/2.2.2" }, - "time": "2022-12-07T15:18:26+00:00" + "time": "2020-12-18T22:09:18+00:00" }, { "name": "consolidation/self-update", - "version": "2.0.5", + "version": "1.2.0", "source": { "type": "git", "url": "https://github.com/consolidation/self-update.git", - "reference": "8a64bdd8daf5faa8e85f56534dd99caf928164b3" + "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/self-update/zipball/8a64bdd8daf5faa8e85f56534dd99caf928164b3", - "reference": "8a64bdd8daf5faa8e85f56534dd99caf928164b3", + "url": "https://api.github.com/repos/consolidation/self-update/zipball/dba6b2c0708f20fa3ba8008a2353b637578849b4", + "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4", "shasum": "" }, "require": { - "composer/semver": "^3.2", "php": ">=5.5.0", - "symfony/console": "^2.8 || ^3 || ^4 || ^5 || ^6", - "symfony/filesystem": "^2.5 || ^3 || ^4 || ^5 || ^6" + "symfony/console": "^2.8|^3|^4|^5", + "symfony/filesystem": "^2.5|^3|^4|^5" }, "bin": [ "scripts/release" @@ -1025,7 +970,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "2.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { @@ -1050,30 +995,28 @@ "description": "Provides a self:update command for Symfony Console applications.", "support": { "issues": "https://github.com/consolidation/self-update/issues", - "source": "https://github.com/consolidation/self-update/tree/2.0.5" + "source": "https://github.com/consolidation/self-update/tree/1.2.0" }, - "time": "2022-02-09T22:44:24+00:00" + "time": "2020-04-13T02:49:20+00:00" }, { "name": "consolidation/site-alias", - "version": "3.1.7", + "version": "3.1.0", "source": { "type": "git", "url": "https://github.com/consolidation/site-alias.git", - "reference": "3b6519592c7e8557423f935806cd73adf69ed6c7" + "reference": "9ed3c590be9fcf9fea69c73456c2fd4b27f5204c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/site-alias/zipball/3b6519592c7e8557423f935806cd73adf69ed6c7", - "reference": "3b6519592c7e8557423f935806cd73adf69ed6c7", + "url": "https://api.github.com/repos/consolidation/site-alias/zipball/9ed3c590be9fcf9fea69c73456c2fd4b27f5204c", + "reference": "9ed3c590be9fcf9fea69c73456c2fd4b27f5204c", "shasum": "" }, "require": { - "consolidation/config": "^1.2.1 || ^2", + "consolidation/config": "^1.2.1|^2", "php": ">=5.5.0", - "symfony/filesystem": "^4.4 || ^5.4 || ^6", - "symfony/finder": "~2.3 || ^3 || ^4.4 || ^5 || ^6", - "webmozart/path-util": "^2.3" + "symfony/finder": "~2.3|^3|^4.4|^5" }, "require-dev": { "php-coveralls/php-coveralls": "^2.4.2", @@ -1110,33 +1053,33 @@ "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/3.1.7" + "source": "https://github.com/consolidation/site-alias/tree/3.1.0" }, - "time": "2022-10-15T01:21:09+00:00" + "time": "2021-02-20T20:03:10+00:00" }, { "name": "consolidation/site-process", - "version": "4.2.1", + "version": "4.1.0", "source": { "type": "git", "url": "https://github.com/consolidation/site-process.git", - "reference": "ee3bf69001694b2117cc2f96c2ef70d8d45f1234" + "reference": "ef57711d7049f7606ce936ded16ad93f1ad7f02c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/site-process/zipball/ee3bf69001694b2117cc2f96c2ef70d8d45f1234", - "reference": "ee3bf69001694b2117cc2f96c2ef70d8d45f1234", + "url": "https://api.github.com/repos/consolidation/site-process/zipball/ef57711d7049f7606ce936ded16ad93f1ad7f02c", + "reference": "ef57711d7049f7606ce936ded16ad93f1ad7f02c", "shasum": "" }, "require": { - "consolidation/config": "^1.2.1 || ^2", - "consolidation/site-alias": "^3 || ^4", + "consolidation/config": "^1.2.1|^2", + "consolidation/site-alias": "^3", "php": ">=7.1.3", - "symfony/console": "^2.8.52 || ^3 || ^4.4 || ^5", - "symfony/process": "^4.3.4 || ^5" + "symfony/console": "^2.8.52|^3|^4.4|^5", + "symfony/process": "^4.3.4" }, "require-dev": { - "phpunit/phpunit": "^7.5.20 || ^8.5.14", + "phpunit/phpunit": "^7.5.20|^8.5.14", "squizlabs/php_codesniffer": "^3", "yoast/phpunit-polyfills": "^0.2.0" }, @@ -1168,22 +1111,58 @@ "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/4.2.1" + "source": "https://github.com/consolidation/site-process/tree/4.1.0" + }, + "time": "2021-02-21T02:53:33+00:00" + }, + { + "name": "container-interop/container-interop", + "version": "1.2.0", + "source": { + "type": "git", + "url": "https://github.com/container-interop/container-interop.git", + "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8", + "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8", + "shasum": "" + }, + "require": { + "psr/container": "^1.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Interop\\Container\\": "src/Interop/Container/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Promoting the interoperability of container objects (DIC, SL, etc.)", + "homepage": "https://github.com/container-interop/container-interop", + "support": { + "issues": "https://github.com/container-interop/container-interop/issues", + "source": "https://github.com/container-interop/container-interop/tree/master" }, - "time": "2022-10-18T13:19:35+00:00" + "abandoned": "psr/container", + "time": "2017-02-14T19:40:03+00:00" }, { "name": "cweagans/composer-patches", - "version": "1.7.2", + "version": "1.7.1", "source": { "type": "git", "url": "https://github.com/cweagans/composer-patches.git", - "reference": "e9969cfc0796e6dea9b4e52f77f18e1065212871" + "reference": "9888dcc74993c030b75f3dd548bb5e20cdbd740c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e9969cfc0796e6dea9b4e52f77f18e1065212871", - "reference": "e9969cfc0796e6dea9b4e52f77f18e1065212871", + "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/9888dcc74993c030b75f3dd548bb5e20cdbd740c", + "reference": "9888dcc74993c030b75f3dd548bb5e20cdbd740c", "shasum": "" }, "require": { @@ -1216,9 +1195,9 @@ "description": "Provides a way to patch Composer packages.", "support": { "issues": "https://github.com/cweagans/composer-patches/issues", - "source": "https://github.com/cweagans/composer-patches/tree/1.7.2" + "source": "https://github.com/cweagans/composer-patches/tree/1.7.1" }, - "time": "2022-01-25T19:21:20+00:00" + "time": "2021-06-08T15:12:46+00:00" }, { "name": "dflydev/dot-access-configuration", @@ -1349,16 +1328,16 @@ }, { "name": "dflydev/placeholder-resolver", - "version": "v1.0.3", + "version": "v1.0.2", "source": { "type": "git", "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git", - "reference": "d0161b4be1e15838327b01b21d0149f382d69906" + "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/d0161b4be1e15838327b01b21d0149f382d69906", - "reference": "d0161b4be1e15838327b01b21d0149f382d69906", + "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356", + "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356", "shasum": "" }, "require": { @@ -1399,9 +1378,9 @@ ], "support": { "issues": "https://github.com/dflydev/dflydev-placeholder-resolver/issues", - "source": "https://github.com/dflydev/dflydev-placeholder-resolver/tree/v1.0.3" + "source": "https://github.com/dflydev/dflydev-placeholder-resolver/tree/v1.0.2" }, - "time": "2021-12-03T16:48:58+00:00" + "time": "2012-10-28T21:08:28+00:00" }, { "name": "doctrine/annotations", @@ -1748,35 +1727,34 @@ }, { "name": "doctrine/dbal", - "version": "2.13.9", + "version": "2.13.2", "source": { "type": "git", "url": "https://github.com/doctrine/dbal.git", - "reference": "c480849ca3ad6706a39c970cdfe6888fa8a058b8" + "reference": "8dd39d2ead4409ce652fd4f02621060f009ea5e4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/dbal/zipball/c480849ca3ad6706a39c970cdfe6888fa8a058b8", - "reference": "c480849ca3ad6706a39c970cdfe6888fa8a058b8", + "url": "https://api.github.com/repos/doctrine/dbal/zipball/8dd39d2ead4409ce652fd4f02621060f009ea5e4", + "reference": "8dd39d2ead4409ce652fd4f02621060f009ea5e4", "shasum": "" }, "require": { "doctrine/cache": "^1.0|^2.0", - "doctrine/deprecations": "^0.5.3|^1", + "doctrine/deprecations": "^0.5.3", "doctrine/event-manager": "^1.0", "ext-pdo": "*", "php": "^7.1 || ^8" }, "require-dev": { "doctrine/coding-standard": "9.0.0", - "jetbrains/phpstorm-stubs": "2021.1", - "phpstan/phpstan": "1.4.6", - "phpunit/phpunit": "^7.5.20|^8.5|9.5.16", - "psalm/plugin-phpunit": "0.16.1", - "squizlabs/php_codesniffer": "3.6.2", + "jetbrains/phpstorm-stubs": "2020.2", + "phpstan/phpstan": "0.12.81", + "phpunit/phpunit": "^7.5.20|^8.5|9.5.5", + "squizlabs/php_codesniffer": "3.6.0", "symfony/cache": "^4.4", "symfony/console": "^2.0.5|^3.0|^4.0|^5.0", - "vimeo/psalm": "4.22.0" + "vimeo/psalm": "4.6.4" }, "suggest": { "symfony/console": "For helpful console commands such as SQL execution and import of files." @@ -1837,7 +1815,7 @@ ], "support": { "issues": "https://github.com/doctrine/dbal/issues", - "source": "https://github.com/doctrine/dbal/tree/2.13.9" + "source": "https://github.com/doctrine/dbal/tree/2.13.2" }, "funding": [ { @@ -1853,29 +1831,29 @@ "type": "tidelift" } ], - "time": "2022-05-02T20:28:55+00:00" + "time": "2021-06-18T21:48:39+00:00" }, { "name": "doctrine/deprecations", - "version": "v1.0.0", + "version": "v0.5.3", "source": { "type": "git", "url": "https://github.com/doctrine/deprecations.git", - "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de" + "reference": "9504165960a1f83cc1480e2be1dd0a0478561314" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de", - "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de", + "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314", + "reference": "9504165960a1f83cc1480e2be1dd0a0478561314", "shasum": "" }, "require": { "php": "^7.1|^8.0" }, "require-dev": { - "doctrine/coding-standard": "^9", - "phpunit/phpunit": "^7.5|^8.5|^9.5", - "psr/log": "^1|^2|^3" + "doctrine/coding-standard": "^6.0|^7.0|^8.0", + "phpunit/phpunit": "^7.0|^8.0|^9.0", + "psr/log": "^1.0" }, "suggest": { "psr/log": "Allows logging deprecations via PSR-3 logger implementation" @@ -1894,9 +1872,9 @@ "homepage": "https://www.doctrine-project.org/", "support": { "issues": "https://github.com/doctrine/deprecations/issues", - "source": "https://github.com/doctrine/deprecations/tree/v1.0.0" + "source": "https://github.com/doctrine/deprecations/tree/v0.5.3" }, - "time": "2022-05-02T15:47:09+00:00" + "time": "2021-03-21T12:59:47+00:00" }, { "name": "doctrine/event-manager", @@ -2560,32 +2538,29 @@ }, { "name": "drupal/auto_entitylabel", - "version": "3.0.0", + "version": "3.0.0-beta4", "source": { "type": "git", "url": "https://git.drupalcode.org/project/auto_entitylabel.git", - "reference": "8.x-3.0" + "reference": "8.x-3.0-beta4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/auto_entitylabel-8.x-3.0.zip", - "reference": "8.x-3.0", - "shasum": "8dd54d4b677f2c7259a15afd7b71d0d1b6f6b4a6" + "url": "https://ftp.drupal.org/files/projects/auto_entitylabel-8.x-3.0-beta4.zip", + "reference": "8.x-3.0-beta4", + "shasum": "916befd4ce95b5d73de48ac1b105cc33e9f7821f" }, "require": { - "drupal/core": "^9.3 || ^10" - }, - "require-dev": { - "drupal/token": "^1.0" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.0", - "datestamp": "1671545557", + "version": "8.x-3.0-beta4", + "datestamp": "1609349103", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Beta releases are not covered by Drupal security advisories." } } }, @@ -2594,6 +2569,18 @@ "GPL-2.0-or-later" ], "authors": [ + { + "name": "Pravin Ajaaz", + "homepage": "https://www.drupal.org/user/2910049" + }, + { + "name": "RenatoG", + "homepage": "https://www.drupal.org/user/3326031" + }, + { + "name": "VladimirAus", + "homepage": "https://www.drupal.org/user/673120" + }, { "name": "bforchhammer", "homepage": "https://www.drupal.org/user/216396" @@ -2606,25 +2593,9 @@ "name": "diqidoq", "homepage": "https://www.drupal.org/user/1001934" }, - { - "name": "japerry", - "homepage": "https://www.drupal.org/user/45640" - }, - { - "name": "Pravin Ajaaz", - "homepage": "https://www.drupal.org/user/2910049" - }, { "name": "purushotam.rai", "homepage": "https://www.drupal.org/user/3193859" - }, - { - "name": "RenatoG", - "homepage": "https://www.drupal.org/user/3326031" - }, - { - "name": "VladimirAus", - "homepage": "https://www.drupal.org/user/673120" } ], "description": "Allows hiding of entity label fields and automatic label creation.", @@ -2636,26 +2607,26 @@ }, { "name": "drupal/captcha", - "version": "1.8.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/captcha.git", - "reference": "8.x-1.8" + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/captcha-8.x-1.8.zip", - "reference": "8.x-1.8", - "shasum": "1d02df92de72616e75c9006549ae4d4c4dcbb5f5" + "url": "https://ftp.drupal.org/files/projects/captcha-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "e35a2ce42b652f833d140f7571d1eef0e06b0edc" }, "require": { - "drupal/core": ">=8.9 <11" + "drupal/core": "^8.8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.8", - "datestamp": "1668593425", + "version": "8.x-1.2", + "datestamp": "1619673374", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2768,16 +2739,16 @@ }, { "name": "drupal/console", - "version": "1.9.9", + "version": "1.9.7", "source": { "type": "git", "url": "https://github.com/hechoendrupal/drupal-console.git", - "reference": "3756318780483910250e4ba78207cf960bde4545" + "reference": "90053d30f52427edb4e4941a9063acb65b5a2c1e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/3756318780483910250e4ba78207cf960bde4545", - "reference": "3756318780483910250e4ba78207cf960bde4545", + "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/90053d30f52427edb4e4941a9063acb65b5a2c1e", + "reference": "90053d30f52427edb4e4941a9063acb65b5a2c1e", "shasum": "" }, "require": { @@ -2791,7 +2762,6 @@ "psy/psysh": "0.6.* || ~0.8", "symfony/css-selector": "~3.0|~4.0", "symfony/dom-crawler": "~3.0|~4.0", - "symfony/expression-language": "~3.0|~4.0", "symfony/http-foundation": "~3.0|~4.0" }, "suggest": { @@ -2848,7 +2818,7 @@ "docs": "https://docs.drupalconsole.com/", "forum": "https://gitter.im/hechoendrupal/DrupalConsole", "issues": "https://github.com/hechoendrupal/drupal-console/issues", - "source": "https://github.com/hechoendrupal/drupal-console/tree/1.9.9" + "source": "https://github.com/hechoendrupal/drupal-console/tree/1.9.7" }, "funding": [ { @@ -2856,7 +2826,7 @@ "type": "open_collective" } ], - "time": "2022-09-17T20:50:37+00:00" + "time": "2020-11-30T02:09:53+00:00" }, { "name": "drupal/console-core", @@ -3098,26 +3068,26 @@ }, { "name": "drupal/contact_block", - "version": "1.7.0", + "version": "1.5.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/contact_block.git", - "reference": "8.x-1.7" + "reference": "8.x-1.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/contact_block-8.x-1.7.zip", - "reference": "8.x-1.7", - "shasum": "1ccc790294dad3dfcbe90e465b994fa4b48dc13e" + "url": "https://ftp.drupal.org/files/projects/contact_block-8.x-1.5.zip", + "reference": "8.x-1.5", + "shasum": "5a5d7febd240fc3673ca755d475bfd4ad4f5a8f3" }, "require": { - "drupal/core": "^8 || ^9 || ^10" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.7", - "datestamp": "1665911371", + "version": "8.x-1.5", + "datestamp": "1587219506", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3126,7 +3096,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { @@ -3200,27 +3170,27 @@ }, { "name": "drupal/contact_storage", - "version": "1.3.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/contact_storage.git", - "reference": "8.x-1.3" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/contact_storage-8.x-1.3.zip", - "reference": "8.x-1.3", - "shasum": "719dad5a991aa32e14c9bcb7b9dc76830e2331df" + "url": "https://ftp.drupal.org/files/projects/contact_storage-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "3560a3eb06daa5f5156c0986989a0b5deadd9de1" }, "require": { - "drupal/core": "^9.1 || ^10", + "drupal/core": "^8.7.7 || ^9", "drupal/token": "^1.6" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.3", - "datestamp": "1667651867", + "version": "8.x-1.1", + "datestamp": "1591811491", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3261,28 +3231,28 @@ }, { "name": "drupal/content_browser", - "version": "1.1.0", + "version": "1.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/content_browser.git", - "reference": "8.x-1.1" + "reference": "8.x-1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/content_browser-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "a920fcae412af83f64590b484e428cead04fd943" + "url": "https://ftp.drupal.org/files/projects/content_browser-8.x-1.0.zip", + "reference": "8.x-1.0", + "shasum": "a947716ca56ebefaca2790c6ca4be8f657036e3a" }, "require": { - "drupal/core": "^8 || ^9 || ^10", + "drupal/core": "^8 || ^9", "drupal/entity_browser": "*", "drupal/entity_embed": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.1", - "datestamp": "1670990746", + "version": "8.x-1.0", + "datestamp": "1590339486", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3766,16 +3736,16 @@ }, { "name": "drupal/core-vendor-hardening", - "version": "9.5.0", + "version": "9.2.4", "source": { "type": "git", "url": "https://github.com/drupal/core-vendor-hardening.git", - "reference": "8293a845c64f1faad0d44955611f8cce69320274" + "reference": "f9eaafd58792fef38037979c2344a9216a93cc7e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-vendor-hardening/zipball/8293a845c64f1faad0d44955611f8cce69320274", - "reference": "8293a845c64f1faad0d44955611f8cce69320274", + "url": "https://api.github.com/repos/drupal/core-vendor-hardening/zipball/f9eaafd58792fef38037979c2344a9216a93cc7e", + "reference": "f9eaafd58792fef38037979c2344a9216a93cc7e", "shasum": "" }, "require": { @@ -3801,23 +3771,23 @@ "drupal" ], "support": { - "source": "https://github.com/drupal/core-vendor-hardening/tree/9.5.0" + "source": "https://github.com/drupal/core-vendor-hardening/tree/9.2.4" }, - "time": "2022-12-07T11:22:43+00:00" + "time": "2021-04-22T15:46:23+00:00" }, { "name": "drupal/csv_serialization", - "version": "2.1.0", + "version": "2.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/csv_serialization.git", - "reference": "8.x-2.1" + "reference": "8.x-2.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/csv_serialization-8.x-2.1.zip", - "reference": "8.x-2.1", - "shasum": "10b8629a5808ed1ecf358d5ca7054d6c14a476d4" + "url": "https://ftp.drupal.org/files/projects/csv_serialization-8.x-2.0.zip", + "reference": "8.x-2.0", + "shasum": "3531383a6926a4ed761be56553997c2a937449ac" }, "require": { "drupal/core": "^8 || ^9", @@ -3830,8 +3800,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.1", - "datestamp": "1655054417", + "version": "8.x-2.0", + "datestamp": "1612801962", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3857,17 +3827,17 @@ }, { "name": "drupal/devel", - "version": "4.2.1", + "version": "4.1.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/devel.git", - "reference": "4.2.1" + "reference": "4.1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/devel-4.2.1.zip", - "reference": "4.2.1", - "shasum": "aa08379bad81cb2e604ee9a0b9e2aabd86fae13f" + "url": "https://ftp.drupal.org/files/projects/devel-4.1.1.zip", + "reference": "4.1.1", + "shasum": "88e5d49dda26a3136291ecd97bc6c8e897b24198" }, "require": { "doctrine/common": "^2.7", @@ -3886,8 +3856,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "4.2.1", - "datestamp": "1664317444", + "version": "4.1.1", + "datestamp": "1631968537", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3923,26 +3893,26 @@ }, { "name": "drupal/embed", - "version": "1.6.0", + "version": "1.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/embed.git", - "reference": "8.x-1.6" + "reference": "8.x-1.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.6.zip", - "reference": "8.x-1.6", - "shasum": "6d2964775c3228d122cd61904786b3640fa83045" + "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.4.zip", + "reference": "8.x-1.4", + "shasum": "09a2bda039bfbb3fff01c91964384bf3d924b8c5" }, "require": { - "drupal/core": "^9.3 | ^10" + "drupal/core": "^8.7.7 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.6", - "datestamp": "1661298150", + "version": "8.x-1.4", + "datestamp": "1590176831", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3987,20 +3957,20 @@ }, { "name": "drupal/entity_browser", - "version": "2.8.0", + "version": "2.6.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/entity_browser.git", - "reference": "8.x-2.8" + "reference": "8.x-2.6" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.8.zip", - "reference": "8.x-2.8", - "shasum": "151433fb7681f3e844010072285a374a5e46cf2a" + "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.6.zip", + "reference": "8.x-2.6", + "shasum": "95cad4ce9620ccb4f02afa0e8b8bbf7c73fc5aac" }, "require": { - "drupal/core": "^9.2 || ^10" + "drupal/core": "^8.8 || ^9" }, "require-dev": { "drupal/embed": "~1.0", @@ -4009,13 +3979,13 @@ "drupal/entityqueue": "1.x-dev", "drupal/inline_entity_form": "1.x-dev", "drupal/paragraphs": "1.x-dev", - "drupal/token": "1.x-dev" + "drupal/token": "~1.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.8", - "datestamp": "1658509699", + "version": "8.x-2.6", + "datestamp": "1624401306", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4077,21 +4047,21 @@ }, { "name": "drupal/entity_embed", - "version": "1.3.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/entity_embed.git", - "reference": "8.x-1.3" + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/entity_embed-8.x-1.3.zip", - "reference": "8.x-1.3", - "shasum": "37781222e0b31a0319f0b2e67ef345f2033435e7" + "url": "https://ftp.drupal.org/files/projects/entity_embed-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "e1d4c9d6931984836c1ea550c32ae40f42367525" }, "require": { - "drupal/core": "^9.3", - "drupal/embed": "^1.5" + "drupal/core": "^8.8 || ^9", + "drupal/embed": "^1.3" }, "require-dev": { "drupal/entity_browser": "^2.2" @@ -4099,8 +4069,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.3", - "datestamp": "1666275539", + "version": "8.x-1.2", + "datestamp": "1631726164", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4109,7 +4079,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { @@ -4148,7 +4118,9 @@ "description": "Allows any entity to be embedded within a text area using a WYSIWYG editor.", "homepage": "https://www.drupal.org/project/entity_embed", "support": { - "source": "https://git.drupalcode.org/project/entity_embed" + "source": "https://git.drupalcode.org/project/entity_embed", + "issues": "https://www.drupal.org/project/issues/entity_embed", + "irc": "irc://irc.freenode.org/drupal-media" } }, { @@ -4197,26 +4169,26 @@ }, { "name": "drupal/epp", - "version": "1.3.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/epp.git", - "reference": "8.x-1.3" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/epp-8.x-1.3.zip", - "reference": "8.x-1.3", - "shasum": "f76397710f3ed2d88d72fa164456cc44afdcf16e" + "url": "https://ftp.drupal.org/files/projects/epp-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "d52e973eb61182b56929aa62a9dc673e0acfd9e4" }, "require": { - "drupal/core": "^8.7.7 || ^9 || ^10" + "drupal/core": "^8.7.7 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.3", - "datestamp": "1670961451", + "version": "8.x-1.1", + "datestamp": "1622317397", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4241,7 +4213,7 @@ "homepage": "https://www.drupal.org/user/998658" } ], - "description": "Prepopulate entity values via tokens. Install the Token module for more tokens and Token browser access.", + "description": "Prepopulate entity values via tokens.", "homepage": "https://www.drupal.org/project/epp", "support": { "source": "https://git.drupalcode.org/project/epp" @@ -4312,26 +4284,26 @@ }, { "name": "drupal/externalauth", - "version": "2.0.3", + "version": "1.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/externalauth.git", - "reference": "2.0.3" + "reference": "8.x-1.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/externalauth-2.0.3.zip", - "reference": "2.0.3", - "shasum": "dae49e3df8739538d7b9371ab7fb5005b8d953fd" + "url": "https://ftp.drupal.org/files/projects/externalauth-8.x-1.4.zip", + "reference": "8.x-1.4", + "shasum": "caea7d2d5a890adad9e6b5beaa2cf139727266d6" }, "require": { - "drupal/core": "^9 || ^10" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.3", - "datestamp": "1668777505", + "version": "8.x-1.4", + "datestamp": "1624457496", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4344,9 +4316,8 @@ ], "authors": [ { - "name": "Sven Decabooter", - "homepage": "https://www.drupal.org/u/svendecabooter", - "role": "Maintainer" + "name": "rgristroph", + "homepage": "https://www.drupal.org/user/516442" }, { "name": "snufkin", @@ -4358,10 +4329,9 @@ } ], "description": "Helper module to authenticate users using an external site / service and storing identification details", - "homepage": "https://drupal.org/project/externalauth", + "homepage": "https://www.drupal.org/project/externalauth", "support": { - "source": "https://git.drupalcode.org/project/externalauth", - "issues": "https://www.drupal.org/project/issues/externalauth" + "source": "https://git.drupalcode.org/project/externalauth" } }, { @@ -4519,26 +4489,29 @@ }, { "name": "drupal/field_group", - "version": "3.4.0", + "version": "3.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/field_group.git", - "reference": "8.x-3.4" + "reference": "8.x-3.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.4.zip", - "reference": "8.x-3.4", - "shasum": "80b937e1a11f8b29c69d853fc4bf798c057c6f94" + "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.2.zip", + "reference": "8.x-3.2", + "shasum": "2020bbfe40f6ba43bc733ae7c8761632572433a0" }, "require": { - "drupal/core": "^9.2 || ^10" + "drupal/core": "^8.8 || ^9" + }, + "require-dev": { + "drupal/jquery_ui_accordion": "^1.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.4", - "datestamp": "1667241979", + "version": "8.x-3.2", + "datestamp": "1628513585", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4580,26 +4553,26 @@ }, { "name": "drupal/field_permissions", - "version": "1.2.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/field_permissions.git", - "reference": "8.x-1.2" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/field_permissions-8.x-1.2.zip", - "reference": "8.x-1.2", - "shasum": "0b1a5edfac518fe6005d015b3781774b41cdec76" + "url": "https://ftp.drupal.org/files/projects/field_permissions-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "11e31db94999e6871ad7633455315bc27989a7ea" }, "require": { - "drupal/core": ">=8.9 <11" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.2", - "datestamp": "1658941749", + "version": "8.x-1.1", + "datestamp": "1598646882", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4644,32 +4617,32 @@ }, { "name": "drupal/file_mdm", - "version": "2.5.0", + "version": "2.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/file_mdm.git", - "reference": "8.x-2.5" + "reference": "8.x-2.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-2.5.zip", - "reference": "8.x-2.5", - "shasum": "391d9902733704274594873aa9b1f6b6ba3bd319" + "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-2.1.zip", + "reference": "8.x-2.1", + "shasum": "5c3d75622299ebddc0e8456bb08bb371da8771bd" }, "require": { - "drupal/core": "^9.3 | ^10", - "lsolesen/pel": "^0.9.12", - "phenx/php-font-lib": "^0.5.4" + "drupal/core": "^8.8 || ^9", + "lsolesen/pel": "^0.9.8", + "phenx/php-font-lib": "^0.5.2", + "php": ">=7" }, "require-dev": { - "drupal/vendor_stream_wrapper": "^2.0.2", - "fileeye/linuxlibertine-fonts": "^5.3" + "drupal/image_effects": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.5", - "datestamp": "1663668519", + "version": "8.x-2.1", + "datestamp": "1586801064", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4694,26 +4667,26 @@ }, { "name": "drupal/file_replace", - "version": "1.3.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/file_replace.git", - "reference": "8.x-1.3" + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/file_replace-8.x-1.3.zip", - "reference": "8.x-1.3", - "shasum": "d0c1d6378d2958d8fd70b9cb55f884e3ddaf5f87" + "url": "https://ftp.drupal.org/files/projects/file_replace-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "9ee1af7ad1f9cf3836b89bc43c3873960166f44d" }, "require": { - "drupal/core": "^8 || ^9 || ^10" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.3", - "datestamp": "1659099667", + "version": "8.x-1.2", + "datestamp": "1600085951", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4746,29 +4719,26 @@ }, { "name": "drupal/filehash", - "version": "1.11.0", + "version": "1.5.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/filehash.git", - "reference": "8.x-1.11" + "reference": "8.x-1.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/filehash-8.x-1.11.zip", - "reference": "8.x-1.11", - "shasum": "2399804f2e5f4d79d22ac768b736642c294a0d18" + "url": "https://ftp.drupal.org/files/projects/filehash-8.x-1.5.zip", + "reference": "8.x-1.5", + "shasum": "3b260fca1f77a003e3849709911ba36503ccb5ba" }, "require": { - "drupal/core": "^8.5 || ^9.0 || ^10.0" - }, - "require-dev": { - "drush/drush": "^10.6 || ^11.0" + "drupal/core": "^8.5 || ^9.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.11", - "datestamp": "1648209292", + "version": "8.x-1.5", + "datestamp": "1615099468", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4776,7 +4746,7 @@ }, "drush": { "services": { - "drush.services.yml": "^9 || ^10 || ^11" + "drush.services.yml": "^9" } } }, @@ -4889,23 +4859,20 @@ }, { "name": "drupal/geolocation", - "version": "3.11.0", + "version": "3.7.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/geolocation.git", - "reference": "8.x-3.11" + "reference": "8.x-3.7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/geolocation-8.x-3.11.zip", - "reference": "8.x-3.11", - "shasum": "7a563ba6ba18380b636c10d936a28837100a4e02" + "url": "https://ftp.drupal.org/files/projects/geolocation-8.x-3.7.zip", + "reference": "8.x-3.7", + "shasum": "796797ff4d3cc9d8b645bf2534d783d170ef77f5" }, "require": { - "drupal/core": "^9.3 || ^10", - "drupal/jquery_ui": "*", - "drupal/jquery_ui_autocomplete": "*", - "php": "^7.3 || ^8.0" + "drupal/core": "^8.7.7 || ^9" }, "require-dev": { "drupal/address": "*", @@ -4924,8 +4891,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.11", - "datestamp": "1671546967", + "version": "8.x-3.7", + "datestamp": "1623052750", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4955,20 +4922,20 @@ }, { "name": "drupal/google_analytics", - "version": "4.0.2", + "version": "4.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/google_analytics.git", - "reference": "4.0.2" + "reference": "4.0.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/google_analytics-4.0.2.zip", - "reference": "4.0.2", - "shasum": "6deec511373e4659e42ff494c8729434728e37d7" + "url": "https://ftp.drupal.org/files/projects/google_analytics-4.0.0.zip", + "reference": "4.0.0", + "shasum": "4f761d4c852d11966f7289b0eb6431cc8db27240" }, "require": { - "drupal/core": "^9.3 || ^10" + "drupal/core": "^8.9|^9.0" }, "require-dev": { "drupal/token": "^1.7" @@ -4976,8 +4943,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "4.0.2", - "datestamp": "1662768595", + "version": "4.0.0", + "datestamp": "1634230238", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5026,26 +4993,26 @@ }, { "name": "drupal/google_tag", - "version": "1.6.0", + "version": "1.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/google_tag.git", - "reference": "8.x-1.6" + "reference": "8.x-1.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/google_tag-8.x-1.6.zip", - "reference": "8.x-1.6", - "shasum": "d084315e54c2e561b8b64eef86081c2634d054cd" + "url": "https://ftp.drupal.org/files/projects/google_tag-8.x-1.4.zip", + "reference": "8.x-1.4", + "shasum": "1bdc6f93d1c79c27738320597f2185f5de37432f" }, "require": { - "drupal/core": "^8.8 || ^9 || ^10" + "drupal/core": "^8.8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.6", - "datestamp": "1671145853", + "version": "8.x-1.4", + "datestamp": "1593179846", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5070,28 +5037,29 @@ }, { "name": "drupal/imagemagick", - "version": "3.4.0", + "version": "3.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/imagemagick.git", - "reference": "8.x-3.4" + "reference": "8.x-3.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-3.4.zip", - "reference": "8.x-3.4", - "shasum": "9f07b7db4bba2cb0e4ff004629f8f78242bb7226" + "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-3.2.zip", + "reference": "8.x-3.2", + "shasum": "35346cda3bb9c989387a282dd7f7bb4da4f70fce" }, "require": { - "drupal/core": "^9.3 || ^10", - "drupal/file_mdm": "^2.5", - "drupal/sophron": "^1.2 || ^2" + "drupal/core": "^8.9 || ^9.1", + "drupal/file_mdm": "^2", + "drupal/sophron": "^1", + "php": ">=7.1" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.4", - "datestamp": "1663947784", + "version": "8.x-3.2", + "datestamp": "1622711751", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5154,246 +5122,19 @@ "source": "https://git.drupalcode.org/project/imagemagick" } }, - { - "name": "drupal/jquery_ui", - "version": "1.6.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/jquery_ui.git", - "reference": "8.x-1.6" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.6.zip", - "reference": "8.x-1.6", - "shasum": "0ddccdcf35a066de1843e1d9670677ee1a2faac0" - }, - "require": { - "drupal/core": "^9.2 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.6", - "datestamp": "1668521197", - "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": "bnjmnm", - "homepage": "https://www.drupal.org/user/2369194" - }, - { - "name": "jjeff", - "homepage": "https://www.drupal.org/user/17190" - }, - { - "name": "lauriii", - "homepage": "https://www.drupal.org/user/1078742" - }, - { - "name": "litwol", - "homepage": "https://www.drupal.org/user/78134" - }, - { - "name": "mfb", - "homepage": "https://www.drupal.org/user/12302" - }, - { - "name": "mfer", - "homepage": "https://www.drupal.org/user/25701" - }, - { - "name": "mikelutz", - "homepage": "https://www.drupal.org/user/2972409" - }, - { - "name": "nod_", - "homepage": "https://www.drupal.org/user/598310" - }, - { - "name": "phenaproxima", - "homepage": "https://www.drupal.org/user/205645" - }, - { - "name": "RobLoach", - "homepage": "https://www.drupal.org/user/61114" - }, - { - "name": "sun", - "homepage": "https://www.drupal.org/user/54136" - }, - { - "name": "webchick", - "homepage": "https://www.drupal.org/user/24967" - }, - { - "name": "Wim Leers", - "homepage": "https://www.drupal.org/user/99777" - }, - { - "name": "zrpnr", - "homepage": "https://www.drupal.org/user/1448368" - } - ], - "description": "Provides jQuery UI library.", - "homepage": "https://www.drupal.org/project/jquery_ui", - "support": { - "source": "https://git.drupalcode.org/project/jquery_ui" - } - }, - { - "name": "drupal/jquery_ui_autocomplete", - "version": "2.0.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/jquery_ui_autocomplete.git", - "reference": "2.0.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/jquery_ui_autocomplete-2.0.0.zip", - "reference": "2.0.0", - "shasum": "927d312a74002f99e1c971d3d268be1b0a532fc7" - }, - "require": { - "drupal/core": "^9.2 || ^10", - "drupal/jquery_ui": "^1.6", - "drupal/jquery_ui_menu": "^2" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.0", - "datestamp": "1670871461", - "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": "bnjmnm", - "homepage": "https://www.drupal.org/user/2369194" - }, - { - "name": "lauriii", - "homepage": "https://www.drupal.org/user/1078742" - }, - { - "name": "nod_", - "homepage": "https://www.drupal.org/user/598310" - }, - { - "name": "phenaproxima", - "homepage": "https://www.drupal.org/user/205645" - }, - { - "name": "Wim Leers", - "homepage": "https://www.drupal.org/user/99777" - }, - { - "name": "zrpnr", - "homepage": "https://www.drupal.org/user/1448368" - } - ], - "description": "Provides jQuery UI Autocomplete library.", - "homepage": "https://www.drupal.org/project/jquery_ui_autocomplete", - "support": { - "source": "https://git.drupalcode.org/project/jquery_ui_autocomplete" - } - }, - { - "name": "drupal/jquery_ui_menu", - "version": "2.0.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/jquery_ui_menu.git", - "reference": "2.0.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/jquery_ui_menu-2.0.0.zip", - "reference": "2.0.0", - "shasum": "5e1b56bf457669c7779a81784f49da63e3956854" - }, - "require": { - "drupal/core": "^9.2 || ^10", - "drupal/jquery_ui": "^1.6" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.0", - "datestamp": "1670871546", - "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": "bnjmnm", - "homepage": "https://www.drupal.org/user/2369194" - }, - { - "name": "lauriii", - "homepage": "https://www.drupal.org/user/1078742" - }, - { - "name": "nod_", - "homepage": "https://www.drupal.org/user/598310" - }, - { - "name": "phenaproxima", - "homepage": "https://www.drupal.org/user/205645" - }, - { - "name": "Wim Leers", - "homepage": "https://www.drupal.org/user/99777" - }, - { - "name": "zrpnr", - "homepage": "https://www.drupal.org/user/1448368" - } - ], - "description": "Provides jQuery UI Menu library.", - "homepage": "https://www.drupal.org/project/jquery_ui_menu", - "support": { - "source": "https://git.drupalcode.org/project/jquery_ui_menu" - } - }, { "name": "drupal/jwt", - "version": "1.0.0", + "version": "1.0.0-rc1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/jwt.git", - "reference": "8.x-1.0" + "reference": "8.x-1.0-rc1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/jwt-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "1792f600b7b8357e4d1b2fbe365af7a41564db25" + "url": "https://ftp.drupal.org/files/projects/jwt-8.x-1.0-rc1.zip", + "reference": "8.x-1.0-rc1", + "shasum": "80b26cba67d7593e7b40985dfbf6c8d9b244f5a4" }, "require": { "drupal/core": "^8.7.12 || ^9.0", @@ -5407,17 +5148,17 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0", - "datestamp": "1653322599", + "version": "8.x-1.0-rc1", + "datestamp": "1623958868", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "RC releases are not covered by Drupal security advisories." } } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { @@ -5449,26 +5190,26 @@ }, { "name": "drupal/key", - "version": "1.16.0", + "version": "1.14.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/key.git", - "reference": "8.x-1.16" + "reference": "8.x-1.14" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/key-8.x-1.16.zip", - "reference": "8.x-1.16", - "shasum": "35a4476d7d52563bb26bd4dcc5fbf5fdd7c9391b" + "url": "https://ftp.drupal.org/files/projects/key-8.x-1.14.zip", + "reference": "8.x-1.14", + "shasum": "097cec8e86b1c164727ca62521a06c36459754f1" }, "require": { - "drupal/core": ">=8.9 <11" + "drupal/core": "^8.7.7 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.16", - "datestamp": "1661968490", + "version": "8.x-1.14", + "datestamp": "1591765429", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5476,13 +5217,13 @@ }, "drush": { "services": { - "drush.services.yml": ">=9" + "drush.services.yml": "^9" } } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { @@ -5508,7 +5249,7 @@ "Drupal" ], "support": { - "source": "https://git.drupalcode.org/project/key", + "source": "http://cgit.drupalcode.org/key", "issues": "http://drupal.org/project/key" } }, @@ -5518,7 +5259,7 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/libraries.git", - "reference": "ec0c6401e45ff8b09d10e043ff2dd4de324df86e" + "reference": "ba30ae518d87313a5d532ba0d45581243b81ac1b" }, "require": { "drupal/core": "^8.8 || ^9" @@ -5573,24 +5314,26 @@ "source": "http://cgit.drupalcode.org/libraries", "issues": "http://drupal.org/project/issues/libraries", "irc": "irc://irc.freenode.org/drupal-contribute" - } + }, + "time": "2021-06-02T04:24:38+00:00" }, { "name": "drupal/migrate_plus", - "version": "5.3.0", + "version": "5.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/migrate_plus.git", - "reference": "8.x-5.3" + "reference": "8.x-5.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-5.3.zip", - "reference": "8.x-5.3", - "shasum": "3cf6dde235d7604ee49be2986812c0ee5e2982f6" + "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-5.1.zip", + "reference": "8.x-5.1", + "shasum": "1257427ab0c64459c3c1e42bb2a98d3114b77163" }, "require": { - "drupal/core": "^9.1" + "drupal/core": "^8.8 || ^9", + "php": ">=7.1" }, "require-dev": { "drupal/migrate_example_advanced_setup": "*", @@ -5603,8 +5346,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-5.3", - "datestamp": "1650658156", + "version": "8.x-5.1", + "datestamp": "1588261060", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5641,31 +5384,31 @@ }, { "name": "drupal/migrate_source_csv", - "version": "3.5.0", + "version": "3.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/migrate_source_csv.git", - "reference": "8.x-3.5" + "reference": "8.x-3.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/migrate_source_csv-8.x-3.5.zip", - "reference": "8.x-3.5", - "shasum": "ddddba22fa7b4a54f05a606db33986b23b1a69ea" + "url": "https://ftp.drupal.org/files/projects/migrate_source_csv-8.x-3.4.zip", + "reference": "8.x-3.4", + "shasum": "12990ad8c3b99e16c1b2a1be955aaa28581e5d1c" }, "require": { - "drupal/core": ">=9.1", + "drupal/core": "^8.7 || ^9.0", "league/csv": "^9.1", "php": ">=7.1" }, "require-dev": { - "drupal/migrate_plus": ">=5.0" + "drupal/migrate_plus": "5.x-dev" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.5", - "datestamp": "1645538421", + "version": "8.x-3.4", + "datestamp": "1588260548", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5687,7 +5430,8 @@ "homepage": "https://www.drupal.org/project/migrate_source_csv", "support": { "source": "https://cgit.drupalcode.org/migrate_source_csv", - "issues": "https://www.drupal.org/project/issues/migrate_source_csv" + "issues": "https://www.drupal.org/project/issues/migrate_source_csv", + "irc": "irc://irc.freenode.org/drupal-migrate" } }, { @@ -5748,17 +5492,11 @@ }, { "name": "drupal/migrate_tools", - "version": "5.1.0", + "version": "dev-5.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/migrate_tools.git", - "reference": "8.x-5.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-5.1.zip", - "reference": "8.x-5.1", - "shasum": "2c1a9d35d318a0e1de30a99fbf64bedd4e65cee1" + "reference": "56d82b4fc111dd26f2c3a1e53c06015eb854df20" }, "require": { "drupal/core": "^9.1", @@ -5774,12 +5512,15 @@ }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-5.x": "5.x-dev" + }, "drupal": { - "version": "8.x-5.1", - "datestamp": "1640378500", + "version": "8.x-5.1+3-dev", + "datestamp": "1650661352", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." } }, "drush": { @@ -5814,30 +5555,31 @@ "source": "https://git.drupalcode.org/project/migrate_tools", "issues": "https://www.drupal.org/project/issues/migrate_tools", "slack": "#migrate" - } + }, + "time": "2021-07-05T21:38:52+00:00" }, { "name": "drupal/pager_serializer", - "version": "1.2.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/pager_serializer.git", - "reference": "8.x-1.2" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/pager_serializer-8.x-1.2.zip", - "reference": "8.x-1.2", - "shasum": "71b2b785889a30bc2dc7b130bf53a686d849785f" + "url": "https://ftp.drupal.org/files/projects/pager_serializer-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "0f25319e3e0641a7b867cd55210d519e28d96896" }, "require": { - "drupal/core": "^8.7.7 || ^9 || ^10" + "drupal/core": "^8.7.7 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.2", - "datestamp": "1656444579", + "version": "8.x-1.1", + "datestamp": "1614122787", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5870,7 +5612,7 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/pdf.git", - "reference": "c9b4600ee73b1555efe35c97b2260daf65a810a4" + "reference": "1e33fbf7013df3998dd4f1375889a2df93156a0e" }, "require": { "drupal/core": "^8 || ^9" @@ -5923,21 +5665,22 @@ "homepage": "https://www.drupal.org/project/pdf", "support": { "source": "https://git.drupalcode.org/project/pdf" - } + }, + "time": "2020-06-26T10:23:16+00:00" }, { "name": "drupal/permissions_by_term", - "version": "3.1.21", + "version": "3.1.16", "source": { "type": "git", "url": "https://git.drupalcode.org/project/permissions_by_term.git", - "reference": "3.1.21" + "reference": "3.1.16" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/permissions_by_term-3.1.21.zip", - "reference": "3.1.21", - "shasum": "ecd9340f1aac1f183398a571415bb0859fcb6f4c" + "url": "https://ftp.drupal.org/files/projects/permissions_by_term-3.1.16.zip", + "reference": "3.1.16", + "shasum": "4208c34a4399249052bd7b070cd51d7628c6b184" }, "require": { "drupal/core": "^9.0", @@ -5946,8 +5689,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "3.1.21", - "datestamp": "1668009531", + "version": "3.1.16", + "datestamp": "1626101110", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6216,26 +5959,26 @@ }, { "name": "drupal/restui", - "version": "1.21.0", + "version": "1.20.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/restui.git", - "reference": "8.x-1.21" + "reference": "8.x-1.20" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.21.zip", - "reference": "8.x-1.21", - "shasum": "2a67dc2c1953dced0bddaff25e5c60784ee0178c" + "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.20.zip", + "reference": "8.x-1.20", + "shasum": "df1d3c486ee0e7b4e9a24e6523a69c9efe73caff" }, "require": { - "drupal/core": "^8.7.7 || ^9 || ^10" + "drupal/core": "^8.7.7 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.21", - "datestamp": "1659086914", + "version": "8.x-1.20", + "datestamp": "1616839543", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6272,26 +6015,26 @@ }, { "name": "drupal/role_delegation", - "version": "1.2.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/role_delegation.git", - "reference": "8.x-1.2" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/role_delegation-8.x-1.2.zip", - "reference": "8.x-1.2", - "shasum": "08095bada0f492e70d32fcf357a8c01825ca81fc" + "url": "https://ftp.drupal.org/files/projects/role_delegation-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "a63b548056cc729beacfd385625fafb983e0f73e" }, "require": { - "drupal/core": "^9.2 || ^10" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.2", - "datestamp": "1644487627", + "version": "8.x-1.1", + "datestamp": "1580498751", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6370,24 +6113,24 @@ }, { "name": "drupal/s3fs", - "version": "3.1.0", + "version": "3.0.0-beta3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/s3fs.git", - "reference": "8.x-3.1" + "reference": "8.x-3.0-beta3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/s3fs-8.x-3.1.zip", - "reference": "8.x-3.1", - "shasum": "8de42701f4ce25c2c16c9efe28e605a712f1be9e" + "url": "https://ftp.drupal.org/files/projects/s3fs-8.x-3.0-beta3.zip", + "reference": "8.x-3.0-beta3", + "shasum": "47b096438202633b07261b76d93c958a150a3159" }, "require": { "aws/aws-sdk-php": "^3.18", - "drupal/core": "^8.8 || ^9 || ~10.0.0" + "drupal/core": "^8.8 || ^9" }, "require-dev": { - "drush/drush": "^10 || ^11" + "drush/drush": "^10.0" }, "suggest": { "doctrine/cache": "~1.4" @@ -6395,11 +6138,11 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.1", - "datestamp": "1670992386", + "version": "8.x-3.0-beta3", + "datestamp": "1629922175", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Beta releases are not covered by Drupal security advisories." } } }, @@ -6447,20 +6190,20 @@ }, { "name": "drupal/search_api", - "version": "1.28.0", + "version": "1.20.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/search_api.git", - "reference": "8.x-1.28" + "reference": "8.x-1.20" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.28.zip", - "reference": "8.x-1.28", - "shasum": "d3ae0bb3cf17c986d5e0c6edb87aee6580b6fc1e" + "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.20.zip", + "reference": "8.x-1.20", + "shasum": "4bed60ac7b502ccc1d4a01411aa35d2cb7f496c7" }, "require": { - "drupal/core": "^9.3 || ^10.0" + "drupal/core": "^8.8 || ^9" }, "conflict": { "drupal/search_api_solr": "2.* || 3.0 || 3.1" @@ -6478,8 +6221,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.28", - "datestamp": "1667814116", + "version": "8.x-1.20", + "datestamp": "1626684847", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6519,44 +6262,44 @@ }, { "name": "drupal/search_api_solr", - "version": "4.2.10", + "version": "4.2.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/search_api_solr.git", - "reference": "4.2.10" + "reference": "4.2.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/search_api_solr-4.2.10.zip", - "reference": "4.2.10", - "shasum": "28b1ccd5c462db92af3561103e9a33569a674387" + "url": "https://ftp.drupal.org/files/projects/search_api_solr-4.2.1.zip", + "reference": "4.2.1", + "shasum": "54e40c7ce41cef8edfb92807f87db06b0b13e9c8" }, "require": { "composer/semver": "^1.0|^3.0", "consolidation/annotated-command": "^2.12|^4.1", - "drupal/core": "^9.3 || ^10.0", - "drupal/search_api": "~1.28", + "drupal/core": "^8.8 || ^9", + "drupal/search_api": "~1.17", "ext-dom": "*", "ext-json": "*", "ext-simplexml": "*", "laminas/laminas-stdlib": "^3.2", - "maennchen/zipstream-php": "^2.2.1", - "php": ">=7.4", - "solarium/solarium": "^6.2.8" + "maennchen/zipstream-php": "^1.2|^2.0", + "php": "^7.3|^8.0", + "solarium/solarium": "^6.1.5" }, "conflict": { "drupal/acquia_search_solr": "<1.0.0-beta8", - "drupal/search_api_autocomplete": "<1.6.0", "drupal/search_api_solr_multilingual": "<3.0.0" }, "require-dev": { - "drupal/devel": "^4.0|^5.0", - "drupal/facets": "^3.0.x-dev", + "drupal/devel": "^4.0", + "drupal/facets": "1.x-dev", "drupal/geofield": "1.x-dev", "drupal/search_api_autocomplete": "1.x-dev", "drupal/search_api_location": "1.x-dev", "drupal/search_api_spellcheck": "3.x-dev", - "monolog/monolog": "^1.25|^3" + "monolog/monolog": "^1.25", + "phayes/geophp": "^1.2" }, "suggest": { "drupal/facets": "Provides facetted search.", @@ -6568,8 +6311,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "4.2.10", - "datestamp": "1671442326", + "version": "4.2.1", + "datestamp": "1628871708", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6577,7 +6320,7 @@ }, "drush": { "services": { - "drush.services.yml": ">=9" + "drush.services.yml": "^9" } } }, @@ -6621,28 +6364,28 @@ }, { "name": "drupal/simplesamlphp_auth", - "version": "3.3.0", + "version": "3.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/simplesamlphp_auth.git", - "reference": "8.x-3.3" + "reference": "8.x-3.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/simplesamlphp_auth-8.x-3.3.zip", - "reference": "8.x-3.3", - "shasum": "14b33fc4e7c9a6a72de5a4ec32722200e7203d43" + "url": "https://ftp.drupal.org/files/projects/simplesamlphp_auth-8.x-3.2.zip", + "reference": "8.x-3.2", + "shasum": "a5a2b10fc873eb8669929ad1a6d9599e47a2ca99" }, "require": { - "drupal/core": "^8.7||^9.0", - "drupal/externalauth": "^1.1||^2.0", - "simplesamlphp/simplesamlphp": "^1.18.2||^1.19" + "drupal/core": "^8.7|^9.0", + "drupal/externalauth": "^1.1", + "simplesamlphp/simplesamlphp": "^1.18.2" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.3", - "datestamp": "1660687554", + "version": "8.x-3.2", + "datestamp": "1580423953", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6691,27 +6434,28 @@ }, { "name": "drupal/sophron", - "version": "1.3.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/sophron.git", - "reference": "8.x-1.3" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/sophron-8.x-1.3.zip", - "reference": "8.x-1.3", - "shasum": "426dde53813e855317d6f7ef9fd6b104cc8a3e22" + "url": "https://ftp.drupal.org/files/projects/sophron-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "afb3650458b15b87918471defa763f24880622ca" }, "require": { - "drupal/core": "^9.2 || ^10", - "fileeye/mimemap": "^2" + "drupal/core": "^8.9 || ^9", + "fileeye/mimemap": "^1.1.4", + "php": ">=7.1" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.3", - "datestamp": "1663598448", + "version": "8.x-1.1", + "datestamp": "1606047077", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6741,17 +6485,17 @@ }, { "name": "drupal/title_length", - "version": "1.2.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/title_length.git", - "reference": "8.x-1.2" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/title_length-8.x-1.2.zip", - "reference": "8.x-1.2", - "shasum": "22a19724c3807b6847a84ae0a38df80eebe69360" + "url": "https://ftp.drupal.org/files/projects/title_length-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "f8a961bcc4cde1bf7c0f57c0a7b6248ea9d92bd4" }, "require": { "drupal/core": "^8 || ^9" @@ -6759,8 +6503,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.2", - "datestamp": "1631721151", + "version": "8.x-1.1", + "datestamp": "1591431505", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6793,26 +6537,26 @@ }, { "name": "drupal/token", - "version": "1.11.0", + "version": "1.9.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/token.git", - "reference": "8.x-1.11" + "reference": "8.x-1.9" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/token-8.x-1.11.zip", - "reference": "8.x-1.11", - "shasum": "da264b36d1f88eb0c74bf84e18e8789854f98400" + "url": "https://ftp.drupal.org/files/projects/token-8.x-1.9.zip", + "reference": "8.x-1.9", + "shasum": "a5d234382a1a0e4ba61d4c7a2fa10671ca656be4" }, "require": { - "drupal/core": "^9.2 || ^10" + "drupal/core": "^8.8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.11", - "datestamp": "1659471813", + "version": "8.x-1.9", + "datestamp": "1608284866", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6862,26 +6606,26 @@ }, { "name": "drupal/transliterate_filenames", - "version": "1.10.0", + "version": "1.5.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/transliterate_filenames.git", - "reference": "8.x-1.10" + "reference": "8.x-1.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/transliterate_filenames-8.x-1.10.zip", - "reference": "8.x-1.10", - "shasum": "8c88c6411fd94cac271e38736664538c54f243ec" + "url": "https://ftp.drupal.org/files/projects/transliterate_filenames-8.x-1.5.zip", + "reference": "8.x-1.5", + "shasum": "c2f103a188b8ea19f380fae29434e1064c40dd55" }, "require": { - "drupal/core": "^8.7.7 || ^9.2" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.10", - "datestamp": "1644653446", + "version": "8.x-1.5", + "datestamp": "1606460881", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6917,21 +6661,21 @@ }, { "name": "drupal/views_data_export", - "version": "1.2.0", + "version": "1.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/views_data_export.git", - "reference": "8.x-1.2" + "reference": "8.x-1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/views_data_export-8.x-1.2.zip", - "reference": "8.x-1.2", - "shasum": "168c0d3de19f2182f2c1bc16066498342015970e" + "url": "https://ftp.drupal.org/files/projects/views_data_export-8.x-1.0.zip", + "reference": "8.x-1.0", + "shasum": "f1d16fd06ee7574f680e30f6bf5d6a152e3e9f42" }, "require": { - "drupal/core": "^9 || ^10", - "drupal/csv_serialization": "~1.4 || ~2.0 || ~3" + "drupal/core": "^8.8 || ^9", + "drupal/csv_serialization": "~1.4 || ~2.0" }, "require-dev": { "drupal/search_api": "~1.12", @@ -6940,8 +6684,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.2", - "datestamp": "1665515238", + "version": "8.x-1.0", + "datestamp": "1592589996", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6986,26 +6730,26 @@ }, { "name": "drupal/workbench", - "version": "1.4.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/workbench.git", - "reference": "8.x-1.4" + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/workbench-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "bec38d8c333c1b72402f2e66be29838b65235fcd" + "url": "https://ftp.drupal.org/files/projects/workbench-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "643d5f27503d7fceda8673812ca9a3bc25ed53e5" }, "require": { - "drupal/core": "^8.8 || ^9 || ^10" + "drupal/core": "^8.8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.4", - "datestamp": "1666723245", + "version": "8.x-1.3", + "datestamp": "1590419810", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7054,32 +6798,29 @@ }, { "name": "drupal/workbench_access", - "version": "1.1.0", + "version": "1.0.0-beta4", "source": { "type": "git", "url": "https://git.drupalcode.org/project/workbench_access.git", - "reference": "8.x-1.1" + "reference": "8.x-1.0-beta4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/workbench_access-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "9546c6c0269e5883551abab1f9b51d2d363404ae" + "url": "https://ftp.drupal.org/files/projects/workbench_access-8.x-1.0-beta4.zip", + "reference": "8.x-1.0-beta4", + "shasum": "8d81c3daef91d89ecb3c0e3823ee0144b37889a8" }, "require": { "drupal/core": "^8.7.7 || ^9" }, - "require-dev": { - "drupal/inline_entity_form": "*" - }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.1", - "datestamp": "1663772820", + "version": "8.x-1.0-beta4", + "datestamp": "1591119383", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Beta releases are not covered by Drupal security advisories." } }, "drush": { @@ -7114,16 +6855,16 @@ }, { "name": "drush/drush", - "version": "10.6.2", + "version": "10.6.0", "source": { "type": "git", "url": "https://github.com/drush-ops/drush.git", - "reference": "0a570a16ec63259eb71195aba5feab532318b337" + "reference": "c86d327359baddb0a2f51bb458703826469a0445" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drush-ops/drush/zipball/0a570a16ec63259eb71195aba5feab532318b337", - "reference": "0a570a16ec63259eb71195aba5feab532318b337", + "url": "https://api.github.com/repos/drush-ops/drush/zipball/c86d327359baddb0a2f51bb458703826469a0445", + "reference": "c86d327359baddb0a2f51bb458703826469a0445", "shasum": "" }, "require": { @@ -7131,17 +6872,17 @@ "composer/semver": "^1.4 || ^3", "consolidation/config": "^1.2", "consolidation/filter-via-dot-access-data": "^1", - "consolidation/robo": "^1.4.11 || ^2 || ^3", + "consolidation/robo": "^1.4.11 || ^2", "consolidation/site-alias": "^3.0.0@stable", "consolidation/site-process": "^2.1 || ^4", "enlightn/security-checker": "^1", "ext-dom": "*", "grasmash/yaml-expander": "^1.1.1", "guzzlehttp/guzzle": "^6.3 || ^7.0", - "league/container": "^2.5 || ^3.4", + "league/container": "~2", "php": ">=7.1.3", "psr/log": "~1.0", - "psy/psysh": ">=0.6 <0.11", + "psy/psysh": "~0.6", "symfony/event-dispatcher": "^3.4 || ^4.0", "symfony/finder": "^3.4 || ^4.0 || ^5", "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0", @@ -7247,7 +6988,7 @@ "irc": "irc://irc.freenode.org/drush", "issues": "https://github.com/drush-ops/drush/issues", "slack": "https://drupal.slack.com/messages/C62H9CWQM", - "source": "https://github.com/drush-ops/drush/tree/10.6.2" + "source": "https://github.com/drush-ops/drush/tree/10.6.0" }, "funding": [ { @@ -7255,7 +6996,7 @@ "type": "github" } ], - "time": "2021-12-15T17:09:54+00:00" + "time": "2021-08-13T10:40:40+00:00" }, { "name": "easyrdf/easyrdf", @@ -7402,30 +7143,30 @@ }, { "name": "enlightn/security-checker", - "version": "v1.10.0", + "version": "v1.9.0", "source": { "type": "git", "url": "https://github.com/enlightn/security-checker.git", - "reference": "196bacc76e7a72a63d0e1220926dbb190272db97" + "reference": "dc5bce653fa4d9c792e9dcffa728c0642847c1e1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/enlightn/security-checker/zipball/196bacc76e7a72a63d0e1220926dbb190272db97", - "reference": "196bacc76e7a72a63d0e1220926dbb190272db97", + "url": "https://api.github.com/repos/enlightn/security-checker/zipball/dc5bce653fa4d9c792e9dcffa728c0642847c1e1", + "reference": "dc5bce653fa4d9c792e9dcffa728c0642847c1e1", "shasum": "" }, "require": { "ext-json": "*", "guzzlehttp/guzzle": "^6.3|^7.0", "php": ">=5.6", - "symfony/console": "^3.4|^4|^5|^6", - "symfony/finder": "^3|^4|^5|^6", - "symfony/process": "^3.4|^4|^5|^6", - "symfony/yaml": "^3.4|^4|^5|^6" + "symfony/console": "^3.4|^4|^5", + "symfony/finder": "^3|^4|^5", + "symfony/process": "^3.4|^4|^5", + "symfony/yaml": "^3.4|^4|^5" }, "require-dev": { "ext-zip": "*", - "friendsofphp/php-cs-fixer": "^2.18|^3.0", + "friendsofphp/php-cs-fixer": "^2.18", "phpunit/phpunit": "^5.5|^6|^7|^8|^9" }, "bin": [ @@ -7462,39 +7203,36 @@ ], "support": { "issues": "https://github.com/enlightn/security-checker/issues", - "source": "https://github.com/enlightn/security-checker/tree/v1.10.0" + "source": "https://github.com/enlightn/security-checker/tree/v1.9.0" }, - "time": "2022-02-21T22:40:16+00:00" + "time": "2021-05-06T09:03:35+00:00" }, { "name": "fileeye/mimemap", - "version": "2.0.0", + "version": "1.1.5", "source": { "type": "git", "url": "https://github.com/FileEye/MimeMap.git", - "reference": "24144b7dc84168e14e4fc893d654c4fb40628346" + "reference": "9efaad84adce38f2ee49331b2bd684c83fd9aa3b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/FileEye/MimeMap/zipball/24144b7dc84168e14e4fc893d654c4fb40628346", - "reference": "24144b7dc84168e14e4fc893d654c4fb40628346", + "url": "https://api.github.com/repos/FileEye/MimeMap/zipball/9efaad84adce38f2ee49331b2bd684c83fd9aa3b", + "reference": "9efaad84adce38f2ee49331b2bd684c83fd9aa3b", "shasum": "" }, "require": { - "php": ">=7.3" + "php": ">=5.4" }, "require-dev": { - "composer-runtime-api": "^2.0.0", - "phpstan/phpstan": "^1.2", - "phpunit/phpunit": "^9", - "sebastian/comparator": ">=4", - "sebastian/diff": ">=4", - "squizlabs/php_codesniffer": ">=3.6", - "symfony/console": ">=5.4", - "symfony/filesystem": ">=5.4", - "symfony/var-dumper": ">=5.4", - "symfony/yaml": ">=5.4", - "vimeo/psalm": "^4.23" + "phpunit/phpunit": "<10", + "sebastian/comparator": "*", + "sebastian/diff": "*", + "squizlabs/php_codesniffer": "*", + "symfony/console": "*", + "symfony/filesystem": "*", + "symfony/var-dumper": "*", + "symfony/yaml": "*" }, "bin": [ "bin/fileeye-mimemap" @@ -7502,7 +7240,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { @@ -7524,22 +7262,22 @@ ], "support": { "issues": "https://github.com/FileEye/MimeMap/issues", - "source": "https://github.com/FileEye/MimeMap/tree/2.0.0" + "source": "https://github.com/FileEye/MimeMap/tree/1.1.5" }, - "time": "2022-07-17T13:00:20+00:00" + "time": "2021-04-02T20:21:45+00:00" }, { "name": "firebase/php-jwt", - "version": "v5.5.1", + "version": "v5.4.0", "source": { "type": "git", "url": "https://github.com/firebase/php-jwt.git", - "reference": "83b609028194aa042ea33b5af2d41a7427de80e6" + "reference": "d2113d9b2e0e349796e72d2a63cf9319100382d2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/firebase/php-jwt/zipball/83b609028194aa042ea33b5af2d41a7427de80e6", - "reference": "83b609028194aa042ea33b5af2d41a7427de80e6", + "url": "https://api.github.com/repos/firebase/php-jwt/zipball/d2113d9b2e0e349796e72d2a63cf9319100382d2", + "reference": "d2113d9b2e0e349796e72d2a63cf9319100382d2", "shasum": "" }, "require": { @@ -7581,22 +7319,22 @@ ], "support": { "issues": "https://github.com/firebase/php-jwt/issues", - "source": "https://github.com/firebase/php-jwt/tree/v5.5.1" + "source": "https://github.com/firebase/php-jwt/tree/v5.4.0" }, - "time": "2021-11-08T20:18:51+00:00" + "time": "2021-06-23T19:00:23+00:00" }, { "name": "gettext/gettext", - "version": "v4.8.8", + "version": "v4.8.5", "source": { "type": "git", "url": "https://github.com/php-gettext/Gettext.git", - "reference": "302a00aa9d6762c92c884d879c15d3ed05d6a37d" + "reference": "ef2e312dff383fc0e4cd62dd39042e1157f137d4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-gettext/Gettext/zipball/302a00aa9d6762c92c884d879c15d3ed05d6a37d", - "reference": "302a00aa9d6762c92c884d879c15d3ed05d6a37d", + "url": "https://api.github.com/repos/php-gettext/Gettext/zipball/ef2e312dff383fc0e4cd62dd39042e1157f137d4", + "reference": "ef2e312dff383fc0e4cd62dd39042e1157f137d4", "shasum": "" }, "require": { @@ -7648,7 +7386,7 @@ "support": { "email": "oom@oscarotero.com", "issues": "https://github.com/oscarotero/Gettext/issues", - "source": "https://github.com/php-gettext/Gettext/tree/v4.8.8" + "source": "https://github.com/php-gettext/Gettext/tree/v4.8.5" }, "funding": [ { @@ -7664,20 +7402,20 @@ "type": "patreon" } ], - "time": "2022-12-08T11:59:50+00:00" + "time": "2021-07-13T16:45:53+00:00" }, { "name": "gettext/languages", - "version": "2.10.0", + "version": "2.8.1", "source": { "type": "git", "url": "https://github.com/php-gettext/Languages.git", - "reference": "4d61d67fe83a2ad85959fe6133d6d9ba7dddd1ab" + "reference": "4ad818b6341e177b7c508ec4c37e18932a7b788a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-gettext/Languages/zipball/4d61d67fe83a2ad85959fe6133d6d9ba7dddd1ab", - "reference": "4d61d67fe83a2ad85959fe6133d6d9ba7dddd1ab", + "url": "https://api.github.com/repos/php-gettext/Languages/zipball/4ad818b6341e177b7c508ec4c37e18932a7b788a", + "reference": "4ad818b6341e177b7c508ec4c37e18932a7b788a", "shasum": "" }, "require": { @@ -7726,7 +7464,7 @@ ], "support": { "issues": "https://github.com/php-gettext/Languages/issues", - "source": "https://github.com/php-gettext/Languages/tree/2.10.0" + "source": "https://github.com/php-gettext/Languages/tree/2.8.1" }, "funding": [ { @@ -7738,7 +7476,7 @@ "type": "github" } ], - "time": "2022-10-18T15:00:10+00:00" + "time": "2021-07-14T15:03:58+00:00" }, { "name": "grasmash/expander", @@ -8167,12 +7905,12 @@ "source": { "type": "git", "url": "https://github.com/roblib/islandora_fits.git", - "reference": "f03b4eeff3598a9b81aad614f8aecd62cf14d81d" + "reference": "586427738cd9e2724d1ee3aeff8b42d114b518a6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/roblib/islandora_fits/zipball/f03b4eeff3598a9b81aad614f8aecd62cf14d81d", - "reference": "f03b4eeff3598a9b81aad614f8aecd62cf14d81d", + "url": "https://api.github.com/repos/roblib/islandora_fits/zipball/586427738cd9e2724d1ee3aeff8b42d114b518a6", + "reference": "586427738cd9e2724d1ee3aeff8b42d114b518a6", "shasum": "" }, "require": { @@ -8193,7 +7931,7 @@ "issues": "https://www.drupal.org/project/issues/islandora_fits", "source": "http://cgit.drupalcode.org/islandora_fits" }, - "time": "2022-09-23T14:27:40+00:00" + "time": "2021-01-14T23:01:15+00:00" }, { "name": "islandora/carapace", @@ -8201,12 +7939,12 @@ "source": { "type": "git", "url": "https://github.com/Islandora/carapace.git", - "reference": "8eb604852044beeb04f60baf9e684ab66154a0ea" + "reference": "30e66191ff3ec46795832a6ea35f5a3f73b2a82e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Islandora/carapace/zipball/8eb604852044beeb04f60baf9e684ab66154a0ea", - "reference": "8eb604852044beeb04f60baf9e684ab66154a0ea", + "url": "https://api.github.com/repos/Islandora/carapace/zipball/30e66191ff3ec46795832a6ea35f5a3f73b2a82e", + "reference": "30e66191ff3ec46795832a6ea35f5a3f73b2a82e", "shasum": "" }, "require": { @@ -8247,76 +7985,17 @@ "source": "https://github.com/Islandora/carapace/tree/4.0.1" }, "abandoned": true, - "time": "2022-10-15T16:33:10+00:00" + "time": "2021-04-21T13:06:26+00:00" }, { "name": "islandora/chullo", - "version": "1.2.0", + "version": "dev-dev", "source": { "type": "git", "url": "https://github.com/Islandora/chullo.git", "reference": "d563d5e48ef9b15dcf45029277bbc2f6eeef2454" }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Islandora/chullo/zipball/d563d5e48ef9b15dcf45029277bbc2f6eeef2454", - "reference": "d563d5e48ef9b15dcf45029277bbc2f6eeef2454", - "shasum": "" - }, - "require": { - "easyrdf/easyrdf": "^0.9 || ^1", - "guzzlehttp/guzzle": "^6.1.0", - "ml/json-ld": "^1.0.4", - "php": "^7.3 || ^7.4" - }, - "require-dev": { - "mockery/mockery": "^0.9", - "phpunit/phpunit": "^9.0", - "sebastian/phpcpd": "^6.0", - "squizlabs/php_codesniffer": "^3.0" - }, "type": "library", - "autoload": { - "psr-4": { - "Islandora\\Chullo\\": "src/" - } - }, - "scripts": { - "check": [ - "vendor/bin/phpcs --standard=PSR2 src test", - "vendor/bin/phpcpd --suffix *.php src test" - ], - "test": [ - "@check", - "vendor/bin/phpunit" - ] - }, - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Islandora Foundation", - "email": "community@islandora.ca", - "role": "Owner" - }, - { - "name": "Daniel Lamb", - "email": "dlamb@islandora.ca", - "role": "Maintainer" - }, - { - "name": "Nick Ruest", - "email": "ruestn@gmail.com", - "role": "Maintainer" - } - ], - "description": "A PHP client for interacting with a Fedora 4 server.", - "homepage": "https://github.com/Islandora/chullo", - "support": { - "issues": "https://github.com/Islandora/documentation/issues", - "source": "https://github.com/Islandora/chullo/tree/1.2.0" - }, "time": "2021-05-05T17:38:36+00:00" }, { @@ -8389,12 +8068,12 @@ "source": { "type": "git", "url": "https://github.com/Islandora/islandora.git", - "reference": "2923a1a8b9303569fdea4bdbf580c1f56e3ed033" + "reference": "aa94c9afa50cdc6d31d68943bb52e1d6e2976c2b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Islandora/islandora/zipball/2923a1a8b9303569fdea4bdbf580c1f56e3ed033", - "reference": "2923a1a8b9303569fdea4bdbf580c1f56e3ed033", + "url": "https://api.github.com/repos/Islandora/islandora/zipball/aa94c9afa50cdc6d31d68943bb52e1d6e2976c2b", + "reference": "aa94c9afa50cdc6d31d68943bb52e1d6e2976c2b", "shasum": "" }, "require": { @@ -8450,7 +8129,7 @@ "issues": "https://github.com/Islandora/documentation/issues", "source": "https://github.com/Islandora/islandora/tree/8.x-1.x" }, - "time": "2021-10-04T15:56:49+00:00" + "time": "2021-08-18T17:21:32+00:00" }, { "name": "islandora/jsonld", @@ -8458,12 +8137,12 @@ "source": { "type": "git", "url": "https://github.com/Islandora/jsonld.git", - "reference": "7f169128a638562dba8f7f9109a8e01c6a59e69c" + "reference": "dfd99c4c1beac54efc0eaa6cdbadc01d4918fd6c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Islandora/jsonld/zipball/7f169128a638562dba8f7f9109a8e01c6a59e69c", - "reference": "7f169128a638562dba8f7f9109a8e01c6a59e69c", + "url": "https://api.github.com/repos/Islandora/jsonld/zipball/dfd99c4c1beac54efc0eaa6cdbadc01d4918fd6c", + "reference": "dfd99c4c1beac54efc0eaa6cdbadc01d4918fd6c", "shasum": "" }, "require-dev": { @@ -8501,7 +8180,7 @@ "issues": "https://github.com/Islandora/documentation/issues", "source": "https://github.com/Islandora/jsonld/tree/2.x" }, - "time": "2021-09-21T14:54:18+00:00" + "time": "2021-05-03T15:37:22+00:00" }, { "name": "islandora/openseadragon", @@ -8618,12 +8297,12 @@ "source": { "type": "git", "url": "https://github.com/jhu-idc/idc-ui-theme.git", - "reference": "28554807e807cd29b15472fa799234e9c54bf4d1" + "reference": "1d583a018f7cdf17e989ac672d0fe8cc7d844429" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/jhu-idc/idc-ui-theme/zipball/28554807e807cd29b15472fa799234e9c54bf4d1", - "reference": "28554807e807cd29b15472fa799234e9c54bf4d1", + "url": "https://api.github.com/repos/jhu-idc/idc-ui-theme/zipball/1d583a018f7cdf17e989ac672d0fe8cc7d844429", + "reference": "1d583a018f7cdf17e989ac672d0fe8cc7d844429", "shasum": "" }, "default-branch": true, @@ -8633,7 +8312,7 @@ "source": "https://github.com/jhu-idc/idc-ui-theme/tree/main", "issues": "https://github.com/jhu-idc/idc-ui-theme/issues" }, - "time": "2022-12-19T21:24:21+00:00" + "time": "2022-12-14T18:10:29+00:00" }, { "name": "jhu-idc/idc_defaults", @@ -8641,12 +8320,12 @@ "source": { "type": "git", "url": "https://github.com/jhu-idc/idc_defaults.git", - "reference": "32b72a5c7faacf5647f311576761fd749fbe90c4" + "reference": "cb033a6f2e2423abec6d2dd66366c0e4da85b7d7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/jhu-idc/idc_defaults/zipball/32b72a5c7faacf5647f311576761fd749fbe90c4", - "reference": "32b72a5c7faacf5647f311576761fd749fbe90c4", + "url": "https://api.github.com/repos/jhu-idc/idc_defaults/zipball/cb033a6f2e2423abec6d2dd66366c0e4da85b7d7", + "reference": "cb033a6f2e2423abec6d2dd66366c0e4da85b7d7", "shasum": "" }, "require": { @@ -8660,7 +8339,7 @@ "source": "https://github.com/jhu-idc/idc_defaults/tree/main", "issues": "https://github.com/jhu-idc/idc_defaults/issues" }, - "time": "2022-07-21T20:41:01+00:00" + "time": "2021-10-05T14:45:02+00:00" }, { "name": "jhu-idc/idc_export", @@ -8668,12 +8347,12 @@ "source": { "type": "git", "url": "https://github.com/jhu-idc/idc_export.git", - "reference": "08f94f30b756728995833288162ae203fdbe6add" + "reference": "33c3b31ac884b9dc524ab864620d58660344a346" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/jhu-idc/idc_export/zipball/08f94f30b756728995833288162ae203fdbe6add", - "reference": "08f94f30b756728995833288162ae203fdbe6add", + "url": "https://api.github.com/repos/jhu-idc/idc_export/zipball/33c3b31ac884b9dc524ab864620d58660344a346", + "reference": "33c3b31ac884b9dc524ab864620d58660344a346", "shasum": "" }, "require": { @@ -8695,7 +8374,7 @@ "source": "https://github.com/jhu-idc/idc_export/tree/main", "issues": "https://github.com/jhu-idc/idc_export/issues" }, - "time": "2022-07-21T20:38:58+00:00" + "time": "2021-11-03T14:42:44+00:00" }, { "name": "jhu-idc/idc_ui_module", @@ -8718,7 +8397,7 @@ "source": "https://github.com/jhu-idc/idc_ui_module/tree/main", "issues": "https://github.com/jhu-idc/idc_ui_module/issues" }, - "time": "2022-12-15T17:09:58+00:00" + "time": "2022-12-14T16:34:58+00:00" }, { "name": "jhu-idc/islandora_defaults", @@ -9201,39 +8880,37 @@ }, { "name": "league/container", - "version": "3.4.1", + "version": "2.5.0", "source": { "type": "git", "url": "https://github.com/thephpleague/container.git", - "reference": "84ecbc2dbecc31bd23faf759a0e329ee49abddbd" + "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/container/zipball/84ecbc2dbecc31bd23faf759a0e329ee49abddbd", - "reference": "84ecbc2dbecc31bd23faf759a0e329ee49abddbd", + "url": "https://api.github.com/repos/thephpleague/container/zipball/8438dc47a0674e3378bcce893a0a04d79a2c22b3", + "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3", "shasum": "" }, "require": { - "php": "^7.0 || ^8.0", - "psr/container": "^1.0.0" + "container-interop/container-interop": "^1.2", + "php": "^5.4 || ^7.0 || ^8.0" }, "provide": { + "container-interop/container-interop-implementation": "^1.2", "psr/container-implementation": "^1.0" }, "replace": { "orno/di": "~2.0" }, "require-dev": { - "phpunit/phpunit": "^6.0 || ^7.0", - "roave/security-advisories": "dev-latest", - "scrutinizer/ocular": "^1.8", + "phpunit/phpunit": "^4.8.36", + "scrutinizer/ocular": "^1.3", "squizlabs/php_codesniffer": "^3.5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.x-dev", - "dev-3.x": "3.x-dev", "dev-2.x": "2.x-dev", "dev-1.x": "1.x-dev" } @@ -9268,7 +8945,7 @@ ], "support": { "issues": "https://github.com/thephpleague/container/issues", - "source": "https://github.com/thephpleague/container/tree/3.4.1" + "source": "https://github.com/thephpleague/container/tree/2.5.0" }, "funding": [ { @@ -9276,35 +8953,35 @@ "type": "github" } ], - "time": "2021-07-09T08:23:52+00:00" + "time": "2021-02-22T09:20:06+00:00" }, { "name": "league/csv", - "version": "9.8.0", + "version": "9.7.1", "source": { "type": "git", "url": "https://github.com/thephpleague/csv.git", - "reference": "9d2e0265c5d90f5dd601bc65ff717e05cec19b47" + "reference": "0ec57e8264ec92565974ead0d1724cf1026e10c1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/csv/zipball/9d2e0265c5d90f5dd601bc65ff717e05cec19b47", - "reference": "9d2e0265c5d90f5dd601bc65ff717e05cec19b47", + "url": "https://api.github.com/repos/thephpleague/csv/zipball/0ec57e8264ec92565974ead0d1724cf1026e10c1", + "reference": "0ec57e8264ec92565974ead0d1724cf1026e10c1", "shasum": "" }, "require": { "ext-json": "*", "ext-mbstring": "*", - "php": "^7.4 || ^8.0" + "php": "^7.3 || ^8.0" }, "require-dev": { "ext-curl": "*", "ext-dom": "*", - "friendsofphp/php-cs-fixer": "^v3.4.0", - "phpstan/phpstan": "^1.3.0", - "phpstan/phpstan-phpunit": "^1.0.0", - "phpstan/phpstan-strict-rules": "^1.1.0", - "phpunit/phpunit": "^9.5.11" + "friendsofphp/php-cs-fixer": "^2.16", + "phpstan/phpstan": "^0.12.0", + "phpstan/phpstan-phpunit": "^0.12.0", + "phpstan/phpstan-strict-rules": "^0.12.0", + "phpunit/phpunit": "^9.5" }, "suggest": { "ext-dom": "Required to use the XMLConverter and or the HTMLConverter classes", @@ -9337,7 +9014,7 @@ } ], "description": "CSV data manipulation made easy in PHP", - "homepage": "https://csv.thephpleague.com", + "homepage": "http://csv.thephpleague.com", "keywords": [ "convert", "csv", @@ -9360,20 +9037,20 @@ "type": "github" } ], - "time": "2022-01-04T00:13:07+00:00" + "time": "2021-04-17T16:32:08+00:00" }, { "name": "league/flysystem", - "version": "1.1.10", + "version": "1.1.5", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem.git", - "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1" + "reference": "18634df356bfd4119fe3d6156bdb990c414c14ea" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1", - "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/18634df356bfd4119fe3d6156bdb990c414c14ea", + "reference": "18634df356bfd4119fe3d6156bdb990c414c14ea", "shasum": "" }, "require": { @@ -9446,7 +9123,7 @@ ], "support": { "issues": "https://github.com/thephpleague/flysystem/issues", - "source": "https://github.com/thephpleague/flysystem/tree/1.1.10" + "source": "https://github.com/thephpleague/flysystem/tree/1.1.5" }, "funding": [ { @@ -9454,7 +9131,7 @@ "type": "other" } ], - "time": "2022-10-04T09:16:37+00:00" + "time": "2021-08-17T13:49:42+00:00" }, { "name": "league/flysystem-replicate-adapter", @@ -9508,16 +9185,16 @@ }, { "name": "league/mime-type-detection", - "version": "1.11.0", + "version": "1.7.0", "source": { "type": "git", "url": "https://github.com/thephpleague/mime-type-detection.git", - "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd" + "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd", - "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd", + "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3", + "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3", "shasum": "" }, "require": { @@ -9525,7 +9202,7 @@ "php": "^7.2 || ^8.0" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^3.2", + "friendsofphp/php-cs-fixer": "^2.18", "phpstan/phpstan": "^0.12.68", "phpunit/phpunit": "^8.5.8 || ^9.3" }, @@ -9548,7 +9225,7 @@ "description": "Mime-type detection for Flysystem", "support": { "issues": "https://github.com/thephpleague/mime-type-detection/issues", - "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0" + "source": "https://github.com/thephpleague/mime-type-detection/tree/1.7.0" }, "funding": [ { @@ -9560,20 +9237,20 @@ "type": "tidelift" } ], - "time": "2022-04-17T13:12:02+00:00" + "time": "2021-01-18T20:58:21+00:00" }, { "name": "lsolesen/pel", - "version": "0.9.12", + "version": "0.9.10", "source": { "type": "git", "url": "https://github.com/pel/pel.git", - "reference": "b95fe29cdacf9d36330da277f10910a13648c84c" + "reference": "04ecb8a29e4b1628414193b0df9294232a44f8a9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pel/pel/zipball/b95fe29cdacf9d36330da277f10910a13648c84c", - "reference": "b95fe29cdacf9d36330da277f10910a13648c84c", + "url": "https://api.github.com/repos/pel/pel/zipball/04ecb8a29e4b1628414193b0df9294232a44f8a9", + "reference": "04ecb8a29e4b1628414193b0df9294232a44f8a9", "shasum": "" }, "require": { @@ -9618,38 +9295,35 @@ ], "support": { "issues": "https://github.com/pel/pel/issues", - "source": "https://github.com/pel/pel/tree/0.9.12" + "source": "https://github.com/pel/pel/tree/0.9.10" }, - "time": "2022-02-18T13:20:54+00:00" + "time": "2021-01-01T22:15:50+00:00" }, { "name": "maennchen/zipstream-php", - "version": "2.2.6", + "version": "2.1.0", "source": { "type": "git", "url": "https://github.com/maennchen/ZipStream-PHP.git", - "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f" + "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f", - "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f", + "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58", + "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58", "shasum": "" }, "require": { "myclabs/php-enum": "^1.5", - "php": "^7.4 || ^8.0", + "php": ">= 7.1", "psr/http-message": "^1.0", "symfony/polyfill-mbstring": "^1.0" }, "require-dev": { "ext-zip": "*", - "friendsofphp/php-cs-fixer": "^3.9", - "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0", + "guzzlehttp/guzzle": ">= 6.3", "mikey179/vfsstream": "^1.6", - "php-coveralls/php-coveralls": "^2.4", - "phpunit/phpunit": "^8.5.8 || ^9.4.2", - "vimeo/psalm": "^4.1" + "phpunit/phpunit": ">= 7.5" }, "type": "library", "autoload": { @@ -9686,7 +9360,7 @@ ], "support": { "issues": "https://github.com/maennchen/ZipStream-PHP/issues", - "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.2.6" + "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.1.0" }, "funding": [ { @@ -9698,7 +9372,7 @@ "type": "open_collective" } ], - "time": "2022-11-25T18:57:19+00:00" + "time": "2020-05-30T13:11:16+00:00" }, { "name": "masonry/masonry", @@ -9779,122 +9453,18 @@ }, "time": "2022-08-18T16:18:26+00:00" }, - { - "name": "ml/iri", - "version": "1.1.4", - "target-dir": "ML/IRI", - "source": { - "type": "git", - "url": "https://github.com/lanthaler/IRI.git", - "reference": "cbd44fa913e00ea624241b38cefaa99da8d71341" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/lanthaler/IRI/zipball/cbd44fa913e00ea624241b38cefaa99da8d71341", - "reference": "cbd44fa913e00ea624241b38cefaa99da8d71341", - "shasum": "" - }, - "require": { - "lib-pcre": ">=4.0", - "php": ">=5.3.0" - }, - "type": "library", - "autoload": { - "psr-0": { - "ML\\IRI": "" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Markus Lanthaler", - "email": "mail@markus-lanthaler.com", - "homepage": "http://www.markus-lanthaler.com", - "role": "Developer" - } - ], - "description": "IRI handling for PHP", - "homepage": "http://www.markus-lanthaler.com", - "keywords": [ - "URN", - "iri", - "uri", - "url" - ], - "support": { - "issues": "https://github.com/lanthaler/IRI/issues", - "source": "https://github.com/lanthaler/IRI/tree/master" - }, - "time": "2014-01-21T13:43:39+00:00" - }, - { - "name": "ml/json-ld", - "version": "1.2.1", - "source": { - "type": "git", - "url": "https://github.com/lanthaler/JsonLD.git", - "reference": "537e68e87a6bce23e57c575cd5dcac1f67ce25d8" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/lanthaler/JsonLD/zipball/537e68e87a6bce23e57c575cd5dcac1f67ce25d8", - "reference": "537e68e87a6bce23e57c575cd5dcac1f67ce25d8", - "shasum": "" - }, - "require": { - "ext-json": "*", - "ml/iri": "^1.1.1", - "php": ">=5.3.0" - }, - "require-dev": { - "json-ld/tests": "1.0", - "phpunit/phpunit": "^4" - }, - "type": "library", - "autoload": { - "psr-4": { - "ML\\JsonLD\\": "" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Markus Lanthaler", - "email": "mail@markus-lanthaler.com", - "homepage": "http://www.markus-lanthaler.com", - "role": "Developer" - } - ], - "description": "JSON-LD Processor for PHP", - "homepage": "http://www.markus-lanthaler.com", - "keywords": [ - "JSON-LD", - "jsonld" - ], - "support": { - "issues": "https://github.com/lanthaler/JsonLD/issues", - "source": "https://github.com/lanthaler/JsonLD/tree/1.2.1" - }, - "time": "2022-09-29T08:45:17+00:00" - }, { "name": "monolog/monolog", - "version": "1.27.1", + "version": "1.26.1", "source": { "type": "git", "url": "https://github.com/Seldaek/monolog.git", - "reference": "904713c5929655dc9b97288b69cfeedad610c9a1" + "reference": "c6b00f05152ae2c9b04a448f99c7590beb6042f5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/904713c5929655dc9b97288b69cfeedad610c9a1", - "reference": "904713c5929655dc9b97288b69cfeedad610c9a1", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/c6b00f05152ae2c9b04a448f99c7590beb6042f5", + "reference": "c6b00f05152ae2c9b04a448f99c7590beb6042f5", "shasum": "" }, "require": { @@ -9955,7 +9525,7 @@ ], "support": { "issues": "https://github.com/Seldaek/monolog/issues", - "source": "https://github.com/Seldaek/monolog/tree/1.27.1" + "source": "https://github.com/Seldaek/monolog/tree/1.26.1" }, "funding": [ { @@ -9967,7 +9537,7 @@ "type": "tidelift" } ], - "time": "2022-06-09T08:53:42+00:00" + "time": "2021-05-28T08:32:12+00:00" }, { "name": "mtdowling/jmespath.php", @@ -10032,16 +9602,16 @@ }, { "name": "myclabs/php-enum", - "version": "1.8.4", + "version": "1.8.3", "source": { "type": "git", "url": "https://github.com/myclabs/php-enum.git", - "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483" + "reference": "b942d263c641ddb5190929ff840c68f78713e937" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483", - "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483", + "url": "https://api.github.com/repos/myclabs/php-enum/zipball/b942d263c641ddb5190929ff840c68f78713e937", + "reference": "b942d263c641ddb5190929ff840c68f78713e937", "shasum": "" }, "require": { @@ -10057,10 +9627,7 @@ "autoload": { "psr-4": { "MyCLabs\\Enum\\": "src/" - }, - "classmap": [ - "stubs/Stringable.php" - ] + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -10079,7 +9646,7 @@ ], "support": { "issues": "https://github.com/myclabs/php-enum/issues", - "source": "https://github.com/myclabs/php-enum/tree/1.8.4" + "source": "https://github.com/myclabs/php-enum/tree/1.8.3" }, "funding": [ { @@ -10091,7 +9658,7 @@ "type": "tidelift" } ], - "time": "2022-08-04T09:53:51+00:00" + "time": "2021-07-05T08:18:36+00:00" }, { "name": "namshi/jose", @@ -10456,23 +10023,20 @@ }, { "name": "phenx/php-font-lib", - "version": "0.5.4", + "version": "0.5.2", "source": { "type": "git", - "url": "https://github.com/dompdf/php-font-lib.git", - "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4" + "url": "https://github.com/PhenX/php-font-lib.git", + "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/dd448ad1ce34c63d09baccd05415e361300c35b4", - "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4", + "url": "https://api.github.com/repos/PhenX/php-font-lib/zipball/ca6ad461f032145fff5971b5985e5af9e7fa88d8", + "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8", "shasum": "" }, - "require": { - "ext-mbstring": "*" - }, "require-dev": { - "symfony/phpunit-bridge": "^3 || ^4 || ^5" + "phpunit/phpunit": "^4.8.35 || ^5 || ^6 || ^7" }, "type": "library", "autoload": { @@ -10493,10 +10057,10 @@ "description": "A library to read, parse, export and make subsets of different types of font files.", "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" + "issues": "https://github.com/PhenX/php-font-lib/issues", + "source": "https://github.com/PhenX/php-font-lib/tree/0.5.2" }, - "time": "2021-12-17T19:44:54+00:00" + "time": "2020-03-08T15:31:32+00:00" }, { "name": "phpfastcache/riak-client", @@ -10576,16 +10140,16 @@ }, { "name": "phpmailer/phpmailer", - "version": "v6.7.1", + "version": "v6.5.1", "source": { "type": "git", "url": "https://github.com/PHPMailer/PHPMailer.git", - "reference": "49cd7ea3d2563f028d7811f06864a53b1f15ff55" + "reference": "dd803df5ad7492e1b40637f7ebd258fee5ca7355" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/49cd7ea3d2563f028d7811f06864a53b1f15ff55", - "reference": "49cd7ea3d2563f028d7811f06864a53b1f15ff55", + "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/dd803df5ad7492e1b40637f7ebd258fee5ca7355", + "reference": "dd803df5ad7492e1b40637f7ebd258fee5ca7355", "shasum": "" }, "require": { @@ -10595,24 +10159,22 @@ "php": ">=5.5.0" }, "require-dev": { - "dealerdirect/phpcodesniffer-composer-installer": "^0.7.2", - "doctrine/annotations": "^1.2.6 || ^1.13.3", - "php-parallel-lint/php-console-highlighter": "^1.0.0", - "php-parallel-lint/php-parallel-lint": "^1.3.2", + "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", + "doctrine/annotations": "^1.2", + "php-parallel-lint/php-console-highlighter": "^0.5.0", + "php-parallel-lint/php-parallel-lint": "^1.3", "phpcompatibility/php-compatibility": "^9.3.5", "roave/security-advisories": "dev-latest", - "squizlabs/php_codesniffer": "^3.7.1", - "yoast/phpunit-polyfills": "^1.0.4" + "squizlabs/php_codesniffer": "^3.6.0", + "yoast/phpunit-polyfills": "^1.0.0" }, "suggest": { "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses", - "ext-openssl": "Needed for secure SMTP sending and DKIM signing", - "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication", "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication", "league/oauth2-google": "Needed for Google XOAUTH2 authentication", "psr/log": "For optional PSR-3 debug logging", - "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)", - "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication" + "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication", + "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)" }, "type": "library", "autoload": { @@ -10644,7 +10206,7 @@ "description": "PHPMailer is a full-featured email creation and transfer class for PHP", "support": { "issues": "https://github.com/PHPMailer/PHPMailer/issues", - "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.7.1" + "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.5.1" }, "funding": [ { @@ -10652,37 +10214,33 @@ "type": "github" } ], - "time": "2022-12-08T13:30:06+00:00" + "time": "2021-08-18T09:14:16+00:00" }, { "name": "phpoption/phpoption", - "version": "1.9.0", + "version": "1.7.5", "source": { "type": "git", "url": "https://github.com/schmittjoh/php-option.git", - "reference": "dc5ff11e274a90cc1c743f66c9ad700ce50db9ab" + "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dc5ff11e274a90cc1c743f66c9ad700ce50db9ab", - "reference": "dc5ff11e274a90cc1c743f66c9ad700ce50db9ab", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525", + "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525", "shasum": "" }, "require": { - "php": "^7.2.5 || ^8.0" + "php": "^5.5.9 || ^7.0 || ^8.0" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.8", - "phpunit/phpunit": "^8.5.28 || ^9.5.21" + "bamarni/composer-bin-plugin": "^1.4.1", + "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0" }, "type": "library", "extra": { - "bamarni-bin": { - "bin-links": true, - "forward-command": true - }, "branch-alias": { - "dev-master": "1.9-dev" + "dev-master": "1.7-dev" } }, "autoload": { @@ -10697,13 +10255,11 @@ "authors": [ { "name": "Johannes M. Schmitt", - "email": "schmittjoh@gmail.com", - "homepage": "https://github.com/schmittjoh" + "email": "schmittjoh@gmail.com" }, { "name": "Graham Campbell", - "email": "hello@gjcampbell.co.uk", - "homepage": "https://github.com/GrahamCampbell" + "email": "graham@alt-three.com" } ], "description": "Option Type for PHP", @@ -10715,7 +10271,7 @@ ], "support": { "issues": "https://github.com/schmittjoh/php-option/issues", - "source": "https://github.com/schmittjoh/php-option/tree/1.9.0" + "source": "https://github.com/schmittjoh/php-option/tree/1.7.5" }, "funding": [ { @@ -10727,28 +10283,28 @@ "type": "tidelift" } ], - "time": "2022-07-30T15:51:26+00:00" + "time": "2020-07-20T17:29:33+00:00" }, { "name": "pimple/pimple", - "version": "v3.5.0", + "version": "v3.4.0", "source": { "type": "git", "url": "https://github.com/silexphp/Pimple.git", - "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed" + "reference": "86406047271859ffc13424a048541f4531f53601" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed", - "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed", + "url": "https://api.github.com/repos/silexphp/Pimple/zipball/86406047271859ffc13424a048541f4531f53601", + "reference": "86406047271859ffc13424a048541f4531f53601", "shasum": "" }, "require": { "php": ">=7.2.5", - "psr/container": "^1.1 || ^2.0" + "psr/container": "^1.1" }, "require-dev": { - "symfony/phpunit-bridge": "^5.4@dev" + "symfony/phpunit-bridge": "^5.0" }, "type": "library", "extra": { @@ -10778,9 +10334,9 @@ "dependency injection" ], "support": { - "source": "https://github.com/silexphp/Pimple/tree/v3.5.0" + "source": "https://github.com/silexphp/Pimple/tree/v3.4.0" }, - "time": "2021-10-28T11:13:42+00:00" + "time": "2021-03-06T08:28:00+00:00" }, { "name": "psr/cache", @@ -11141,16 +10697,16 @@ }, { "name": "psy/psysh", - "version": "v0.10.12", + "version": "v0.10.8", "source": { "type": "git", "url": "https://github.com/bobthecow/psysh.git", - "reference": "a0d9981aa07ecfcbea28e4bfa868031cca121e7d" + "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a0d9981aa07ecfcbea28e4bfa868031cca121e7d", - "reference": "a0d9981aa07ecfcbea28e4bfa868031cca121e7d", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/e4573f47750dd6c92dca5aee543fa77513cbd8d3", + "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3", "shasum": "" }, "require": { @@ -11210,9 +10766,9 @@ ], "support": { "issues": "https://github.com/bobthecow/psysh/issues", - "source": "https://github.com/bobthecow/psysh/tree/v0.10.12" + "source": "https://github.com/bobthecow/psysh/tree/v0.10.8" }, - "time": "2021-11-30T14:05:36+00:00" + "time": "2021-04-10T16:23:39+00:00" }, { "name": "ralouphie/getallheaders", @@ -11568,30 +11124,29 @@ }, { "name": "simplesamlphp/composer-module-installer", - "version": "v1.2.0", + "version": "v1.1.8", "source": { "type": "git", "url": "https://github.com/simplesamlphp/composer-module-installer.git", - "reference": "27b4fe96198ffaff3ab49c87b40f4cb24de77b01" + "reference": "45161b5406f3e9c82459d0f9a5a1dba064953cfa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/composer-module-installer/zipball/27b4fe96198ffaff3ab49c87b40f4cb24de77b01", - "reference": "27b4fe96198ffaff3ab49c87b40f4cb24de77b01", + "url": "https://api.github.com/repos/simplesamlphp/composer-module-installer/zipball/45161b5406f3e9c82459d0f9a5a1dba064953cfa", + "reference": "45161b5406f3e9c82459d0f9a5a1dba064953cfa", "shasum": "" }, "require": { - "composer-plugin-api": "^1.1 || ^2.0", - "php": "^7.4 || ^8.0", + "composer-plugin-api": "^1.1|^2.0", "simplesamlphp/simplesamlphp": "*" }, "type": "composer-plugin", "extra": { - "class": "SimpleSAML\\Composer\\ModuleInstallerPlugin" + "class": "SimpleSamlPhp\\Composer\\ModuleInstallerPlugin" }, "autoload": { - "psr-4": { - "SimpleSAML\\Composer\\": "src/" + "psr-0": { + "SimpleSamlPhp\\Composer": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -11601,22 +11156,22 @@ "description": "A Composer plugin that allows installing SimpleSAMLphp modules through Composer.", "support": { "issues": "https://github.com/simplesamlphp/composer-module-installer/issues", - "source": "https://github.com/simplesamlphp/composer-module-installer/tree/v1.2.0" + "source": "https://github.com/simplesamlphp/composer-module-installer/tree/v1.1.8" }, - "time": "2022-08-31T17:20:27+00:00" + "time": "2020-08-25T19:04:33+00:00" }, { "name": "simplesamlphp/saml2", - "version": "v4.6.5", + "version": "v4.2.4", "source": { "type": "git", "url": "https://github.com/simplesamlphp/saml2.git", - "reference": "35e4cac48ef97d454d25a92eb24c85cadf96de9d" + "reference": "8e3ad89b97d2f2f922f67894675e3460feab2209" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/saml2/zipball/35e4cac48ef97d454d25a92eb24c85cadf96de9d", - "reference": "35e4cac48ef97d454d25a92eb24c85cadf96de9d", + "url": "https://api.github.com/repos/simplesamlphp/saml2/zipball/8e3ad89b97d2f2f922f67894675e3460feab2209", + "reference": "8e3ad89b97d2f2f922f67894675e3460feab2209", "shasum": "" }, "require": { @@ -11624,7 +11179,7 @@ "ext-openssl": "*", "ext-zlib": "*", "php": ">=7.1 || ^8.0", - "psr/log": "~1.1 || ^2.0 || ^3.0", + "psr/log": "~1.1", "robrichards/xmlseclibs": "^3.1.1", "webmozart/assert": "^1.9" }, @@ -11659,22 +11214,22 @@ "description": "SAML2 PHP library from SimpleSAMLphp", "support": { "issues": "https://github.com/simplesamlphp/saml2/issues", - "source": "https://github.com/simplesamlphp/saml2/tree/v4.6.5" + "source": "https://github.com/simplesamlphp/saml2/tree/v4.2.4" }, - "time": "2022-11-23T12:50:43+00:00" + "time": "2021-08-24T12:21:57+00:00" }, { "name": "simplesamlphp/simplesamlphp", - "version": "v1.19.7", + "version": "v1.19.1", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp.git", - "reference": "f62565d62e0d4e5f105008608faa96949acf854b" + "reference": "59e08962c3890fc7be737591c3743fcbf770baa3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp/zipball/f62565d62e0d4e5f105008608faa96949acf854b", - "reference": "f62565d62e0d4e5f105008608faa96949acf854b", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp/zipball/59e08962c3890fc7be737591c3743fcbf770baa3", + "reference": "59e08962c3890fc7be737591c3743fcbf770baa3", "shasum": "" }, "require": { @@ -11687,13 +11242,13 @@ "ext-pcre": "*", "ext-spl": "*", "ext-zlib": "*", - "gettext/gettext": "^4.8.7", - "php": ">=7.1|^8", + "gettext/gettext": "^4.8", + "php": ">=7.1 <8.0", "phpmailer/phpmailer": "^6.1", "robrichards/xmlseclibs": "^3.1", "simplesamlphp/assert": "^0.0.13", - "simplesamlphp/saml2": "^4.5", - "simplesamlphp/simplesamlphp-module-adfs": "^1.0", + "simplesamlphp/saml2": "^4.2", + "simplesamlphp/simplesamlphp-module-adfs": "^0.9", "simplesamlphp/simplesamlphp-module-authcrypt": "^0.9", "simplesamlphp/simplesamlphp-module-authfacebook": "^0.9", "simplesamlphp/simplesamlphp-module-authorize": "^0.9", @@ -11705,15 +11260,15 @@ "simplesamlphp/simplesamlphp-module-cdc": "^0.9", "simplesamlphp/simplesamlphp-module-consent": "^0.9", "simplesamlphp/simplesamlphp-module-consentadmin": "^0.9", - "simplesamlphp/simplesamlphp-module-discopower": "^0.10", + "simplesamlphp/simplesamlphp-module-discopower": "^0.9", "simplesamlphp/simplesamlphp-module-exampleattributeserver": "^1.0", "simplesamlphp/simplesamlphp-module-expirycheck": "^0.9", "simplesamlphp/simplesamlphp-module-ldap": "^0.9 | ^1.0", "simplesamlphp/simplesamlphp-module-memcachemonitor": "^0.9", "simplesamlphp/simplesamlphp-module-memcookie": "^1.2", - "simplesamlphp/simplesamlphp-module-metarefresh": "^0.10", + "simplesamlphp/simplesamlphp-module-metarefresh": "^0.9", "simplesamlphp/simplesamlphp-module-negotiate": "^0.9", - "simplesamlphp/simplesamlphp-module-oauth": "^0.9.3", + "simplesamlphp/simplesamlphp-module-oauth": "^0.9", "simplesamlphp/simplesamlphp-module-preprodwarning": "^0.9", "simplesamlphp/simplesamlphp-module-radius": "^0.9", "simplesamlphp/simplesamlphp-module-riak": "^0.9", @@ -11733,7 +11288,7 @@ "symfony/routing": "^4.4 || ^5.0", "symfony/var-exporter": "^4.4 || ^5.0", "symfony/yaml": "^4.4 || ^5.0", - "twig/twig": "^2.15.3" + "twig/twig": "^1.43 || ^2.0" }, "require-dev": { "ext-curl": "*", @@ -11793,30 +11348,32 @@ "issues": "https://github.com/simplesamlphp/simplesamlphp/issues", "source": "https://github.com/simplesamlphp/simplesamlphp" }, - "time": "2022-12-05T19:46:47+00:00" + "time": "2021-04-29T10:11:23+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-adfs", - "version": "v1.0.9", + "version": "v0.9.8", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-adfs.git", - "reference": "c47daabc262b7e14a76879015fd9db85319752ec" + "reference": "ac2ba46a6b94ed48b527ac190b0fa99bcda8d98e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-adfs/zipball/c47daabc262b7e14a76879015fd9db85319752ec", - "reference": "c47daabc262b7e14a76879015fd9db85319752ec", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-adfs/zipball/ac2ba46a6b94ed48b527ac190b0fa99bcda8d98e", + "reference": "ac2ba46a6b94ed48b527ac190b0fa99bcda8d98e", "shasum": "" }, "require": { - "php": ">=7.1", - "simplesamlphp/assert": "^0.0.13", - "simplesamlphp/composer-module-installer": "^1.1.7" + "php": ">=5.6", + "simplesamlphp/composer-module-installer": "~1.1" }, "require-dev": { - "simplesamlphp/simplesamlphp": "^1.18", - "simplesamlphp/simplesamlphp-test-framework": "^0.1.2" + "phpunit/phpunit": "~5.7", + "sensiolabs/security-checker": "^5.0", + "simplesamlphp/simplesamlphp": "^1.17", + "simplesamlphp/simplesamlphp-test-framework": "^0.0.15", + "webmozart/assert": "<1.7" }, "type": "simplesamlphp-module", "autoload": { @@ -11840,23 +11397,23 @@ "simplesamlphp" ], "support": { - "issues": "https://github.com/simplesamlphp/simplesamlphp-module-adfs/issues", - "source": "https://github.com/simplesamlphp/simplesamlphp-module-adfs" + "issues": "https://github.com/tvdijen/simplesamlphp-module-adfs/issues", + "source": "https://github.com/tvdijen/simplesamlphp-module-adfs" }, - "time": "2022-04-11T10:24:25+00:00" + "time": "2021-08-17T07:54:07+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-authcrypt", - "version": "v0.9.4", + "version": "v0.9.3", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-authcrypt.git", - "reference": "62555123e61b11463be3cd7adb708562023cff28" + "reference": "9a2c1a761e2d94394a4f2d3499fd6f0853899530" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-authcrypt/zipball/62555123e61b11463be3cd7adb708562023cff28", - "reference": "62555123e61b11463be3cd7adb708562023cff28", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-authcrypt/zipball/9a2c1a761e2d94394a4f2d3499fd6f0853899530", + "reference": "9a2c1a761e2d94394a4f2d3499fd6f0853899530", "shasum": "" }, "require": { @@ -11894,7 +11451,7 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-authcrypt/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-authcrypt" }, - "time": "2022-01-03T20:50:47+00:00" + "time": "2021-01-08T09:09:33+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-authfacebook", @@ -11952,16 +11509,16 @@ }, { "name": "simplesamlphp/simplesamlphp-module-authorize", - "version": "v0.9.4", + "version": "v0.9.3", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-authorize.git", - "reference": "4c7ce4eaa54fc301f131c62e803fc843e4d88056" + "reference": "0593bfcb84fca9d9133f415246ab8ca51b412c92" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-authorize/zipball/4c7ce4eaa54fc301f131c62e803fc843e4d88056", - "reference": "4c7ce4eaa54fc301f131c62e803fc843e4d88056", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-authorize/zipball/0593bfcb84fca9d9133f415246ab8ca51b412c92", + "reference": "0593bfcb84fca9d9133f415246ab8ca51b412c92", "shasum": "" }, "require": { @@ -11997,20 +11554,20 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-authorize/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-authorize" }, - "time": "2022-01-03T20:56:53+00:00" + "time": "2021-03-24T10:37:17+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-authtwitter", - "version": "v0.9.3", + "version": "v0.9.1", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-authtwitter.git", - "reference": "6e178e7aae7827a64dc462b5bb2f28d6eddc4381" + "reference": "29a15e58061222632fea9eb2c807aef5e2c0d54a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-authtwitter/zipball/6e178e7aae7827a64dc462b5bb2f28d6eddc4381", - "reference": "6e178e7aae7827a64dc462b5bb2f28d6eddc4381", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-authtwitter/zipball/29a15e58061222632fea9eb2c807aef5e2c0d54a", + "reference": "29a15e58061222632fea9eb2c807aef5e2c0d54a", "shasum": "" }, "require": { @@ -12020,8 +11577,7 @@ }, "require-dev": { "phpunit/phpunit": "~4.8.35", - "simplesamlphp/simplesamlphp": "^1.17", - "webmozart/assert": "<1.7" + "simplesamlphp/simplesamlphp": "^1.17" }, "type": "simplesamlphp-module", "autoload": { @@ -12031,7 +11587,7 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-2.1-or-later" + "LGPL-3.0-or-later" ], "authors": [ { @@ -12052,7 +11608,7 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-authtwitter/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-authtwitter" }, - "time": "2022-01-03T23:01:48+00:00" + "time": "2019-12-03T09:00:09+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-authwindowslive", @@ -12112,16 +11668,16 @@ }, { "name": "simplesamlphp/simplesamlphp-module-authx509", - "version": "v0.9.9", + "version": "v0.9.8", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-authX509.git", - "reference": "b138f41b2bc725371f42abb63b5a39ac11b5432a" + "reference": "66525b1ec4145ec8d0d0e9db4534624b6be4c1fb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-authX509/zipball/b138f41b2bc725371f42abb63b5a39ac11b5432a", - "reference": "b138f41b2bc725371f42abb63b5a39ac11b5432a", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-authX509/zipball/66525b1ec4145ec8d0d0e9db4534624b6be4c1fb", + "reference": "66525b1ec4145ec8d0d0e9db4534624b6be4c1fb", "shasum": "" }, "require": { @@ -12165,20 +11721,20 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-authx509/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-authx509" }, - "time": "2022-01-06T19:02:38+00:00" + "time": "2020-12-15T23:06:47+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-authyubikey", - "version": "v0.9.3", + "version": "v0.9.1", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-authyubikey.git", - "reference": "414e2a73da4adfee6d97ba66e852ec7c85369913" + "reference": "8c27bfeb4981d2e6fa40a831e945f40c5a4ad3d2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-authyubikey/zipball/414e2a73da4adfee6d97ba66e852ec7c85369913", - "reference": "414e2a73da4adfee6d97ba66e852ec7c85369913", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-authyubikey/zipball/8c27bfeb4981d2e6fa40a831e945f40c5a4ad3d2", + "reference": "8c27bfeb4981d2e6fa40a831e945f40c5a4ad3d2", "shasum": "" }, "require": { @@ -12192,7 +11748,7 @@ }, "type": "simplesamlphp-module", "extra": { - "ssp-mixedcase-module-name": "authYubiKey" + "ssp-mixedcase-module-name": "authYubikey" }, "autoload": { "psr-4": { @@ -12201,7 +11757,7 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-2.1-or-later" + "LGPL-3.0-or-later" ], "authors": [ { @@ -12218,7 +11774,7 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-authyubikey/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-authyubikey" }, - "time": "2022-01-06T19:07:32+00:00" + "time": "2019-12-03T08:52:49+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-cas", @@ -12273,16 +11829,16 @@ }, { "name": "simplesamlphp/simplesamlphp-module-cdc", - "version": "v0.9.2", + "version": "v0.9.1", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-cdc.git", - "reference": "92498fc3004c02849d96da29ca472d99ed23af73" + "reference": "16a5bfac7299e04e5feb472af328e07598708166" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-cdc/zipball/92498fc3004c02849d96da29ca472d99ed23af73", - "reference": "92498fc3004c02849d96da29ca472d99ed23af73", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-cdc/zipball/16a5bfac7299e04e5feb472af328e07598708166", + "reference": "16a5bfac7299e04e5feb472af328e07598708166", "shasum": "" }, "require": { @@ -12290,8 +11846,7 @@ }, "require-dev": { "phpunit/phpunit": "~5.7", - "simplesamlphp/simplesamlphp": "^1.17", - "webmozart/assert": "<1.7" + "simplesamlphp/simplesamlphp": "^1.17" }, "type": "simplesamlphp-module", "autoload": { @@ -12301,7 +11856,7 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-2.1-or-later" + "LGPL-3.0-or-later" ], "authors": [ { @@ -12323,20 +11878,20 @@ "issues": "https://github.com/simplesamlphp/simplesamlphp-module-cdc/issues", "source": "https://github.com/simplesamlphp/simplesamlphp-module-cdc/" }, - "time": "2022-01-06T19:27:16+00:00" + "time": "2019-12-03T09:04:11+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-consent", - "version": "v0.9.8", + "version": "v0.9.6", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-consent.git", - "reference": "8466b0b7c6207b15ca5e265f436299ff2dec85da" + "reference": "2f84d15e96afb5a32b6d1cff93370f501ca7867d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-consent/zipball/8466b0b7c6207b15ca5e265f436299ff2dec85da", - "reference": "8466b0b7c6207b15ca5e265f436299ff2dec85da", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-consent/zipball/2f84d15e96afb5a32b6d1cff93370f501ca7867d", + "reference": "2f84d15e96afb5a32b6d1cff93370f501ca7867d", "shasum": "" }, "require": { @@ -12346,7 +11901,7 @@ "require-dev": { "phpunit/phpunit": "~5.7", "simplesamlphp/simplesamlphp": "^1.17", - "webmozart/assert": "<1.6" + "webmozart/assert": "<1.7" }, "type": "simplesamlphp-module", "autoload": { @@ -12373,20 +11928,20 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-consent/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-consent" }, - "time": "2022-01-06T19:17:22+00:00" + "time": "2020-06-15T14:26:23+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-consentadmin", - "version": "v0.9.2", + "version": "v0.9.1", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-consentadmin.git", - "reference": "62dc5e9d5b1a12a73549c80140b7224d7f7d1c2e" + "reference": "466e8d0d751f0080162d78e63ab2e125b24d17a1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-consentadmin/zipball/62dc5e9d5b1a12a73549c80140b7224d7f7d1c2e", - "reference": "62dc5e9d5b1a12a73549c80140b7224d7f7d1c2e", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-consentadmin/zipball/466e8d0d751f0080162d78e63ab2e125b24d17a1", + "reference": "466e8d0d751f0080162d78e63ab2e125b24d17a1", "shasum": "" }, "require": { @@ -12405,7 +11960,7 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-2.1-or-later" + "LGPL-3.0-or-later" ], "authors": [ { @@ -12426,29 +11981,30 @@ "issues": "https://github.com/simplesamlphp/simplesamlphp-module-consentadmin/issues", "source": "https://github.com/simplesamlphp/simplesamlphp-module-consentadmin" }, - "time": "2022-01-06T19:19:38+00:00" + "time": "2019-12-03T09:06:40+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-discopower", - "version": "v0.10.1", + "version": "v0.9.1", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-discopower.git", - "reference": "4cb6b7c648b455586903b8932a171397375b50b0" + "reference": "006c0617610f1bae11cf4d17e8ce4c509239a60e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-discopower/zipball/4cb6b7c648b455586903b8932a171397375b50b0", - "reference": "4cb6b7c648b455586903b8932a171397375b50b0", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-discopower/zipball/006c0617610f1bae11cf4d17e8ce4c509239a60e", + "reference": "006c0617610f1bae11cf4d17e8ce4c509239a60e", "shasum": "" }, "require": { - "php": ">=7.1", - "simplesamlphp/composer-module-installer": "~1.1" + "php": ">=5.6", + "simplesamlphp/composer-module-installer": "~1.1", + "webmozart/assert": "~1.4" }, "require-dev": { - "simplesamlphp/simplesamlphp": "^1.19", - "simplesamlphp/simplesamlphp-test-framework": "^0.1.2" + "phpunit/phpunit": "~5.7", + "simplesamlphp/simplesamlphp": "^1.17" }, "type": "simplesamlphp-module", "autoload": { @@ -12458,7 +12014,7 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-2.1-or-later" + "LGPL-3.0-or-later" ], "authors": [ { @@ -12476,7 +12032,7 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-discopower/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-discopower" }, - "time": "2021-08-17T14:29:22+00:00" + "time": "2019-11-27T20:34:37+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-exampleattributeserver", @@ -12529,25 +12085,26 @@ }, { "name": "simplesamlphp/simplesamlphp-module-expirycheck", - "version": "v0.9.4", + "version": "v0.9.3", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-expirycheck.git", - "reference": "02101497281031befba93c48c96ee9133f57241d" + "reference": "59c59cdf87e2679257b46c07bb4c27666a11cc20" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-expirycheck/zipball/02101497281031befba93c48c96ee9133f57241d", - "reference": "02101497281031befba93c48c96ee9133f57241d", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-expirycheck/zipball/59c59cdf87e2679257b46c07bb4c27666a11cc20", + "reference": "59c59cdf87e2679257b46c07bb4c27666a11cc20", "shasum": "" }, "require": { "php": ">=5.6", - "simplesamlphp/composer-module-installer": "~1.1" + "simplesamlphp/composer-module-installer": "~1.1", + "webmozart/assert": "~1.4" }, "require-dev": { - "phpunit/phpunit": "~5.7", - "simplesamlphp/simplesamlphp": "^1.17" + "simplesamlphp/simplesamlphp": "^1.17", + "simplesamlphp/simplesamlphp-test-framework": "^0.0.10" }, "type": "simplesamlphp-module", "autoload": { @@ -12557,7 +12114,7 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-2.1-or-later" + "LGPL-3.0-or-later" ], "authors": [ { @@ -12571,23 +12128,23 @@ "simplesamlphp" ], "support": { - "issues": "https://github.com/tvdijen/simplesamlphp-module-expirycheck/issues", - "source": "https://github.com/tvdijen/simplesamlphp-module-expirycheck" + "issues": "https://github.com/simplesamlphp/simplesamlphp-module-expirycheck/issues", + "source": "https://github.com/simplesamlphp/simplesamlphp-module-expirycheck" }, - "time": "2022-01-06T21:16:01+00:00" + "time": "2019-12-14T13:20:46+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-ldap", - "version": "v0.9.17", + "version": "v0.9.10", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-ldap.git", - "reference": "40f1bfe0c4ac2f91cf8e52d22fa6ec2fe1c03066" + "reference": "78f04cbe41bfb9dcbcdeff4b5f12e67c060e1a77" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-ldap/zipball/40f1bfe0c4ac2f91cf8e52d22fa6ec2fe1c03066", - "reference": "40f1bfe0c4ac2f91cf8e52d22fa6ec2fe1c03066", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-ldap/zipball/78f04cbe41bfb9dcbcdeff4b5f12e67c060e1a77", + "reference": "78f04cbe41bfb9dcbcdeff4b5f12e67c060e1a77", "shasum": "" }, "require": { @@ -12630,20 +12187,20 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-ldap/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-ldap" }, - "time": "2022-01-11T12:50:47+00:00" + "time": "2020-09-16T21:09:07+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-memcachemonitor", - "version": "v0.9.3", + "version": "v0.9.2", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-memcachemonitor.git", - "reference": "8d25463ac56b4e2294f59f622a6658e0c67086f4" + "reference": "900b5c6b59913d9013b8dae090841a127ae55ae5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-memcachemonitor/zipball/8d25463ac56b4e2294f59f622a6658e0c67086f4", - "reference": "8d25463ac56b4e2294f59f622a6658e0c67086f4", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-memcachemonitor/zipball/900b5c6b59913d9013b8dae090841a127ae55ae5", + "reference": "900b5c6b59913d9013b8dae090841a127ae55ae5", "shasum": "" }, "require": { @@ -12681,7 +12238,7 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-memcachemonitor/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-memcachemonitor" }, - "time": "2022-01-06T22:37:15+00:00" + "time": "2021-01-25T15:44:44+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-memcookie", @@ -12737,16 +12294,16 @@ }, { "name": "simplesamlphp/simplesamlphp-module-metarefresh", - "version": "v0.10.0", + "version": "v0.9.6", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-metarefresh.git", - "reference": "488d7809857c274befac89facfa03520a05bc1ba" + "reference": "e284306a7097297765b5b78a4e28f19f18d4e001" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-metarefresh/zipball/488d7809857c274befac89facfa03520a05bc1ba", - "reference": "488d7809857c274befac89facfa03520a05bc1ba", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-metarefresh/zipball/e284306a7097297765b5b78a4e28f19f18d4e001", + "reference": "e284306a7097297765b5b78a4e28f19f18d4e001", "shasum": "" }, "require": { @@ -12782,20 +12339,20 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-metarefresh/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-metarefresh" }, - "time": "2022-05-03T08:57:30+00:00" + "time": "2020-07-31T14:43:37+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-negotiate", - "version": "v0.9.12", + "version": "v0.9.11", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-negotiate.git", - "reference": "48752cea80e81a60ebb522cc10789589ac16df50" + "reference": "e7c4597110c753a750cd522220fc2a5a34b7c1b8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-negotiate/zipball/48752cea80e81a60ebb522cc10789589ac16df50", - "reference": "48752cea80e81a60ebb522cc10789589ac16df50", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-negotiate/zipball/e7c4597110c753a750cd522220fc2a5a34b7c1b8", + "reference": "e7c4597110c753a750cd522220fc2a5a34b7c1b8", "shasum": "" }, "require": { @@ -12836,23 +12393,23 @@ "simplesamlphp" ], "support": { - "issues": "https://github.com/simplesamlphp/simplesamlphp-module-negotiate/issues", - "source": "https://github.com/simplesamlphp/simplesamlphp-module-negotiate" + "issues": "https://github.com/tvdijen/simplesamlphp-module-negotiate/issues", + "source": "https://github.com/tvdijen/simplesamlphp-module-negotiate" }, - "time": "2022-01-03T23:18:27+00:00" + "time": "2021-05-17T11:01:39+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-oauth", - "version": "v0.9.3", + "version": "v0.9.2", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-oauth.git", - "reference": "2a2433144dca408315e4ee163f9ab73a6110b2b1" + "reference": "d14d7aca6e699ec12b3f4dd0128373faa1a2cc61" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-oauth/zipball/2a2433144dca408315e4ee163f9ab73a6110b2b1", - "reference": "2a2433144dca408315e4ee163f9ab73a6110b2b1", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-oauth/zipball/d14d7aca6e699ec12b3f4dd0128373faa1a2cc61", + "reference": "d14d7aca6e699ec12b3f4dd0128373faa1a2cc61", "shasum": "" }, "require": { @@ -12863,11 +12420,6 @@ "simplesamlphp/simplesamlphp": "^1.17" }, "type": "simplesamlphp-module", - "autoload": { - "psr-4": { - "SimpleSAML\\Module\\oauth\\": "lib/" - } - }, "notification-url": "https://packagist.org/downloads/", "license": [ "LGPL-2.1-or-later" @@ -12893,29 +12445,29 @@ "source": "https://github.com/simplesamlphp/simplesamlphp-module-oauth/" }, "abandoned": true, - "time": "2021-08-31T18:55:00+00:00" + "time": "2020-04-29T19:37:43+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-preprodwarning", - "version": "v0.9.3", + "version": "v0.9.2", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-preprodwarning.git", - "reference": "b3c6d9d41d009e340f4843ce5c24b4118a38e4c3" + "reference": "8e032de33a75eb44857dc06d886ad94ee3af4638" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-preprodwarning/zipball/b3c6d9d41d009e340f4843ce5c24b4118a38e4c3", - "reference": "b3c6d9d41d009e340f4843ce5c24b4118a38e4c3", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-preprodwarning/zipball/8e032de33a75eb44857dc06d886ad94ee3af4638", + "reference": "8e032de33a75eb44857dc06d886ad94ee3af4638", "shasum": "" }, "require": { - "php": ">=7.0", + "php": ">=5.6", "simplesamlphp/composer-module-installer": "~1.1" }, "require-dev": { "phpunit/phpunit": "~5.7", - "simplesamlphp/simplesamlphp": "dev-simplesamlphp-1.19", + "simplesamlphp/simplesamlphp": "^1.17", "webmozart/assert": "^1.4" }, "type": "simplesamlphp-module", @@ -12943,20 +12495,20 @@ "issues": "https://github.com/simplesamlphp/simplesamlphp-module-preprodwarning/issues", "source": "https://github.com/simplesamlphp/simplesamlphp-module-preprodwarning" }, - "time": "2022-01-06T23:21:17+00:00" + "time": "2020-04-09T13:05:27+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-radius", - "version": "v0.9.4", + "version": "v0.9.3", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-radius.git", - "reference": "dbe2976ba27f5131faeca368a5665f8baeaae8b6" + "reference": "36bd0f39f9a13f7eb96ead97c97c3634aa1c3f2d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-radius/zipball/dbe2976ba27f5131faeca368a5665f8baeaae8b6", - "reference": "dbe2976ba27f5131faeca368a5665f8baeaae8b6", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-radius/zipball/36bd0f39f9a13f7eb96ead97c97c3634aa1c3f2d", + "reference": "36bd0f39f9a13f7eb96ead97c97c3634aa1c3f2d", "shasum": "" }, "require": { @@ -12976,7 +12528,7 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-2.1-or-later" + "LGPL-3.0-or-later" ], "authors": [ { @@ -12993,7 +12545,7 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-radius/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-radius" }, - "time": "2022-01-06T23:23:28+00:00" + "time": "2019-10-03T18:13:07+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-riak", @@ -13098,16 +12650,16 @@ }, { "name": "simplesamlphp/simplesamlphp-module-smartattributes", - "version": "v0.9.2", + "version": "v0.9.1", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-smartattributes.git", - "reference": "ba6a32fa287db0f8d767104471176f70fad7f0e1" + "reference": "b45d3ecd916e359a9cae05f9ae9df09b5c42f4e6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-smartattributes/zipball/ba6a32fa287db0f8d767104471176f70fad7f0e1", - "reference": "ba6a32fa287db0f8d767104471176f70fad7f0e1", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-smartattributes/zipball/b45d3ecd916e359a9cae05f9ae9df09b5c42f4e6", + "reference": "b45d3ecd916e359a9cae05f9ae9df09b5c42f4e6", "shasum": "" }, "require": { @@ -13126,7 +12678,7 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-2.1-or-later" + "LGPL-3.0-or-later" ], "authors": [ { @@ -13143,20 +12695,20 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-smartattributes/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-smartattributes" }, - "time": "2022-01-06T23:42:07+00:00" + "time": "2019-12-03T09:24:09+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-sqlauth", - "version": "v0.9.4", + "version": "v0.9.3", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-sqlauth.git", - "reference": "8a28f9a9726bab1dbc8fd3734daa08882dd0a25b" + "reference": "c2dc4fc8aa6d8b2408131e09b39f06d8610ff374" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-sqlauth/zipball/8a28f9a9726bab1dbc8fd3734daa08882dd0a25b", - "reference": "8a28f9a9726bab1dbc8fd3734daa08882dd0a25b", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-sqlauth/zipball/c2dc4fc8aa6d8b2408131e09b39f06d8610ff374", + "reference": "c2dc4fc8aa6d8b2408131e09b39f06d8610ff374", "shasum": "" }, "require": { @@ -13193,7 +12745,7 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-sqlauth/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-sqlauth" }, - "time": "2022-01-06T23:50:52+00:00" + "time": "2021-04-29T16:51:59+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-statistics", @@ -13248,16 +12800,16 @@ }, { "name": "simplesamlphp/twig-configurable-i18n", - "version": "v2.3.5", + "version": "v2.3.4", "source": { "type": "git", "url": "https://github.com/simplesamlphp/twig-configurable-i18n.git", - "reference": "1dc0ff69ec1dfb4cab6a30c583b59faf0efc27d6" + "reference": "e2bffc7eed3112a0b3870ef5b4da0fd74c7c4b8a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/twig-configurable-i18n/zipball/1dc0ff69ec1dfb4cab6a30c583b59faf0efc27d6", - "reference": "1dc0ff69ec1dfb4cab6a30c583b59faf0efc27d6", + "url": "https://api.github.com/repos/simplesamlphp/twig-configurable-i18n/zipball/e2bffc7eed3112a0b3870ef5b4da0fd74c7c4b8a", + "reference": "e2bffc7eed3112a0b3870ef5b4da0fd74c7c4b8a", "shasum": "" }, "require": { @@ -13269,7 +12821,7 @@ "sensiolabs/security-checker": "~6.0.3", "simplesamlphp/simplesamlphp-test-framework": "~0.1.2", "squizlabs/php_codesniffer": "^3.5", - "twig/twig": "^2.15.3" + "twig/twig": "^2.13" }, "type": "project", "autoload": { @@ -13300,44 +12852,41 @@ "issues": "https://github.com/simplesamlphp/twig-configurable-i18n/issues", "source": "https://github.com/simplesamlphp/twig-configurable-i18n" }, - "time": "2022-11-28T16:34:29+00:00" + "time": "2020-08-27T12:51:10+00:00" }, { "name": "solarium/solarium", - "version": "6.2.8", + "version": "6.1.5", "source": { "type": "git", "url": "https://github.com/solariumphp/solarium.git", - "reference": "0bca4fdcd53e86dea19754b0081f91fe17248a9d" + "reference": "beec496540c3d227201c556729d2c61d1c1f8ab1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/solariumphp/solarium/zipball/0bca4fdcd53e86dea19754b0081f91fe17248a9d", - "reference": "0bca4fdcd53e86dea19754b0081f91fe17248a9d", + "url": "https://api.github.com/repos/solariumphp/solarium/zipball/beec496540c3d227201c556729d2c61d1c1f8ab1", + "reference": "beec496540c3d227201c556729d2c61d1c1f8ab1", "shasum": "" }, "require": { - "composer-runtime-api": ">=2.0", "ext-json": "*", "php": "^7.3 || ^8.0", "psr/event-dispatcher": "^1.0", "psr/http-client": "^1.0", "psr/http-factory": "^1.0", - "symfony/event-dispatcher-contracts": "^1.0 || ^2.0 || ^3.0" + "symfony/event-dispatcher-contracts": "^1.0 || ^2.0" }, "require-dev": { "escapestudios/symfony2-coding-standard": "^3.11", - "ext-iconv": "*", "guzzlehttp/guzzle": "^7.2", "nyholm/psr7": "^1.2", "php-http/guzzle7-adapter": "^0.1", "phpstan/extension-installer": "^1.0", - "phpstan/phpstan": "^1.0", - "phpstan/phpstan-deprecation-rules": "^1.0", - "phpstan/phpstan-phpunit": "^1.0", + "phpstan/phpstan": "^0.12", + "phpstan/phpstan-phpunit": "^0.12", "phpunit/phpunit": "^9.5", "roave/security-advisories": "dev-master", - "symfony/event-dispatcher": "^4.3 || ^5.0 || ^6.0" + "symfony/event-dispatcher": "^4.3 || ^5.0" }, "type": "library", "autoload": { @@ -13364,9 +12913,9 @@ ], "support": { "issues": "https://github.com/solariumphp/solarium/issues", - "source": "https://github.com/solariumphp/solarium/tree/6.2.8" + "source": "https://github.com/solariumphp/solarium/tree/6.1.5" }, - "time": "2022-12-06T10:22:19+00:00" + "time": "2021-08-12T15:28:32+00:00" }, { "name": "stack/builder", @@ -13609,16 +13158,16 @@ }, { "name": "symfony/cache", - "version": "v5.4.15", + "version": "v5.3.4", "source": { "type": "git", "url": "https://github.com/symfony/cache.git", - "reference": "60e87188abbacd29ccde44d69c5392a33e888e98" + "reference": "944db6004fc374fbe032d18e07cce51cc4e1e661" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/cache/zipball/60e87188abbacd29ccde44d69c5392a33e888e98", - "reference": "60e87188abbacd29ccde44d69c5392a33e888e98", + "url": "https://api.github.com/repos/symfony/cache/zipball/944db6004fc374fbe032d18e07cce51cc4e1e661", + "reference": "944db6004fc374fbe032d18e07cce51cc4e1e661", "shasum": "" }, "require": { @@ -13626,35 +13175,34 @@ "psr/cache": "^1.0|^2.0", "psr/log": "^1.1|^2|^3", "symfony/cache-contracts": "^1.1.7|^2", - "symfony/deprecation-contracts": "^2.1|^3", - "symfony/polyfill-php73": "^1.9", + "symfony/deprecation-contracts": "^2.1", "symfony/polyfill-php80": "^1.16", - "symfony/service-contracts": "^1.1|^2|^3", - "symfony/var-exporter": "^4.4|^5.0|^6.0" + "symfony/service-contracts": "^1.1|^2", + "symfony/var-exporter": "^4.4|^5.0" }, "conflict": { - "doctrine/dbal": "<2.13.1", + "doctrine/dbal": "<2.10", "symfony/dependency-injection": "<4.4", "symfony/http-kernel": "<4.4", "symfony/var-dumper": "<4.4" }, "provide": { "psr/cache-implementation": "1.0|2.0", - "psr/simple-cache-implementation": "1.0|2.0", + "psr/simple-cache-implementation": "1.0", "symfony/cache-implementation": "1.0|2.0" }, "require-dev": { "cache/integration-tests": "dev-master", "doctrine/cache": "^1.6|^2.0", - "doctrine/dbal": "^2.13.1|^3.0", + "doctrine/dbal": "^2.10|^3.0", "predis/predis": "^1.1", - "psr/simple-cache": "^1.0|^2.0", - "symfony/config": "^4.4|^5.0|^6.0", - "symfony/dependency-injection": "^4.4|^5.0|^6.0", - "symfony/filesystem": "^4.4|^5.0|^6.0", - "symfony/http-kernel": "^4.4|^5.0|^6.0", - "symfony/messenger": "^4.4|^5.0|^6.0", - "symfony/var-dumper": "^4.4|^5.0|^6.0" + "psr/simple-cache": "^1.0", + "symfony/config": "^4.4|^5.0", + "symfony/dependency-injection": "^4.4|^5.0", + "symfony/filesystem": "^4.4|^5.0", + "symfony/http-kernel": "^4.4|^5.0", + "symfony/messenger": "^4.4|^5.0", + "symfony/var-dumper": "^4.4|^5.0" }, "type": "library", "autoload": { @@ -13679,14 +13227,14 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Provides extended PSR-6, PSR-16 (and tags) implementations", + "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation", "homepage": "https://symfony.com", "keywords": [ "caching", "psr6" ], "support": { - "source": "https://github.com/symfony/cache/tree/v5.4.15" + "source": "https://github.com/symfony/cache/tree/v5.3.4" }, "funding": [ { @@ -13702,7 +13250,7 @@ "type": "tidelift" } ], - "time": "2022-10-27T07:55:40+00:00" + "time": "2021-07-23T15:55:36+00:00" }, { "name": "symfony/cache-contracts", @@ -13785,16 +13333,16 @@ }, { "name": "symfony/config", - "version": "v4.4.44", + "version": "v4.4.27", "source": { "type": "git", "url": "https://github.com/symfony/config.git", - "reference": "ed42f8f9da528d2c6cae36fe1f380b0c1d8f0658" + "reference": "8132e8d645d703e9b7c9c4f25067b93638683a35" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/ed42f8f9da528d2c6cae36fe1f380b0c1d8f0658", - "reference": "ed42f8f9da528d2c6cae36fe1f380b0c1d8f0658", + "url": "https://api.github.com/repos/symfony/config/zipball/8132e8d645d703e9b7c9c4f25067b93638683a35", + "reference": "8132e8d645d703e9b7c9c4f25067b93638683a35", "shasum": "" }, "require": { @@ -13843,7 +13391,7 @@ "description": "Helps you find, load, combine, autofill and validate configuration values of any kind", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/config/tree/v4.4.44" + "source": "https://github.com/symfony/config/tree/v4.4.27" }, "funding": [ { @@ -13859,7 +13407,7 @@ "type": "tidelift" } ], - "time": "2022-07-20T09:59:04+00:00" + "time": "2021-07-21T12:19:41+00:00" }, { "name": "symfony/console", @@ -14544,81 +14092,18 @@ ], "time": "2022-01-02T09:41:36+00:00" }, - { - "name": "symfony/expression-language", - "version": "v4.4.47", - "source": { - "type": "git", - "url": "https://github.com/symfony/expression-language.git", - "reference": "e4964c7636e19f6008660f450c09121c80c2a7b9" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/expression-language/zipball/e4964c7636e19f6008660f450c09121c80c2a7b9", - "reference": "e4964c7636e19f6008660f450c09121c80c2a7b9", - "shasum": "" - }, - "require": { - "php": ">=7.1.3", - "symfony/cache": "^3.4|^4.0|^5.0", - "symfony/service-contracts": "^1.1|^2" - }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\ExpressionLanguage\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Provides an engine that can compile and evaluate expressions", - "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/expression-language/tree/v4.4.47" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2022-10-03T15:15:11+00:00" - }, { "name": "symfony/filesystem", - "version": "v4.4.42", + "version": "v4.4.39", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5" + "reference": "72a5b35fecaa670b13954e6eaf414acbe2a67b35" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/815412ee8971209bd4c1eecd5f4f481eacd44bf5", - "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/72a5b35fecaa670b13954e6eaf414acbe2a67b35", + "reference": "72a5b35fecaa670b13954e6eaf414acbe2a67b35", "shasum": "" }, "require": { @@ -14652,7 +14137,7 @@ "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/filesystem/tree/v4.4.42" + "source": "https://github.com/symfony/filesystem/tree/v4.4.39" }, "funding": [ { @@ -14668,7 +14153,7 @@ "type": "tidelift" } ], - "time": "2022-05-20T08:49:14+00:00" + "time": "2022-02-25T10:38:15+00:00" }, { "name": "symfony/finder", @@ -14734,16 +14219,16 @@ }, { "name": "symfony/framework-bundle", - "version": "v4.4.49", + "version": "v4.4.27", "source": { "type": "git", "url": "https://github.com/symfony/framework-bundle.git", - "reference": "d8cf2558249004a29b8e27b1f6eae52337ff471b" + "reference": "b616b87fad76a783e6148a6849a5fbef18006e63" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/d8cf2558249004a29b8e27b1f6eae52337ff471b", - "reference": "d8cf2558249004a29b8e27b1f6eae52337ff471b", + "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/b616b87fad76a783e6148a6849a5fbef18006e63", + "reference": "b616b87fad76a783e6148a6849a5fbef18006e63", "shasum": "" }, "require": { @@ -14751,7 +14236,7 @@ "php": ">=7.1.3", "symfony/cache": "^4.4|^5.0", "symfony/config": "^4.4.11|~5.0.11|^5.1.3", - "symfony/dependency-injection": "^4.4.38|^5.0.1", + "symfony/dependency-injection": "^4.4.1|^5.0.1", "symfony/error-handler": "^4.4.1|^5.0.1", "symfony/filesystem": "^3.4|^4.0|^5.0", "symfony/finder": "^3.4|^4.0|^5.0", @@ -14791,14 +14276,14 @@ "require-dev": { "doctrine/annotations": "^1.10.4", "doctrine/cache": "^1.0|^2.0", - "doctrine/persistence": "^1.3|^2|^3", + "doctrine/persistence": "^1.3|^2.0", "paragonie/sodium_compat": "^1.8", "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", "symfony/asset": "^3.4|^4.0|^5.0", "symfony/browser-kit": "^4.3|^5.0", - "symfony/console": "^4.4.42|^5.4.9", + "symfony/console": "^4.4.21|^5.0", "symfony/css-selector": "^3.4|^4.0|^5.0", - "symfony/dom-crawler": "^4.4.30|^5.3.7", + "symfony/dom-crawler": "^4.3|^5.0", "symfony/dotenv": "^4.3.6|^5.0", "symfony/expression-language": "^3.4|^4.0|^5.0", "symfony/form": "^4.3.5|^5.0", @@ -14860,7 +14345,7 @@ "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/framework-bundle/tree/v4.4.49" + "source": "https://github.com/symfony/framework-bundle/tree/v4.4.27" }, "funding": [ { @@ -14876,7 +14361,7 @@ "type": "tidelift" } ], - "time": "2022-11-05T15:42:31+00:00" + "time": "2021-07-21T13:02:15+00:00" }, { "name": "symfony/http-client-contracts", @@ -16509,16 +15994,16 @@ }, { "name": "symfony/security", - "version": "v4.4.48", + "version": "v4.4.29", "source": { "type": "git", "url": "https://github.com/symfony/security.git", - "reference": "c36a32a2ec1ce91780685f8eb75dba9d832147fb" + "reference": "3053d8faa77a40491727445e410868a2a3762ff8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/security/zipball/c36a32a2ec1ce91780685f8eb75dba9d832147fb", - "reference": "c36a32a2ec1ce91780685f8eb75dba9d832147fb", + "url": "https://api.github.com/repos/symfony/security/zipball/3053d8faa77a40491727445e410868a2a3762ff8", + "reference": "3053d8faa77a40491727445e410868a2a3762ff8", "shasum": "" }, "require": { @@ -16589,7 +16074,7 @@ "description": "Provides a complete security system for your web application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/security/tree/v4.4.48" + "source": "https://github.com/symfony/security/tree/v4.4.29" }, "funding": [ { @@ -16605,7 +16090,7 @@ "type": "tidelift" } ], - "time": "2022-10-22T05:50:33+00:00" + "time": "2021-07-27T06:31:16+00:00" }, { "name": "symfony/serializer", @@ -17662,16 +17147,16 @@ }, { "name": "vlucas/phpdotenv", - "version": "v4.3.0", + "version": "v4.2.0", "source": { "type": "git", "url": "https://github.com/vlucas/phpdotenv.git", - "reference": "67a491df68208bef8c37092db11fa3885008efcf" + "reference": "da64796370fc4eb03cc277088f6fede9fde88482" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/67a491df68208bef8c37092db11fa3885008efcf", - "reference": "67a491df68208bef8c37092db11fa3885008efcf", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/da64796370fc4eb03cc277088f6fede9fde88482", + "reference": "da64796370fc4eb03cc277088f6fede9fde88482", "shasum": "" }, "require": { @@ -17683,7 +17168,7 @@ "bamarni/composer-bin-plugin": "^1.4.1", "ext-filter": "*", "ext-pcre": "*", - "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.30" + "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20" }, "suggest": { "ext-filter": "Required to use the boolean validator.", @@ -17691,12 +17176,8 @@ }, "type": "library", "extra": { - "bamarni-bin": { - "bin-links": true, - "forward-command": true - }, "branch-alias": { - "dev-master": "4.3-dev" + "dev-master": "4.1-dev" } }, "autoload": { @@ -17711,13 +17192,13 @@ "authors": [ { "name": "Graham Campbell", - "email": "hello@gjcampbell.co.uk", - "homepage": "https://github.com/GrahamCampbell" + "email": "graham@alt-three.com", + "homepage": "https://gjcampbell.co.uk/" }, { "name": "Vance Lucas", "email": "vance@vancelucas.com", - "homepage": "https://github.com/vlucas" + "homepage": "https://vancelucas.com/" } ], "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", @@ -17728,7 +17209,7 @@ ], "support": { "issues": "https://github.com/vlucas/phpdotenv/issues", - "source": "https://github.com/vlucas/phpdotenv/tree/v4.3.0" + "source": "https://github.com/vlucas/phpdotenv/tree/v4.2.0" }, "funding": [ { @@ -17740,7 +17221,7 @@ "type": "tidelift" } ], - "time": "2022-10-16T00:51:09+00:00" + "time": "2021-01-20T15:11:48+00:00" }, { "name": "webflo/drupal-finder", @@ -18056,35 +17537,90 @@ }, "time": "2022-03-28T14:22:43+00:00" }, + { + "name": "behat/mink-goutte-driver", + "version": "v1.3.0", + "source": { + "type": "git", + "url": "https://github.com/minkphp/MinkGoutteDriver.git", + "reference": "8139f520f417c81bf9d2f9a171fff400f6adc9ea" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8139f520f417c81bf9d2f9a171fff400f6adc9ea", + "reference": "8139f520f417c81bf9d2f9a171fff400f6adc9ea", + "shasum": "" + }, + "require": { + "behat/mink-browserkit-driver": "~1.2@dev", + "fabpot/goutte": "~1.0.4|~2.0|~3.1", + "php": ">=5.4" + }, + "require-dev": { + "mink/driver-testsuite": "dev-master" + }, + "type": "mink-driver", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Behat\\Mink\\Driver\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "http://everzet.com" + } + ], + "description": "Goutte driver for Mink framework", + "homepage": "https://mink.behat.org/", + "keywords": [ + "browser", + "goutte", + "headless", + "testing" + ], + "support": { + "issues": "https://github.com/minkphp/MinkGoutteDriver/issues", + "source": "https://github.com/minkphp/MinkGoutteDriver/tree/v1.3.0" + }, + "time": "2021-10-12T11:35:46+00:00" + }, { "name": "behat/mink-selenium2-driver", - "version": "v1.6.0", + "version": "v1.4.0", "source": { "type": "git", "url": "https://github.com/minkphp/MinkSelenium2Driver.git", - "reference": "e5f8421654930da725499fb92983e6948c6f973e" + "reference": "312a967dd527f28980cce40850339cd5316da092" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/e5f8421654930da725499fb92983e6948c6f973e", - "reference": "e5f8421654930da725499fb92983e6948c6f973e", + "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/312a967dd527f28980cce40850339cd5316da092", + "reference": "312a967dd527f28980cce40850339cd5316da092", "shasum": "" }, "require": { - "behat/mink": "^1.9@dev", - "ext-json": "*", - "instaclick/php-webdriver": "^1.4", - "php": ">=7.2" + "behat/mink": "~1.7@dev", + "instaclick/php-webdriver": "~1.1", + "php": ">=5.4" }, "require-dev": { - "mink/driver-testsuite": "dev-master", - "phpunit/phpunit": "^8.5.22 || ^9.5.11", - "symfony/error-handler": "^4.4 || ^5.0" + "mink/driver-testsuite": "dev-master" }, "type": "mink-driver", "extra": { "branch-alias": { - "dev-master": "1.x-dev" + "dev-master": "1.4.x-dev" } }, "autoload": { @@ -18109,7 +17645,7 @@ } ], "description": "Selenium2 (WebDriver) driver for Mink framework", - "homepage": "https://mink.behat.org/", + "homepage": "http://mink.behat.org/", "keywords": [ "ajax", "browser", @@ -18120,22 +17656,22 @@ ], "support": { "issues": "https://github.com/minkphp/MinkSelenium2Driver/issues", - "source": "https://github.com/minkphp/MinkSelenium2Driver/tree/v1.6.0" + "source": "https://github.com/minkphp/MinkSelenium2Driver/tree/v1.4.0" }, - "time": "2022-03-28T14:55:17+00:00" + "time": "2020-03-11T14:43:21+00:00" }, { "name": "composer/ca-bundle", - "version": "1.3.4", + "version": "1.3.1", "source": { "type": "git", "url": "https://github.com/composer/ca-bundle.git", - "reference": "69098eca243998b53eed7a48d82dedd28b447cd5" + "reference": "4c679186f2aca4ab6a0f1b0b9cf9252decb44d0b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/ca-bundle/zipball/69098eca243998b53eed7a48d82dedd28b447cd5", - "reference": "69098eca243998b53eed7a48d82dedd28b447cd5", + "url": "https://api.github.com/repos/composer/ca-bundle/zipball/4c679186f2aca4ab6a0f1b0b9cf9252decb44d0b", + "reference": "4c679186f2aca4ab6a0f1b0b9cf9252decb44d0b", "shasum": "" }, "require": { @@ -18182,7 +17718,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.4" + "source": "https://github.com/composer/ca-bundle/tree/1.3.1" }, "funding": [ { @@ -18198,20 +17734,20 @@ "type": "tidelift" } ], - "time": "2022-10-12T12:08:29+00:00" + "time": "2021-10-28T20:44:15+00:00" }, { "name": "composer/composer", - "version": "2.2.18", + "version": "2.2.12", "source": { "type": "git", "url": "https://github.com/composer/composer.git", - "reference": "84175907664ca8b73f73f4883e67e886dfefb9f5" + "reference": "ba61e768b410736efe61df01b61f1ec44f51474f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/composer/zipball/84175907664ca8b73f73f4883e67e886dfefb9f5", - "reference": "84175907664ca8b73f73f4883e67e886dfefb9f5", + "url": "https://api.github.com/repos/composer/composer/zipball/ba61e768b410736efe61df01b61f1ec44f51474f", + "reference": "ba61e768b410736efe61df01b61f1ec44f51474f", "shasum": "" }, "require": { @@ -18281,7 +17817,7 @@ "support": { "irc": "ircs://irc.libera.chat:6697/composer", "issues": "https://github.com/composer/composer/issues", - "source": "https://github.com/composer/composer/tree/2.2.18" + "source": "https://github.com/composer/composer/tree/2.2.12" }, "funding": [ { @@ -18297,7 +17833,7 @@ "type": "tidelift" } ], - "time": "2022-08-20T09:33:38+00:00" + "time": "2022-04-13T14:42:25+00:00" }, { "name": "composer/metadata-minifier", @@ -18368,6 +17904,79 @@ ], "time": "2021-04-07T13:37:33+00:00" }, + { + "name": "composer/package-versions-deprecated", + "version": "1.11.99.3", + "source": { + "type": "git", + "url": "https://github.com/composer/package-versions-deprecated.git", + "reference": "fff576ac850c045158a250e7e27666e146e78d18" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/fff576ac850c045158a250e7e27666e146e78d18", + "reference": "fff576ac850c045158a250e7e27666e146e78d18", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^1.1.0 || ^2.0", + "php": "^7 || ^8" + }, + "replace": { + "ocramius/package-versions": "1.11.99" + }, + "require-dev": { + "composer/composer": "^1.9.3 || ^2.0@dev", + "ext-zip": "^1.13", + "phpunit/phpunit": "^6.5 || ^7" + }, + "type": "composer-plugin", + "extra": { + "class": "PackageVersions\\Installer", + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "PackageVersions\\": "src/PackageVersions" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com" + }, + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be" + } + ], + "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)", + "support": { + "issues": "https://github.com/composer/package-versions-deprecated/issues", + "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.3" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2021-08-17T13:49:14+00:00" + }, { "name": "composer/pcre", "version": "1.0.1", @@ -18441,16 +18050,16 @@ }, { "name": "composer/spdx-licenses", - "version": "1.5.7", + "version": "1.5.6", "source": { "type": "git", "url": "https://github.com/composer/spdx-licenses.git", - "reference": "c848241796da2abf65837d51dce1fae55a960149" + "reference": "a30d487169d799745ca7280bc90fdfa693536901" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/c848241796da2abf65837d51dce1fae55a960149", - "reference": "c848241796da2abf65837d51dce1fae55a960149", + "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/a30d487169d799745ca7280bc90fdfa693536901", + "reference": "a30d487169d799745ca7280bc90fdfa693536901", "shasum": "" }, "require": { @@ -18501,7 +18110,7 @@ "support": { "irc": "irc://irc.freenode.org/composer", "issues": "https://github.com/composer/spdx-licenses/issues", - "source": "https://github.com/composer/spdx-licenses/tree/1.5.7" + "source": "https://github.com/composer/spdx-licenses/tree/1.5.6" }, "funding": [ { @@ -18517,31 +18126,31 @@ "type": "tidelift" } ], - "time": "2022-05-23T07:37:50+00:00" + "time": "2021-11-18T10:14:14+00:00" }, { "name": "composer/xdebug-handler", - "version": "3.0.3", + "version": "2.0.5", "source": { "type": "git", "url": "https://github.com/composer/xdebug-handler.git", - "reference": "ced299686f41dce890debac69273b47ffe98a40c" + "reference": "9e36aeed4616366d2b690bdce11f71e9178c579a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c", - "reference": "ced299686f41dce890debac69273b47ffe98a40c", + "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/9e36aeed4616366d2b690bdce11f71e9178c579a", + "reference": "9e36aeed4616366d2b690bdce11f71e9178c579a", "shasum": "" }, "require": { - "composer/pcre": "^1 || ^2 || ^3", - "php": "^7.2.5 || ^8.0", + "composer/pcre": "^1", + "php": "^5.3.2 || ^7.0 || ^8.0", "psr/log": "^1 || ^2 || ^3" }, "require-dev": { "phpstan/phpstan": "^1.0", "phpstan/phpstan-strict-rules": "^1.1", - "symfony/phpunit-bridge": "^6.0" + "symfony/phpunit-bridge": "^4.2 || ^5.0 || ^6.0" }, "type": "library", "autoload": { @@ -18567,7 +18176,7 @@ "support": { "irc": "irc://irc.freenode.org/composer", "issues": "https://github.com/composer/xdebug-handler/issues", - "source": "https://github.com/composer/xdebug-handler/tree/3.0.3" + "source": "https://github.com/composer/xdebug-handler/tree/2.0.5" }, "funding": [ { @@ -18583,82 +18192,7 @@ "type": "tidelift" } ], - "time": "2022-02-25T21:32:43+00:00" - }, - { - "name": "dealerdirect/phpcodesniffer-composer-installer", - "version": "v0.7.2", - "source": { - "type": "git", - "url": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer.git", - "reference": "1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Dealerdirect/phpcodesniffer-composer-installer/zipball/1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db", - "reference": "1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db", - "shasum": "" - }, - "require": { - "composer-plugin-api": "^1.0 || ^2.0", - "php": ">=5.3", - "squizlabs/php_codesniffer": "^2.0 || ^3.1.0 || ^4.0" - }, - "require-dev": { - "composer/composer": "*", - "php-parallel-lint/php-parallel-lint": "^1.3.1", - "phpcompatibility/php-compatibility": "^9.0" - }, - "type": "composer-plugin", - "extra": { - "class": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin" - }, - "autoload": { - "psr-4": { - "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Franck Nijhof", - "email": "franck.nijhof@dealerdirect.com", - "homepage": "http://www.frenck.nl", - "role": "Developer / IT Manager" - }, - { - "name": "Contributors", - "homepage": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer/graphs/contributors" - } - ], - "description": "PHP_CodeSniffer Standards Composer Installer Plugin", - "homepage": "http://www.dealerdirect.com", - "keywords": [ - "PHPCodeSniffer", - "PHP_CodeSniffer", - "code quality", - "codesniffer", - "composer", - "installer", - "phpcbf", - "phpcs", - "plugin", - "qa", - "quality", - "standard", - "standards", - "style guide", - "stylecheck", - "tests" - ], - "support": { - "issues": "https://github.com/dealerdirect/phpcodesniffer-composer-installer/issues", - "source": "https://github.com/dealerdirect/phpcodesniffer-composer-installer" - }, - "time": "2022-02-04T12:51:07+00:00" + "time": "2022-02-24T20:20:32+00:00" }, { "name": "doctrine/instantiator", @@ -18732,24 +18266,22 @@ }, { "name": "drupal/coder", - "version": "8.3.16", + "version": "8.3.13", "source": { "type": "git", "url": "https://git.drupalcode.org/project/coder.git", - "reference": "d6f6112e5e84ff4f6baaada223c93dadbd6d3887" + "reference": "d3286d571b19633cc296d438c36b9aed195de43c" }, "require": { - "dealerdirect/phpcodesniffer-composer-installer": "^0.7.1", "ext-mbstring": "*", - "php": ">=7.1", - "sirbrillig/phpcs-variable-analysis": "^2.11.7", - "slevomat/coding-standard": "^7.0 || ^8.0", - "squizlabs/php_codesniffer": "^3.7.1", - "symfony/yaml": ">=3.4.0" + "php": ">=7.0.8", + "sirbrillig/phpcs-variable-analysis": "^2.10", + "squizlabs/php_codesniffer": "^3.5.6", + "symfony/yaml": ">=2.0.5" }, "require-dev": { - "phpstan/phpstan": "^1.7.12", - "phpunit/phpunit": "^7.0 || ^8.0" + "phpstan/phpstan": "^0.12.63", + "phpunit/phpunit": "^6.0 || ^7.0" }, "type": "phpcodesniffer-standard", "autoload": { @@ -18773,32 +18305,34 @@ "issues": "https://www.drupal.org/project/issues/coder", "source": "https://www.drupal.org/project/coder" }, - "time": "2022-08-20T17:31:46+00:00" + "time": "2021-02-06T10:44:32+00:00" }, { "name": "drupal/core-dev", - "version": "9.5.0", + "version": "9.2.4", "source": { "type": "git", "url": "https://github.com/drupal/core-dev.git", - "reference": "60196e12909624e168c482660c0f5795df67a6d7" + "reference": "4b5b8556711315e180d72830733ddb07a57a2d73" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-dev/zipball/60196e12909624e168c482660c0f5795df67a6d7", - "reference": "60196e12909624e168c482660c0f5795df67a6d7", + "url": "https://api.github.com/repos/drupal/core-dev/zipball/4b5b8556711315e180d72830733ddb07a57a2d73", + "reference": "4b5b8556711315e180d72830733ddb07a57a2d73", "shasum": "" }, "require": { "behat/mink": "^1.8", + "behat/mink-goutte-driver": "^1.2", "behat/mink-selenium2-driver": "^1.4", - "composer/composer": "^2.2.12", + "composer/composer": "^2.0.2", "drupal/coder": "^8.3.10", "easyrdf/easyrdf": "^0.9 || ^1.0", + "fabpot/goutte": "^3.3", "friends-of-behat/mink-browserkit-driver": "^1.4", "instaclick/php-webdriver": "^1.4.1", "justinrainbow/json-schema": "^5.2", - "mikey179/vfsstream": "^1.6.11", + "mikey179/vfsstream": "^1.6.8", "phpspec/prophecy": "^1.12", "phpunit/phpunit": "^8.5.14 || ^9", "symfony/browser-kit": "^4.4", @@ -18808,22 +18342,81 @@ "symfony/filesystem": "^4.4", "symfony/finder": "^4.4", "symfony/lock": "^4.4", - "symfony/phpunit-bridge": "^5.4", - "symfony/var-dumper": "^5.4" + "symfony/phpunit-bridge": "^5.3.0", + "symfony/var-dumper": "^5.3.0" + }, + "conflict": { + "webflo/drupal-core-require-dev": "*" + }, + "type": "metapackage", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "require-dev dependencies from drupal/drupal; use in addition to drupal/core-recommended to run tests from drupal/core.", + "support": { + "source": "https://github.com/drupal/core-dev/tree/9.2.4" + }, + "time": "2021-06-01T16:41:50+00:00" + }, + { + "name": "fabpot/goutte", + "version": "v3.3.1", + "source": { + "type": "git", + "url": "https://github.com/FriendsOfPHP/Goutte.git", + "reference": "80a23b64f44d54dd571d114c473d9d7e9ed84ca5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/80a23b64f44d54dd571d114c473d9d7e9ed84ca5", + "reference": "80a23b64f44d54dd571d114c473d9d7e9ed84ca5", + "shasum": "" }, - "conflict": { - "webflo/drupal-core-require-dev": "*" + "require": { + "guzzlehttp/guzzle": "^6.0", + "php": ">=7.1.3", + "symfony/browser-kit": "^4.4|^5.0", + "symfony/css-selector": "^4.4|^5.0", + "symfony/dom-crawler": "^4.4|^5.0" + }, + "require-dev": { + "symfony/phpunit-bridge": "^5.0" + }, + "type": "application", + "extra": { + "branch-alias": { + "dev-master": "3.3-dev" + } + }, + "autoload": { + "psr-4": { + "Goutte\\": "Goutte" + }, + "exclude-from-classmap": [ + "Goutte/Tests" + ] }, - "type": "metapackage", "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + } + ], + "description": "A simple PHP Web Scraper", + "homepage": "https://github.com/FriendsOfPHP/Goutte", + "keywords": [ + "scraper" ], - "description": "require-dev dependencies from drupal/drupal; use in addition to drupal/core-recommended to run tests from drupal/core.", "support": { - "source": "https://github.com/drupal/core-dev/tree/9.5.0" + "issues": "https://github.com/FriendsOfPHP/Goutte/issues", + "source": "https://github.com/FriendsOfPHP/Goutte/tree/v3.3.1" }, - "time": "2022-07-27T00:23:55+00:00" + "time": "2020-11-01T09:30:18+00:00" }, { "name": "friends-of-behat/mink-browserkit-driver", @@ -18889,16 +18482,16 @@ }, { "name": "instaclick/php-webdriver", - "version": "1.4.16", + "version": "1.4.9", "source": { "type": "git", "url": "https://github.com/instaclick/php-webdriver.git", - "reference": "a39a1f6dc0f4ddd8b2438fa5eb1f67755730d606" + "reference": "961b12178cb71f8667afaf2f66ab3e000e060e1c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/a39a1f6dc0f4ddd8b2438fa5eb1f67755730d606", - "reference": "a39a1f6dc0f4ddd8b2438fa5eb1f67755730d606", + "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/961b12178cb71f8667afaf2f66ab3e000e060e1c", + "reference": "961b12178cb71f8667afaf2f66ab3e000e060e1c", "shasum": "" }, "require": { @@ -18906,8 +18499,8 @@ "php": ">=5.3.2" }, "require-dev": { - "phpunit/phpunit": "^8.5 || ^9.5", - "satooshi/php-coveralls": "^1.0 || ^2.0" + "phpunit/phpunit": "^4.8", + "satooshi/php-coveralls": "^1.0||^2.0" }, "type": "library", "extra": { @@ -18946,34 +18539,30 @@ ], "support": { "issues": "https://github.com/instaclick/php-webdriver/issues", - "source": "https://github.com/instaclick/php-webdriver/tree/1.4.16" + "source": "https://github.com/instaclick/php-webdriver/tree/1.4.9" }, - "time": "2022-10-28T13:30:35+00:00" + "time": "2021-06-28T22:23:20+00:00" }, { "name": "jean85/pretty-package-versions", - "version": "2.0.5", + "version": "1.6.0", "source": { "type": "git", "url": "https://github.com/Jean85/pretty-package-versions.git", - "reference": "ae547e455a3d8babd07b96966b17d7fd21d9c6af" + "reference": "1e0104b46f045868f11942aea058cd7186d6c303" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/ae547e455a3d8babd07b96966b17d7fd21d9c6af", - "reference": "ae547e455a3d8babd07b96966b17d7fd21d9c6af", + "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/1e0104b46f045868f11942aea058cd7186d6c303", + "reference": "1e0104b46f045868f11942aea058cd7186d6c303", "shasum": "" }, "require": { - "composer-runtime-api": "^2.0.0", - "php": "^7.1|^8.0" + "composer/package-versions-deprecated": "^1.8.0", + "php": "^7.0|^8.0" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^2.17", - "jean85/composer-provided-replaced-stub-package": "^1.0", - "phpstan/phpstan": "^0.12.66", - "phpunit/phpunit": "^7.5|^8.5|^9.4", - "vimeo/psalm": "^4.3" + "phpunit/phpunit": "^6.0|^8.5|^9.2" }, "type": "library", "extra": { @@ -18996,7 +18585,7 @@ "email": "alessandro.lai85@gmail.com" } ], - "description": "A library to get pretty versions strings of installed dependencies", + "description": "A wrapper for ocramius/package-versions to get pretty versions strings", "keywords": [ "composer", "package", @@ -19005,9 +18594,9 @@ ], "support": { "issues": "https://github.com/Jean85/pretty-package-versions/issues", - "source": "https://github.com/Jean85/pretty-package-versions/tree/2.0.5" + "source": "https://github.com/Jean85/pretty-package-versions/tree/1.6.0" }, - "time": "2021-10-08T21:21:46+00:00" + "time": "2021-02-04T16:20:16+00:00" }, { "name": "justinrainbow/json-schema", @@ -19081,32 +18670,32 @@ }, { "name": "mglaman/drupal-check", - "version": "1.4.0", + "version": "1.1.10", "source": { "type": "git", "url": "https://github.com/mglaman/drupal-check.git", - "reference": "e78eff7b10f79659c020a45baaa1f3035cb9a06a" + "reference": "b7bcfb2f766332a888bb6d550dedbb508a3a9d41" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mglaman/drupal-check/zipball/e78eff7b10f79659c020a45baaa1f3035cb9a06a", - "reference": "e78eff7b10f79659c020a45baaa1f3035cb9a06a", + "url": "https://api.github.com/repos/mglaman/drupal-check/zipball/b7bcfb2f766332a888bb6d550dedbb508a3a9d41", + "reference": "b7bcfb2f766332a888bb6d550dedbb508a3a9d41", "shasum": "" }, "require": { - "composer/xdebug-handler": "^1.1 || ^2.0.1 || ^3.0", + "composer/xdebug-handler": "^1.1 | ^2.0.1", "jean85/pretty-package-versions": "^1.5.0 || ^2.0.1", - "mglaman/phpstan-drupal": "^1.0.0", + "mglaman/phpstan-drupal": "^0.12.12", "nette/neon": "^3.1", "php": "^7.2.5|^8.0", - "phpstan/phpstan-deprecation-rules": "^1.0.0", - "symfony/console": "~3.4.5 || ^4.2|| ^5.0 || ^6.0", - "symfony/process": "~3.4.5 || ^4.2|| ^5.0 || ^6.0", + "phpstan/phpstan-deprecation-rules": "^0.12.6", + "symfony/console": "~3.2 || ~4.0", + "symfony/process": "~3.2 || ~4.0", "webflo/drupal-finder": "^1.1" }, "require-dev": { - "phpstan/phpstan": "^1.0.0", - "phpstan/phpstan-strict-rules": "^1.0.0", + "phpstan/phpstan": "^0.12.81", + "phpstan/phpstan-strict-rules": "^0.12.9", "squizlabs/php_codesniffer": "^3.4" }, "bin": [ @@ -19136,7 +18725,7 @@ "description": "CLI tool for running checks on a Drupal code base", "support": { "issues": "https://github.com/mglaman/drupal-check/issues", - "source": "https://github.com/mglaman/drupal-check/tree/1.4.0" + "source": "https://github.com/mglaman/drupal-check/tree/1.1.10" }, "funding": [ { @@ -19152,51 +18741,46 @@ "type": "tidelift" } ], - "time": "2022-04-29T02:26:28+00:00" + "time": "2021-07-22T03:52:26+00:00" }, { "name": "mglaman/phpstan-drupal", - "version": "1.1.25", + "version": "0.12.12", "source": { "type": "git", "url": "https://github.com/mglaman/phpstan-drupal.git", - "reference": "480245d5d0bd1858e01c43d738718dab85be0ad2" + "reference": "548fa7cb31239997863bf695f04a9fefd04c7288" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/480245d5d0bd1858e01c43d738718dab85be0ad2", - "reference": "480245d5d0bd1858e01c43d738718dab85be0ad2", + "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/548fa7cb31239997863bf695f04a9fefd04c7288", + "reference": "548fa7cb31239997863bf695f04a9fefd04c7288", "shasum": "" }, "require": { - "php": "^7.4 || ^8.0", - "phpstan/phpstan": "^1.6.0", - "symfony/finder": "~3.4.5 ||^4.2 || ^5.0 || ^6.0", - "symfony/yaml": "~3.4.5 || ^4.2|| ^5.0 || ^6.0", + "nette/finder": "^2.5", + "php": "^7.1 || ^8.0", + "phpstan/phpstan": "^0.12.65", + "symfony/yaml": "~3.4.5|^4.2", "webflo/drupal-finder": "^1.2" }, "require-dev": { - "behat/mink": "^1.8", "composer/installers": "^1.9", + "drupal/core-dev": "^8.8@alpha || ^9.0", "drupal/core-recommended": "^8.8@alpha || ^9.0", - "drush/drush": "^9.6 || ^10.0", - "phpstan/extension-installer": "^1.1", - "phpstan/phpstan-deprecation-rules": "^1.0", - "phpstan/phpstan-strict-rules": "^1.0", + "drush/drush": "^9.6 | ^10.0", + "phpstan/phpstan-deprecation-rules": "~0.12.0", + "phpstan/phpstan-strict-rules": "^0.12.0", "phpunit/phpunit": "^6.5 || ^7.5 || ^8.0 || ^9", - "slevomat/coding-standard": "^7.1", - "squizlabs/php_codesniffer": "^3.3", - "symfony/phpunit-bridge": "^3.4.3 || ^4.4 || ^5.4 || ^6.0" + "squizlabs/php_codesniffer": "^3.3" }, "suggest": { - "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.", - "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.", - "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan." + "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core." }, "type": "phpstan-extension", "extra": { "branch-alias": { - "dev-main": "1.0-dev" + "dev-master": "0.12-dev" }, "installer-paths": { "tests/fixtures/drupal/core": [ @@ -19217,14 +18801,16 @@ }, "phpstan": { "includes": [ - "extension.neon", - "rules.neon" + "extension.neon" ] } }, "autoload": { + "files": [ + "drupal-phpunit-hack.php" + ], "psr-4": { - "mglaman\\PHPStanDrupal\\": "src/" + "PHPStan\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -19240,7 +18826,7 @@ "description": "Drupal extension and rules for PHPStan", "support": { "issues": "https://github.com/mglaman/phpstan-drupal/issues", - "source": "https://github.com/mglaman/phpstan-drupal/tree/1.1.25" + "source": "https://github.com/mglaman/phpstan-drupal/tree/0.12.12" }, "funding": [ { @@ -19256,7 +18842,7 @@ "type": "tidelift" } ], - "time": "2022-07-18T17:17:55+00:00" + "time": "2021-07-21T20:46:24+00:00" }, { "name": "mikey179/vfsstream", @@ -19368,18 +18954,85 @@ ], "time": "2022-03-03T13:19:32+00:00" }, + { + "name": "nette/finder", + "version": "v2.5.2", + "source": { + "type": "git", + "url": "https://github.com/nette/finder.git", + "reference": "4ad2c298eb8c687dd0e74ae84206a4186eeaed50" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/finder/zipball/4ad2c298eb8c687dd0e74ae84206a4186eeaed50", + "reference": "4ad2c298eb8c687dd0e74ae84206a4186eeaed50", + "shasum": "" + }, + "require": { + "nette/utils": "^2.4 || ^3.0", + "php": ">=7.1" + }, + "conflict": { + "nette/nette": "<2.2" + }, + "require-dev": { + "nette/tester": "^2.0", + "phpstan/phpstan": "^0.12", + "tracy/tracy": "^2.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.5-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0", + "GPL-3.0" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "🔍 Nette Finder: find files and directories with an intuitive API.", + "homepage": "https://nette.org", + "keywords": [ + "filesystem", + "glob", + "iterator", + "nette" + ], + "support": { + "issues": "https://github.com/nette/finder/issues", + "source": "https://github.com/nette/finder/tree/v2.5.2" + }, + "time": "2020-01-03T20:35:40+00:00" + }, { "name": "nette/neon", - "version": "v3.3.3", + "version": "v3.2.2", "source": { "type": "git", "url": "https://github.com/nette/neon.git", - "reference": "22e384da162fab42961d48eb06c06d3ad0c11b95" + "reference": "e4ca6f4669121ca6876b1d048c612480e39a28d5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/neon/zipball/22e384da162fab42961d48eb06c06d3ad0c11b95", - "reference": "22e384da162fab42961d48eb06c06d3ad0c11b95", + "url": "https://api.github.com/repos/nette/neon/zipball/e4ca6f4669121ca6876b1d048c612480e39a28d5", + "reference": "e4ca6f4669121ca6876b1d048c612480e39a28d5", "shasum": "" }, "require": { @@ -19389,15 +19042,12 @@ "require-dev": { "nette/tester": "^2.0", "phpstan/phpstan": "^0.12", - "tracy/tracy": "^2.7" + "tracy/tracy": "^2.3" }, - "bin": [ - "bin/neon-lint" - ], "type": "library", "extra": { "branch-alias": { - "dev-master": "3.3-dev" + "dev-master": "3.2-dev" } }, "autoload": { @@ -19432,9 +19082,94 @@ ], "support": { "issues": "https://github.com/nette/neon/issues", - "source": "https://github.com/nette/neon/tree/v3.3.3" + "source": "https://github.com/nette/neon/tree/v3.2.2" + }, + "time": "2021-02-28T12:30:32+00:00" + }, + { + "name": "nette/utils", + "version": "v3.2.3", + "source": { + "type": "git", + "url": "https://github.com/nette/utils.git", + "reference": "5c36cc1ba9bb6abb8a9e425cf054e0c3fd5b9822" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nette/utils/zipball/5c36cc1ba9bb6abb8a9e425cf054e0c3fd5b9822", + "reference": "5c36cc1ba9bb6abb8a9e425cf054e0c3fd5b9822", + "shasum": "" + }, + "require": { + "php": ">=7.2 <8.1" + }, + "conflict": { + "nette/di": "<3.0.6" + }, + "require-dev": { + "nette/tester": "~2.0", + "phpstan/phpstan": "^0.12", + "tracy/tracy": "^2.3" + }, + "suggest": { + "ext-gd": "to use Image", + "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()", + "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()", + "ext-json": "to use Nette\\Utils\\Json", + "ext-mbstring": "to use Strings::lower() etc...", + "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()", + "ext-xml": "to use Strings::length() etc. when mbstring is not available" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.2-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" + ], + "authors": [ + { + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" + } + ], + "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.", + "homepage": "https://nette.org", + "keywords": [ + "array", + "core", + "datetime", + "images", + "json", + "nette", + "paginator", + "password", + "slugify", + "string", + "unicode", + "utf-8", + "utility", + "validation" + ], + "support": { + "issues": "https://github.com/nette/utils/issues", + "source": "https://github.com/nette/utils/tree/v3.2.3" }, - "time": "2022-03-10T02:04:26+00:00" + "time": "2021-08-16T21:05:00+00:00" }, { "name": "phar-io/manifest", @@ -19831,67 +19566,22 @@ }, "time": "2020-07-09T08:33:42+00:00" }, - { - "name": "phpstan/phpdoc-parser", - "version": "1.15.2", - "source": { - "type": "git", - "url": "https://github.com/phpstan/phpdoc-parser.git", - "reference": "5941477f100993652218928039d530b75a13a9ca" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/5941477f100993652218928039d530b75a13a9ca", - "reference": "5941477f100993652218928039d530b75a13a9ca", - "shasum": "" - }, - "require": { - "php": "^7.2 || ^8.0" - }, - "require-dev": { - "php-parallel-lint/php-parallel-lint": "^1.2", - "phpstan/extension-installer": "^1.0", - "phpstan/phpstan": "^1.5", - "phpstan/phpstan-phpunit": "^1.1", - "phpstan/phpstan-strict-rules": "^1.0", - "phpunit/phpunit": "^9.5", - "symfony/process": "^5.2" - }, - "type": "library", - "autoload": { - "psr-4": { - "PHPStan\\PhpDocParser\\": [ - "src/" - ] - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "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.15.2" - }, - "time": "2022-12-16T06:42:48+00:00" - }, { "name": "phpstan/phpstan", - "version": "1.9.4", + "version": "0.12.96", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "d03bccee595e2146b7c9d174486b84f4dc61b0f2" + "reference": "a98bdc51318f20fcae8c953d266f81a70254917f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/d03bccee595e2146b7c9d174486b84f4dc61b0f2", - "reference": "d03bccee595e2146b7c9d174486b84f4dc61b0f2", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/a98bdc51318f20fcae8c953d266f81a70254917f", + "reference": "a98bdc51318f20fcae8c953d266f81a70254917f", "shasum": "" }, "require": { - "php": "^7.2|^8.0" + "php": "^7.1|^8.0" }, "conflict": { "phpstan/phpstan-shim": "*" @@ -19901,6 +19591,11 @@ "phpstan.phar" ], "type": "library", + "extra": { + "branch-alias": { + "dev-master": "0.12-dev" + } + }, "autoload": { "files": [ "bootstrap.php" @@ -19911,13 +19606,9 @@ "MIT" ], "description": "PHPStan - PHP Static Analysis Tool", - "keywords": [ - "dev", - "static analysis" - ], "support": { "issues": "https://github.com/phpstan/phpstan/issues", - "source": "https://github.com/phpstan/phpstan/tree/1.9.4" + "source": "https://github.com/phpstan/phpstan/tree/0.12.96" }, "funding": [ { @@ -19928,39 +19619,46 @@ "url": "https://github.com/phpstan", "type": "github" }, + { + "url": "https://www.patreon.com/phpstan", + "type": "patreon" + }, { "url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan", "type": "tidelift" } ], - "time": "2022-12-17T13:33:52+00:00" + "time": "2021-08-21T11:55:13+00:00" }, { "name": "phpstan/phpstan-deprecation-rules", - "version": "1.1.1", + "version": "0.12.6", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan-deprecation-rules.git", - "reference": "2c6792eda026d9c474c14aa018aed312686714db" + "reference": "46dbd43c2db973d2876d6653e53f5c2cc3a01fbb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/2c6792eda026d9c474c14aa018aed312686714db", - "reference": "2c6792eda026d9c474c14aa018aed312686714db", + "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/46dbd43c2db973d2876d6653e53f5c2cc3a01fbb", + "reference": "46dbd43c2db973d2876d6653e53f5c2cc3a01fbb", "shasum": "" }, "require": { - "php": "^7.2 || ^8.0", - "phpstan/phpstan": "^1.9.3" + "php": "^7.1 || ^8.0", + "phpstan/phpstan": "^0.12.60" }, "require-dev": { + "phing/phing": "^2.16.3", "php-parallel-lint/php-parallel-lint": "^1.2", - "phpstan/phpstan-php-parser": "^1.1", - "phpstan/phpstan-phpunit": "^1.0", - "phpunit/phpunit": "^9.5" + "phpstan/phpstan-phpunit": "^0.12", + "phpunit/phpunit": "^7.5.20" }, "type": "phpstan-extension", "extra": { + "branch-alias": { + "dev-master": "0.12-dev" + }, "phpstan": { "includes": [ "rules.neon" @@ -19979,22 +19677,22 @@ "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.", "support": { "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues", - "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.1.1" + "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/0.12.6" }, - "time": "2022-12-13T14:26:20+00:00" + "time": "2020-12-13T10:20:54+00:00" }, { "name": "phpunit/php-code-coverage", - "version": "9.2.22", + "version": "9.2.20", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "e4bf60d2220b4baaa0572986b5d69870226b06df" + "reference": "af7463c955007de36db0c5e26d03e2f933c2e980" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/e4bf60d2220b4baaa0572986b5d69870226b06df", - "reference": "e4bf60d2220b4baaa0572986b5d69870226b06df", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/af7463c955007de36db0c5e26d03e2f933c2e980", + "reference": "af7463c955007de36db0c5e26d03e2f933c2e980", "shasum": "" }, "require": { @@ -20050,7 +19748,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", - "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.22" + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.20" }, "funding": [ { @@ -20058,7 +19756,7 @@ "type": "github" } ], - "time": "2022-12-18T16:40:55+00:00" + "time": "2022-12-13T07:49:28+00:00" }, { "name": "phpunit/php-file-iterator", @@ -21509,16 +21207,16 @@ }, { "name": "seld/phar-utils", - "version": "1.2.1", + "version": "1.2.0", "source": { "type": "git", "url": "https://github.com/Seldaek/phar-utils.git", - "reference": "ea2f4014f163c1be4c601b9b7bd6af81ba8d701c" + "reference": "9f3452c93ff423469c0d56450431562ca423dcee" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/ea2f4014f163c1be4c601b9b7bd6af81ba8d701c", - "reference": "ea2f4014f163c1be4c601b9b7bd6af81ba8d701c", + "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/9f3452c93ff423469c0d56450431562ca423dcee", + "reference": "9f3452c93ff423469c0d56450431562ca423dcee", "shasum": "" }, "require": { @@ -21551,35 +21249,34 @@ ], "support": { "issues": "https://github.com/Seldaek/phar-utils/issues", - "source": "https://github.com/Seldaek/phar-utils/tree/1.2.1" + "source": "https://github.com/Seldaek/phar-utils/tree/1.2.0" }, - "time": "2022-08-31T10:31:18+00:00" + "time": "2021-12-10T11:20:11+00:00" }, { "name": "sirbrillig/phpcs-variable-analysis", - "version": "v2.11.9", + "version": "v2.11.2", "source": { "type": "git", "url": "https://github.com/sirbrillig/phpcs-variable-analysis.git", - "reference": "62730888d225d55a613854b6a76fb1f9f57d1618" + "reference": "3fad28475bfbdbf8aa5c440f8a8f89824983d85e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sirbrillig/phpcs-variable-analysis/zipball/62730888d225d55a613854b6a76fb1f9f57d1618", - "reference": "62730888d225d55a613854b6a76fb1f9f57d1618", + "url": "https://api.github.com/repos/sirbrillig/phpcs-variable-analysis/zipball/3fad28475bfbdbf8aa5c440f8a8f89824983d85e", + "reference": "3fad28475bfbdbf8aa5c440f8a8f89824983d85e", "shasum": "" }, "require": { "php": ">=5.4.0", - "squizlabs/php_codesniffer": "^3.5.6" + "squizlabs/php_codesniffer": "^3.5" }, "require-dev": { "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", - "phpcsstandards/phpcsdevcs": "^1.1", - "phpstan/phpstan": "^1.7", - "phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6.5 || ^7.0 || ^8.0 || ^9.0", - "sirbrillig/phpcs-import-detection": "^1.1", - "vimeo/psalm": "^0.2 || ^0.3 || ^1.1 || ^4.24 || ^5.0@beta" + "limedeck/phpunit-detailed-printer": "^3.1 || ^4.0 || ^5.0", + "phpstan/phpstan": "^0.11.8", + "phpunit/phpunit": "^5.0 || ^6.5 || ^7.0 || ^8.0", + "sirbrillig/phpcs-import-detection": "^1.1" }, "type": "phpcodesniffer-standard", "autoload": { @@ -21602,94 +21299,25 @@ } ], "description": "A PHPCS sniff to detect problems with variables.", - "keywords": [ - "phpcs", - "static analysis" - ], "support": { "issues": "https://github.com/sirbrillig/phpcs-variable-analysis/issues", "source": "https://github.com/sirbrillig/phpcs-variable-analysis", "wiki": "https://github.com/sirbrillig/phpcs-variable-analysis/wiki" }, - "time": "2022-10-05T23:31:46+00:00" - }, - { - "name": "slevomat/coding-standard", - "version": "8.7.1", - "source": { - "type": "git", - "url": "https://github.com/slevomat/coding-standard.git", - "reference": "c51edb898bebd36aac70a190c6a41a7c056bb5b9" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/c51edb898bebd36aac70a190c6a41a7c056bb5b9", - "reference": "c51edb898bebd36aac70a190c6a41a7c056bb5b9", - "shasum": "" - }, - "require": { - "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7", - "php": "^7.2 || ^8.0", - "phpstan/phpdoc-parser": ">=1.15.0 <1.16.0", - "squizlabs/php_codesniffer": "^3.7.1" - }, - "require-dev": { - "phing/phing": "2.17.4", - "php-parallel-lint/php-parallel-lint": "1.3.2", - "phpstan/phpstan": "1.4.10|1.9.3", - "phpstan/phpstan-deprecation-rules": "1.1.0", - "phpstan/phpstan-phpunit": "1.0.0|1.3.1", - "phpstan/phpstan-strict-rules": "1.4.4", - "phpunit/phpunit": "7.5.20|8.5.21|9.5.27" - }, - "type": "phpcodesniffer-standard", - "extra": { - "branch-alias": { - "dev-master": "8.x-dev" - } - }, - "autoload": { - "psr-4": { - "SlevomatCodingStandard\\": "SlevomatCodingStandard" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "description": "Slevomat Coding Standard for PHP_CodeSniffer complements Consistence Coding Standard by providing sniffs with additional checks.", - "keywords": [ - "dev", - "phpcs" - ], - "support": { - "issues": "https://github.com/slevomat/coding-standard/issues", - "source": "https://github.com/slevomat/coding-standard/tree/8.7.1" - }, - "funding": [ - { - "url": "https://github.com/kukulich", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/slevomat/coding-standard", - "type": "tidelift" - } - ], - "time": "2022-12-14T08:49:18+00:00" + "time": "2021-07-06T23:45:17+00:00" }, { "name": "squizlabs/php_codesniffer", - "version": "3.7.1", + "version": "3.6.0", "source": { "type": "git", "url": "https://github.com/squizlabs/PHP_CodeSniffer.git", - "reference": "1359e176e9307e906dc3d890bcc9603ff6d90619" + "reference": "ffced0d2c8fa8e6cdc4d695a743271fab6c38625" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/1359e176e9307e906dc3d890bcc9603ff6d90619", - "reference": "1359e176e9307e906dc3d890bcc9603ff6d90619", + "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/ffced0d2c8fa8e6cdc4d695a743271fab6c38625", + "reference": "ffced0d2c8fa8e6cdc4d695a743271fab6c38625", "shasum": "" }, "require": { @@ -21732,7 +21360,7 @@ "source": "https://github.com/squizlabs/PHP_CodeSniffer", "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki" }, - "time": "2022-06-18T07:21:10+00:00" + "time": "2021-04-09T00:54:41+00:00" }, { "name": "symfony/browser-kit", @@ -21808,16 +21436,16 @@ }, { "name": "symfony/lock", - "version": "v4.4.46", + "version": "v4.4.27", "source": { "type": "git", "url": "https://github.com/symfony/lock.git", - "reference": "8b060dd4e10f05219698ceb3a4ad735b19c1be4f" + "reference": "6ca476d4ac992802f2a4043929f68f1818449486" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/lock/zipball/8b060dd4e10f05219698ceb3a4ad735b19c1be4f", - "reference": "8b060dd4e10f05219698ceb3a4ad735b19c1be4f", + "url": "https://api.github.com/repos/symfony/lock/zipball/6ca476d4ac992802f2a4043929f68f1818449486", + "reference": "6ca476d4ac992802f2a4043929f68f1818449486", "shasum": "" }, "require": { @@ -21826,10 +21454,10 @@ "symfony/polyfill-php80": "^1.16" }, "conflict": { - "doctrine/dbal": "<2.7" + "doctrine/dbal": "<2.6" }, "require-dev": { - "doctrine/dbal": "^2.7|^3.0", + "doctrine/dbal": "^2.6|^3.0", "predis/predis": "~1.0" }, "type": "library", @@ -21866,7 +21494,7 @@ "semaphore" ], "support": { - "source": "https://github.com/symfony/lock/tree/v4.4.46" + "source": "https://github.com/symfony/lock/tree/v4.4.27" }, "funding": [ { @@ -21882,31 +21510,31 @@ "type": "tidelift" } ], - "time": "2022-09-19T08:41:12+00:00" + "time": "2021-07-23T15:41:52+00:00" }, { "name": "symfony/phpunit-bridge", - "version": "v5.4.16", + "version": "v5.3.4", "source": { "type": "git", "url": "https://github.com/symfony/phpunit-bridge.git", - "reference": "5ea977eb24dd9926e2920078530985dc6942597c" + "reference": "bc368b765a651424b19f5759953ce2873e7d448b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/5ea977eb24dd9926e2920078530985dc6942597c", - "reference": "5ea977eb24dd9926e2920078530985dc6942597c", + "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/bc368b765a651424b19f5759953ce2873e7d448b", + "reference": "bc368b765a651424b19f5759953ce2873e7d448b", "shasum": "" }, "require": { "php": ">=7.1.3", - "symfony/deprecation-contracts": "^2.1|^3" + "symfony/deprecation-contracts": "^2.1" }, "conflict": { "phpunit/phpunit": "<7.5|9.1.2" }, "require-dev": { - "symfony/error-handler": "^4.4|^5.0|^6.0" + "symfony/error-handler": "^4.4|^5.0" }, "suggest": { "symfony/error-handler": "For tracking deprecated interfaces usages at runtime with DebugClassLoader" @@ -21949,7 +21577,7 @@ "description": "Provides utilities for PHPUnit, especially user deprecation notices management", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/phpunit-bridge/tree/v5.4.16" + "source": "https://github.com/symfony/phpunit-bridge/tree/v5.3.4" }, "funding": [ { @@ -21965,7 +21593,7 @@ "type": "tidelift" } ], - "time": "2022-11-14T09:59:19+00:00" + "time": "2021-07-15T21:37:44+00:00" }, { "name": "theseer/tokenizer", @@ -22018,14 +21646,7 @@ "time": "2021-07-28T10:34:58+00:00" } ], - "aliases": [ - { - "package": "islandora/chullo", - "version": "1.2.0.0", - "alias": "dev-dev", - "alias_normalized": "dev-dev" - } - ], + "aliases": [], "minimum-stability": "dev", "stability-flags": { "drupal/auto_entitylabel": 10, From d914d3202613ad5b079be32121ea25260fc52607 Mon Sep 17 00:00:00 2001 From: Tim Martin Date: Tue, 20 Dec 2022 15:48:37 -0700 Subject: [PATCH 09/10] re-applying chullo fixes --- codebase/composer.json | 24 +- codebase/composer.lock | 3525 +++++++++-------- ...efaults_post_update_uninstall_module.patch | 12 + 3 files changed, 1972 insertions(+), 1589 deletions(-) create mode 100644 codebase/patches/search_api_solr_defaults_post_update_uninstall_module.patch diff --git a/codebase/composer.json b/codebase/composer.json index d0bef3f12..79ba978a9 100644 --- a/codebase/composer.json +++ b/codebase/composer.json @@ -19,6 +19,10 @@ "type": "vcs", "url": "git@github.com:Islandora/islandora.git" }, + { + "type": "vcs", + "url": "git@github.com:Islandora/chullo.git" + }, { "type": "vcs", "url": "git@github.com:jhu-idc/islandora_defaults.git" @@ -96,18 +100,6 @@ } } }, - { - "type": "package", - "package": { - "name": "islandora/chullo", - "version": "dev-dev", - "source": { - "type": "git", - "url": "https://github.com/Islandora/chullo.git", - "reference": "d563d5e48ef9b15dcf45029277bbc2f6eeef2454" - } - } - }, { "type": "package", "package": { @@ -168,6 +160,7 @@ "imagesloaded/imagesloaded": "^4.1", "islandora-rdm/islandora_fits": "dev-8.x-1.x", "islandora/carapace": "dev-8.x-3.x", + "islandora/chullo": "1.2.0 as dev-dev", "jhu-idc/idc-ui-theme": "dev-main", "jhu-idc/idc_defaults": "dev-main", "jhu-idc/idc_export": "dev-main", @@ -267,14 +260,13 @@ "simplesamlphp/simplesamlphp": { "SimpleSAMLphp config": "patches/simplesaml_config.patch" }, - "drupal/title_length": { - "Node title length 1: Apply user config override": "patches/node_title_length_fix-hook-install.patch", - "Node title length 2: Taxonomy name length": "patches/node_title_length_termNameCharLength-3041979-8.patch" - }, "islandora/islandora": { "Routing definitions": "patches/islandora.routing.yml.patch", "Media Source Serivce": "patches/mediasourceservice.patch", "Media Source Controller": "patches/mediasourcecontroller.patch" + }, + "drupal/search_api_solr": { + "search_api_solr_defaults_post_update_uninstall_module": "patches/search_api_solr_defaults_post_update_uninstall_module.patch" } } } diff --git a/codebase/composer.lock b/codebase/composer.lock index 307551276..d33f9f200 100644 --- a/codebase/composer.lock +++ b/codebase/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": "f4d2410121b9ff99bc852a498aa5e460", + "content-hash": "81d89ce30a3e6e40021d650127fbf0c5", "packages": [ { "name": "alchemy/zippy", @@ -130,27 +130,78 @@ }, "time": "2019-12-24T22:41:47+00:00" }, + { + "name": "aws/aws-crt-php", + "version": "v1.0.2", + "source": { + "type": "git", + "url": "https://github.com/awslabs/aws-crt-php.git", + "reference": "3942776a8c99209908ee0b287746263725685732" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/3942776a8c99209908ee0b287746263725685732", + "reference": "3942776a8c99209908ee0b287746263725685732", + "shasum": "" + }, + "require": { + "php": ">=5.5" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35|^5.4.3" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "AWS SDK Common Runtime Team", + "email": "aws-sdk-common-runtime@amazon.com" + } + ], + "description": "AWS Common Runtime for PHP", + "homepage": "http://aws.amazon.com/sdkforphp", + "keywords": [ + "amazon", + "aws", + "crt", + "sdk" + ], + "support": { + "issues": "https://github.com/awslabs/aws-crt-php/issues", + "source": "https://github.com/awslabs/aws-crt-php/tree/v1.0.2" + }, + "time": "2021-09-03T22:57:30+00:00" + }, { "name": "aws/aws-sdk-php", - "version": "3.191.4", + "version": "3.254.0", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "63f015b49346cda8e4ac57cc33174744cc116654" + "reference": "9e07cddf9be6ab241c241344ca2e9cf33e32a22e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/63f015b49346cda8e4ac57cc33174744cc116654", - "reference": "63f015b49346cda8e4ac57cc33174744cc116654", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/9e07cddf9be6ab241c241344ca2e9cf33e32a22e", + "reference": "9e07cddf9be6ab241c241344ca2e9cf33e32a22e", "shasum": "" }, "require": { + "aws/aws-crt-php": "^1.0.2", "ext-json": "*", "ext-pcre": "*", "ext-simplexml": "*", - "guzzlehttp/guzzle": "^5.3.3|^6.2.1|^7.0", + "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5", "guzzlehttp/promises": "^1.4.0", - "guzzlehttp/psr7": "^1.7.0", + "guzzlehttp/psr7": "^1.8.5 || ^2.3", "mtdowling/jmespath.php": "^2.6", "php": ">=5.5" }, @@ -158,6 +209,8 @@ "andrewsville/php-token-reflection": "^1.4", "aws/aws-php-sns-message-validator": "~1.0", "behat/behat": "~3.0", + "composer/composer": "^1.10.22", + "dms/phpunit-arraysubset-asserts": "^0.4.0", "doctrine/cache": "~1.4", "ext-dom": "*", "ext-openssl": "*", @@ -165,10 +218,11 @@ "ext-sockets": "*", "nette/neon": "^2.3", "paragonie/random_compat": ">= 2", - "phpunit/phpunit": "^4.8.35|^5.4.3", + "phpunit/phpunit": "^4.8.35 || ^5.6.3 || ^9.5", "psr/cache": "^1.0", "psr/simple-cache": "^1.0", - "sebastian/comparator": "^1.2.3" + "sebastian/comparator": "^1.2.3 || ^4.0", + "yoast/phpunit-polyfills": "^1.0" }, "suggest": { "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications", @@ -216,9 +270,9 @@ "support": { "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80", "issues": "https://github.com/aws/aws-sdk-php/issues", - "source": "https://github.com/aws/aws-sdk-php/tree/3.191.4" + "source": "https://github.com/aws/aws-sdk-php/tree/3.254.0" }, - "time": "2021-08-25T18:15:26+00:00" + "time": "2022-12-19T19:23:23+00:00" }, { "name": "chi-teck/drupal-code-generator", @@ -294,16 +348,16 @@ }, { "name": "composer/installers", - "version": "v1.11.0", + "version": "v1.12.0", "source": { "type": "git", "url": "https://github.com/composer/installers.git", - "reference": "ae03311f45dfe194412081526be2e003960df74b" + "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/installers/zipball/ae03311f45dfe194412081526be2e003960df74b", - "reference": "ae03311f45dfe194412081526be2e003960df74b", + "url": "https://api.github.com/repos/composer/installers/zipball/d20a64ed3c94748397ff5973488761b22f6d3f19", + "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19", "shasum": "" }, "require": { @@ -402,6 +456,7 @@ "modx", "moodle", "osclass", + "pantheon", "phpbb", "piwik", "ppi", @@ -424,7 +479,7 @@ ], "support": { "issues": "https://github.com/composer/installers/issues", - "source": "https://github.com/composer/installers/tree/v1.11.0" + "source": "https://github.com/composer/installers/tree/v1.12.0" }, "funding": [ { @@ -440,7 +495,7 @@ "type": "tidelift" } ], - "time": "2021-04-28T06:42:17+00:00" + "time": "2021-09-13T08:19:44+00:00" }, { "name": "composer/semver", @@ -525,28 +580,29 @@ }, { "name": "consolidation/annotated-command", - "version": "4.2.4", + "version": "4.7.1", "source": { "type": "git", "url": "https://github.com/consolidation/annotated-command.git", - "reference": "ec297e05cb86557671c2d6cbb1bebba6c7ae2c60" + "reference": "fd263e3e9341d29758025b1a9b2878e3247525be" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/ec297e05cb86557671c2d6cbb1bebba6c7ae2c60", - "reference": "ec297e05cb86557671c2d6cbb1bebba6c7ae2c60", + "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/fd263e3e9341d29758025b1a9b2878e3247525be", + "reference": "fd263e3e9341d29758025b1a9b2878e3247525be", "shasum": "" }, "require": { "consolidation/output-formatters": "^4.1.1", "php": ">=7.1.3", - "psr/log": "^1|^2", - "symfony/console": "^4.4.8|~5.1.0", - "symfony/event-dispatcher": "^4.4.8|^5", - "symfony/finder": "^4.4.8|^5" + "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" }, "require-dev": { - "phpunit/phpunit": ">=7.5.20", + "composer-runtime-api": "^2.0", + "phpunit/phpunit": "^7.5.20 || ^8 || ^9", "squizlabs/php_codesniffer": "^3", "yoast/phpunit-polyfills": "^0.2.0" }, @@ -574,9 +630,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.2.4" + "source": "https://github.com/consolidation/annotated-command/tree/4.7.1" }, - "time": "2020-12-10T16:56:39+00:00" + "time": "2022-12-06T22:57:25+00:00" }, { "name": "consolidation/config", @@ -735,22 +791,22 @@ }, { "name": "consolidation/log", - "version": "2.0.2", + "version": "2.1.1", "source": { "type": "git", "url": "https://github.com/consolidation/log.git", - "reference": "82a2aaaa621a7b976e50a745a8d249d5085ee2b1" + "reference": "3ad08dc57e8aff9400111bad36beb0ed387fe6a9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/log/zipball/82a2aaaa621a7b976e50a745a8d249d5085ee2b1", - "reference": "82a2aaaa621a7b976e50a745a8d249d5085ee2b1", + "url": "https://api.github.com/repos/consolidation/log/zipball/3ad08dc57e8aff9400111bad36beb0ed387fe6a9", + "reference": "3ad08dc57e8aff9400111bad36beb0ed387fe6a9", "shasum": "" }, "require": { "php": ">=7.1.3", - "psr/log": "^1.0", - "symfony/console": "^4|^5" + "psr/log": "^1 || ^2", + "symfony/console": "^4 || ^5 || ^6" }, "require-dev": { "phpunit/phpunit": ">=7.5.20", @@ -781,36 +837,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/2.0.2" + "source": "https://github.com/consolidation/log/tree/2.1.1" }, - "time": "2020-12-10T16:26:23+00:00" + "time": "2022-02-24T04:27:32+00:00" }, { "name": "consolidation/output-formatters", - "version": "4.1.2", + "version": "4.2.3", "source": { "type": "git", "url": "https://github.com/consolidation/output-formatters.git", - "reference": "5821e6ae076bf690058a4de6c94dce97398a69c9" + "reference": "cbb50cc86775f14972003f797b61e232788bee1f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/5821e6ae076bf690058a4de6c94dce97398a69c9", - "reference": "5821e6ae076bf690058a4de6c94dce97398a69c9", + "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/cbb50cc86775f14972003f797b61e232788bee1f", + "reference": "cbb50cc86775f14972003f797b61e232788bee1f", "shasum": "" }, "require": { - "dflydev/dot-access-data": "^1.1.0", + "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3", "php": ">=7.1.3", - "symfony/console": "^4|^5", - "symfony/finder": "^4|^5" + "symfony/console": "^4|^5|^6", + "symfony/finder": "^4|^5|^6" }, "require-dev": { "php-coveralls/php-coveralls": "^2.4.2", "phpunit/phpunit": ">=7", "squizlabs/php_codesniffer": "^3", - "symfony/var-dumper": "^4", - "symfony/yaml": "^4", + "symfony/var-dumper": "^4|^5|^6", + "symfony/yaml": "^4|^5|^6", "yoast/phpunit-polyfills": "^0.2.0" }, "suggest": { @@ -840,57 +896,55 @@ "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.1.2" + "source": "https://github.com/consolidation/output-formatters/tree/4.2.3" }, - "time": "2020-12-12T19:04:59+00:00" + "time": "2022-10-17T04:01:40+00:00" }, { "name": "consolidation/robo", - "version": "2.2.2", + "version": "3.0.11", "source": { "type": "git", - "url": "https://github.com/consolidation/Robo.git", - "reference": "b365df174d9cfb0f5814e4f3275a1c558b17bc4c" + "url": "https://github.com/consolidation/robo.git", + "reference": "820fa0f164f77887e268b7dbfb2283416c7334c1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/Robo/zipball/b365df174d9cfb0f5814e4f3275a1c558b17bc4c", - "reference": "b365df174d9cfb0f5814e4f3275a1c558b17bc4c", + "url": "https://api.github.com/repos/consolidation/robo/zipball/820fa0f164f77887e268b7dbfb2283416c7334c1", + "reference": "820fa0f164f77887e268b7dbfb2283416c7334c1", "shasum": "" }, "require": { - "consolidation/annotated-command": "^4.2.1", - "consolidation/config": "^1.2.1|^2", - "consolidation/log": "^1.1.1|^2.0.1", - "consolidation/output-formatters": "^4.1.1", - "consolidation/self-update": "^1.2", - "league/container": "^2.4.1", + "consolidation/annotated-command": "^4.3", + "consolidation/config": "^1.2.1 || ^2.0.1", + "consolidation/log": "^1.1.1 || ^2.0.2", + "consolidation/output-formatters": "^4.1.2", + "consolidation/self-update": "^2.0", + "league/container": "^3.3.1 || ^4.0", "php": ">=7.1.3", - "symfony/console": "^4.4.11|^5", - "symfony/event-dispatcher": "^4.4.11|^5", - "symfony/filesystem": "^4.4.11|^5", - "symfony/finder": "^4.4.11|^5", - "symfony/process": "^4.4.11|^5", - "symfony/yaml": "^4.0 || ^5.0" + "symfony/console": "^4.4.19 || ^5 || ^6", + "symfony/event-dispatcher": "^4.4.19 || ^5 || ^6", + "symfony/filesystem": "^4.4.9 || ^5 || ^6", + "symfony/finder": "^4.4.9 || ^5 || ^6", + "symfony/process": "^4.4.9 || ^5 || ^6", + "symfony/yaml": "^4.4 || ^5 || ^6" }, "conflict": { "codegyre/robo": "*" }, "require-dev": { - "g1a/composer-test-scenarios": "^3", "natxet/cssmin": "3.0.4", "patchwork/jsqueeze": "^2", "pear/archive_tar": "^1.4.4", - "php-coveralls/php-coveralls": "^2.2", - "phpdocumentor/reflection-docblock": "^4.3.2", - "phpunit/phpunit": "^6.5.14", - "squizlabs/php_codesniffer": "^3" + "phpunit/phpunit": "^7.5.20 || ^8", + "squizlabs/php_codesniffer": "^3.6", + "yoast/phpunit-polyfills": "^0.2.0" }, "suggest": { - "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch", "natxet/cssmin": "For minifying CSS files in taskMinify", "patchwork/jsqueeze": "For minifying JS files in taskMinify", - "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively." + "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.", + "totten/lurkerlite": "For monitoring filesystem changes in taskWatch" }, "bin": [ "robo" @@ -940,29 +994,30 @@ ], "description": "Modern task runner", "support": { - "issues": "https://github.com/consolidation/Robo/issues", - "source": "https://github.com/consolidation/Robo/tree/2.2.2" + "issues": "https://github.com/consolidation/robo/issues", + "source": "https://github.com/consolidation/robo/tree/3.0.11" }, - "time": "2020-12-18T22:09:18+00:00" + "time": "2022-12-07T15:18:26+00:00" }, { "name": "consolidation/self-update", - "version": "1.2.0", + "version": "2.0.5", "source": { "type": "git", "url": "https://github.com/consolidation/self-update.git", - "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4" + "reference": "8a64bdd8daf5faa8e85f56534dd99caf928164b3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/self-update/zipball/dba6b2c0708f20fa3ba8008a2353b637578849b4", - "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4", + "url": "https://api.github.com/repos/consolidation/self-update/zipball/8a64bdd8daf5faa8e85f56534dd99caf928164b3", + "reference": "8a64bdd8daf5faa8e85f56534dd99caf928164b3", "shasum": "" }, "require": { + "composer/semver": "^3.2", "php": ">=5.5.0", - "symfony/console": "^2.8|^3|^4|^5", - "symfony/filesystem": "^2.5|^3|^4|^5" + "symfony/console": "^2.8 || ^3 || ^4 || ^5 || ^6", + "symfony/filesystem": "^2.5 || ^3 || ^4 || ^5 || ^6" }, "bin": [ "scripts/release" @@ -970,7 +1025,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.x-dev" + "dev-main": "2.x-dev" } }, "autoload": { @@ -995,28 +1050,30 @@ "description": "Provides a self:update command for Symfony Console applications.", "support": { "issues": "https://github.com/consolidation/self-update/issues", - "source": "https://github.com/consolidation/self-update/tree/1.2.0" + "source": "https://github.com/consolidation/self-update/tree/2.0.5" }, - "time": "2020-04-13T02:49:20+00:00" + "time": "2022-02-09T22:44:24+00:00" }, { "name": "consolidation/site-alias", - "version": "3.1.0", + "version": "3.1.7", "source": { "type": "git", "url": "https://github.com/consolidation/site-alias.git", - "reference": "9ed3c590be9fcf9fea69c73456c2fd4b27f5204c" + "reference": "3b6519592c7e8557423f935806cd73adf69ed6c7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/site-alias/zipball/9ed3c590be9fcf9fea69c73456c2fd4b27f5204c", - "reference": "9ed3c590be9fcf9fea69c73456c2fd4b27f5204c", + "url": "https://api.github.com/repos/consolidation/site-alias/zipball/3b6519592c7e8557423f935806cd73adf69ed6c7", + "reference": "3b6519592c7e8557423f935806cd73adf69ed6c7", "shasum": "" }, "require": { - "consolidation/config": "^1.2.1|^2", + "consolidation/config": "^1.2.1 || ^2", "php": ">=5.5.0", - "symfony/finder": "~2.3|^3|^4.4|^5" + "symfony/filesystem": "^4.4 || ^5.4 || ^6", + "symfony/finder": "~2.3 || ^3 || ^4.4 || ^5 || ^6", + "webmozart/path-util": "^2.3" }, "require-dev": { "php-coveralls/php-coveralls": "^2.4.2", @@ -1053,33 +1110,33 @@ "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/3.1.0" + "source": "https://github.com/consolidation/site-alias/tree/3.1.7" }, - "time": "2021-02-20T20:03:10+00:00" + "time": "2022-10-15T01:21:09+00:00" }, { "name": "consolidation/site-process", - "version": "4.1.0", + "version": "4.2.1", "source": { "type": "git", "url": "https://github.com/consolidation/site-process.git", - "reference": "ef57711d7049f7606ce936ded16ad93f1ad7f02c" + "reference": "ee3bf69001694b2117cc2f96c2ef70d8d45f1234" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/site-process/zipball/ef57711d7049f7606ce936ded16ad93f1ad7f02c", - "reference": "ef57711d7049f7606ce936ded16ad93f1ad7f02c", + "url": "https://api.github.com/repos/consolidation/site-process/zipball/ee3bf69001694b2117cc2f96c2ef70d8d45f1234", + "reference": "ee3bf69001694b2117cc2f96c2ef70d8d45f1234", "shasum": "" }, "require": { - "consolidation/config": "^1.2.1|^2", - "consolidation/site-alias": "^3", + "consolidation/config": "^1.2.1 || ^2", + "consolidation/site-alias": "^3 || ^4", "php": ">=7.1.3", - "symfony/console": "^2.8.52|^3|^4.4|^5", - "symfony/process": "^4.3.4" + "symfony/console": "^2.8.52 || ^3 || ^4.4 || ^5", + "symfony/process": "^4.3.4 || ^5" }, "require-dev": { - "phpunit/phpunit": "^7.5.20|^8.5.14", + "phpunit/phpunit": "^7.5.20 || ^8.5.14", "squizlabs/php_codesniffer": "^3", "yoast/phpunit-polyfills": "^0.2.0" }, @@ -1111,58 +1168,22 @@ "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/4.1.0" - }, - "time": "2021-02-21T02:53:33+00:00" - }, - { - "name": "container-interop/container-interop", - "version": "1.2.0", - "source": { - "type": "git", - "url": "https://github.com/container-interop/container-interop.git", - "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8", - "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8", - "shasum": "" - }, - "require": { - "psr/container": "^1.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Interop\\Container\\": "src/Interop/Container/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "description": "Promoting the interoperability of container objects (DIC, SL, etc.)", - "homepage": "https://github.com/container-interop/container-interop", - "support": { - "issues": "https://github.com/container-interop/container-interop/issues", - "source": "https://github.com/container-interop/container-interop/tree/master" + "source": "https://github.com/consolidation/site-process/tree/4.2.1" }, - "abandoned": "psr/container", - "time": "2017-02-14T19:40:03+00:00" + "time": "2022-10-18T13:19:35+00:00" }, { "name": "cweagans/composer-patches", - "version": "1.7.1", + "version": "1.7.2", "source": { "type": "git", "url": "https://github.com/cweagans/composer-patches.git", - "reference": "9888dcc74993c030b75f3dd548bb5e20cdbd740c" + "reference": "e9969cfc0796e6dea9b4e52f77f18e1065212871" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/9888dcc74993c030b75f3dd548bb5e20cdbd740c", - "reference": "9888dcc74993c030b75f3dd548bb5e20cdbd740c", + "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e9969cfc0796e6dea9b4e52f77f18e1065212871", + "reference": "e9969cfc0796e6dea9b4e52f77f18e1065212871", "shasum": "" }, "require": { @@ -1195,9 +1216,9 @@ "description": "Provides a way to patch Composer packages.", "support": { "issues": "https://github.com/cweagans/composer-patches/issues", - "source": "https://github.com/cweagans/composer-patches/tree/1.7.1" + "source": "https://github.com/cweagans/composer-patches/tree/1.7.2" }, - "time": "2021-06-08T15:12:46+00:00" + "time": "2022-01-25T19:21:20+00:00" }, { "name": "dflydev/dot-access-configuration", @@ -1328,16 +1349,16 @@ }, { "name": "dflydev/placeholder-resolver", - "version": "v1.0.2", + "version": "v1.0.3", "source": { "type": "git", "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git", - "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356" + "reference": "d0161b4be1e15838327b01b21d0149f382d69906" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356", - "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356", + "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/d0161b4be1e15838327b01b21d0149f382d69906", + "reference": "d0161b4be1e15838327b01b21d0149f382d69906", "shasum": "" }, "require": { @@ -1378,9 +1399,9 @@ ], "support": { "issues": "https://github.com/dflydev/dflydev-placeholder-resolver/issues", - "source": "https://github.com/dflydev/dflydev-placeholder-resolver/tree/v1.0.2" + "source": "https://github.com/dflydev/dflydev-placeholder-resolver/tree/v1.0.3" }, - "time": "2012-10-28T21:08:28+00:00" + "time": "2021-12-03T16:48:58+00:00" }, { "name": "doctrine/annotations", @@ -1727,34 +1748,35 @@ }, { "name": "doctrine/dbal", - "version": "2.13.2", + "version": "2.13.9", "source": { "type": "git", "url": "https://github.com/doctrine/dbal.git", - "reference": "8dd39d2ead4409ce652fd4f02621060f009ea5e4" + "reference": "c480849ca3ad6706a39c970cdfe6888fa8a058b8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/dbal/zipball/8dd39d2ead4409ce652fd4f02621060f009ea5e4", - "reference": "8dd39d2ead4409ce652fd4f02621060f009ea5e4", + "url": "https://api.github.com/repos/doctrine/dbal/zipball/c480849ca3ad6706a39c970cdfe6888fa8a058b8", + "reference": "c480849ca3ad6706a39c970cdfe6888fa8a058b8", "shasum": "" }, "require": { "doctrine/cache": "^1.0|^2.0", - "doctrine/deprecations": "^0.5.3", + "doctrine/deprecations": "^0.5.3|^1", "doctrine/event-manager": "^1.0", "ext-pdo": "*", "php": "^7.1 || ^8" }, "require-dev": { "doctrine/coding-standard": "9.0.0", - "jetbrains/phpstorm-stubs": "2020.2", - "phpstan/phpstan": "0.12.81", - "phpunit/phpunit": "^7.5.20|^8.5|9.5.5", - "squizlabs/php_codesniffer": "3.6.0", + "jetbrains/phpstorm-stubs": "2021.1", + "phpstan/phpstan": "1.4.6", + "phpunit/phpunit": "^7.5.20|^8.5|9.5.16", + "psalm/plugin-phpunit": "0.16.1", + "squizlabs/php_codesniffer": "3.6.2", "symfony/cache": "^4.4", "symfony/console": "^2.0.5|^3.0|^4.0|^5.0", - "vimeo/psalm": "4.6.4" + "vimeo/psalm": "4.22.0" }, "suggest": { "symfony/console": "For helpful console commands such as SQL execution and import of files." @@ -1815,7 +1837,7 @@ ], "support": { "issues": "https://github.com/doctrine/dbal/issues", - "source": "https://github.com/doctrine/dbal/tree/2.13.2" + "source": "https://github.com/doctrine/dbal/tree/2.13.9" }, "funding": [ { @@ -1831,29 +1853,29 @@ "type": "tidelift" } ], - "time": "2021-06-18T21:48:39+00:00" + "time": "2022-05-02T20:28:55+00:00" }, { "name": "doctrine/deprecations", - "version": "v0.5.3", + "version": "v1.0.0", "source": { "type": "git", "url": "https://github.com/doctrine/deprecations.git", - "reference": "9504165960a1f83cc1480e2be1dd0a0478561314" + "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314", - "reference": "9504165960a1f83cc1480e2be1dd0a0478561314", + "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de", + "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de", "shasum": "" }, "require": { "php": "^7.1|^8.0" }, "require-dev": { - "doctrine/coding-standard": "^6.0|^7.0|^8.0", - "phpunit/phpunit": "^7.0|^8.0|^9.0", - "psr/log": "^1.0" + "doctrine/coding-standard": "^9", + "phpunit/phpunit": "^7.5|^8.5|^9.5", + "psr/log": "^1|^2|^3" }, "suggest": { "psr/log": "Allows logging deprecations via PSR-3 logger implementation" @@ -1872,9 +1894,9 @@ "homepage": "https://www.doctrine-project.org/", "support": { "issues": "https://github.com/doctrine/deprecations/issues", - "source": "https://github.com/doctrine/deprecations/tree/v0.5.3" + "source": "https://github.com/doctrine/deprecations/tree/v1.0.0" }, - "time": "2021-03-21T12:59:47+00:00" + "time": "2022-05-02T15:47:09+00:00" }, { "name": "doctrine/event-manager", @@ -2538,29 +2560,32 @@ }, { "name": "drupal/auto_entitylabel", - "version": "3.0.0-beta4", + "version": "3.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/auto_entitylabel.git", - "reference": "8.x-3.0-beta4" + "reference": "8.x-3.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/auto_entitylabel-8.x-3.0-beta4.zip", - "reference": "8.x-3.0-beta4", - "shasum": "916befd4ce95b5d73de48ac1b105cc33e9f7821f" + "url": "https://ftp.drupal.org/files/projects/auto_entitylabel-8.x-3.0.zip", + "reference": "8.x-3.0", + "shasum": "8dd54d4b677f2c7259a15afd7b71d0d1b6f6b4a6" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": "^9.3 || ^10" + }, + "require-dev": { + "drupal/token": "^1.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.0-beta4", - "datestamp": "1609349103", + "version": "8.x-3.0", + "datestamp": "1671545557", "security-coverage": { - "status": "not-covered", - "message": "Beta releases are not covered by Drupal security advisories." + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, @@ -2569,18 +2594,6 @@ "GPL-2.0-or-later" ], "authors": [ - { - "name": "Pravin Ajaaz", - "homepage": "https://www.drupal.org/user/2910049" - }, - { - "name": "RenatoG", - "homepage": "https://www.drupal.org/user/3326031" - }, - { - "name": "VladimirAus", - "homepage": "https://www.drupal.org/user/673120" - }, { "name": "bforchhammer", "homepage": "https://www.drupal.org/user/216396" @@ -2593,9 +2606,25 @@ "name": "diqidoq", "homepage": "https://www.drupal.org/user/1001934" }, + { + "name": "japerry", + "homepage": "https://www.drupal.org/user/45640" + }, + { + "name": "Pravin Ajaaz", + "homepage": "https://www.drupal.org/user/2910049" + }, { "name": "purushotam.rai", "homepage": "https://www.drupal.org/user/3193859" + }, + { + "name": "RenatoG", + "homepage": "https://www.drupal.org/user/3326031" + }, + { + "name": "VladimirAus", + "homepage": "https://www.drupal.org/user/673120" } ], "description": "Allows hiding of entity label fields and automatic label creation.", @@ -2607,26 +2636,26 @@ }, { "name": "drupal/captcha", - "version": "1.2.0", + "version": "1.8.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/captcha.git", - "reference": "8.x-1.2" + "reference": "8.x-1.8" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/captcha-8.x-1.2.zip", - "reference": "8.x-1.2", - "shasum": "e35a2ce42b652f833d140f7571d1eef0e06b0edc" + "url": "https://ftp.drupal.org/files/projects/captcha-8.x-1.8.zip", + "reference": "8.x-1.8", + "shasum": "1d02df92de72616e75c9006549ae4d4c4dcbb5f5" }, "require": { - "drupal/core": "^8.8 || ^9" + "drupal/core": ">=8.9 <11" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.2", - "datestamp": "1619673374", + "version": "8.x-1.8", + "datestamp": "1668593425", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2739,16 +2768,16 @@ }, { "name": "drupal/console", - "version": "1.9.7", + "version": "1.9.9", "source": { "type": "git", "url": "https://github.com/hechoendrupal/drupal-console.git", - "reference": "90053d30f52427edb4e4941a9063acb65b5a2c1e" + "reference": "3756318780483910250e4ba78207cf960bde4545" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/90053d30f52427edb4e4941a9063acb65b5a2c1e", - "reference": "90053d30f52427edb4e4941a9063acb65b5a2c1e", + "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/3756318780483910250e4ba78207cf960bde4545", + "reference": "3756318780483910250e4ba78207cf960bde4545", "shasum": "" }, "require": { @@ -2762,6 +2791,7 @@ "psy/psysh": "0.6.* || ~0.8", "symfony/css-selector": "~3.0|~4.0", "symfony/dom-crawler": "~3.0|~4.0", + "symfony/expression-language": "~3.0|~4.0", "symfony/http-foundation": "~3.0|~4.0" }, "suggest": { @@ -2818,7 +2848,7 @@ "docs": "https://docs.drupalconsole.com/", "forum": "https://gitter.im/hechoendrupal/DrupalConsole", "issues": "https://github.com/hechoendrupal/drupal-console/issues", - "source": "https://github.com/hechoendrupal/drupal-console/tree/1.9.7" + "source": "https://github.com/hechoendrupal/drupal-console/tree/1.9.9" }, "funding": [ { @@ -2826,7 +2856,7 @@ "type": "open_collective" } ], - "time": "2020-11-30T02:09:53+00:00" + "time": "2022-09-17T20:50:37+00:00" }, { "name": "drupal/console-core", @@ -3068,26 +3098,26 @@ }, { "name": "drupal/contact_block", - "version": "1.5.0", + "version": "1.7.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/contact_block.git", - "reference": "8.x-1.5" + "reference": "8.x-1.7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/contact_block-8.x-1.5.zip", - "reference": "8.x-1.5", - "shasum": "5a5d7febd240fc3673ca755d475bfd4ad4f5a8f3" + "url": "https://ftp.drupal.org/files/projects/contact_block-8.x-1.7.zip", + "reference": "8.x-1.7", + "shasum": "1ccc790294dad3dfcbe90e465b994fa4b48dc13e" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": "^8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.5", - "datestamp": "1587219506", + "version": "8.x-1.7", + "datestamp": "1665911371", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3096,7 +3126,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { @@ -3170,27 +3200,27 @@ }, { "name": "drupal/contact_storage", - "version": "1.1.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/contact_storage.git", - "reference": "8.x-1.1" + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/contact_storage-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "3560a3eb06daa5f5156c0986989a0b5deadd9de1" + "url": "https://ftp.drupal.org/files/projects/contact_storage-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "719dad5a991aa32e14c9bcb7b9dc76830e2331df" }, "require": { - "drupal/core": "^8.7.7 || ^9", + "drupal/core": "^9.1 || ^10", "drupal/token": "^1.6" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.1", - "datestamp": "1591811491", + "version": "8.x-1.3", + "datestamp": "1667651867", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3231,28 +3261,28 @@ }, { "name": "drupal/content_browser", - "version": "1.0.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/content_browser.git", - "reference": "8.x-1.0" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/content_browser-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "a947716ca56ebefaca2790c6ca4be8f657036e3a" + "url": "https://ftp.drupal.org/files/projects/content_browser-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "a920fcae412af83f64590b484e428cead04fd943" }, "require": { - "drupal/core": "^8 || ^9", + "drupal/core": "^8 || ^9 || ^10", "drupal/entity_browser": "*", "drupal/entity_embed": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0", - "datestamp": "1590339486", + "version": "8.x-1.1", + "datestamp": "1670990746", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3736,16 +3766,16 @@ }, { "name": "drupal/core-vendor-hardening", - "version": "9.2.4", + "version": "9.5.0", "source": { "type": "git", "url": "https://github.com/drupal/core-vendor-hardening.git", - "reference": "f9eaafd58792fef38037979c2344a9216a93cc7e" + "reference": "8293a845c64f1faad0d44955611f8cce69320274" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-vendor-hardening/zipball/f9eaafd58792fef38037979c2344a9216a93cc7e", - "reference": "f9eaafd58792fef38037979c2344a9216a93cc7e", + "url": "https://api.github.com/repos/drupal/core-vendor-hardening/zipball/8293a845c64f1faad0d44955611f8cce69320274", + "reference": "8293a845c64f1faad0d44955611f8cce69320274", "shasum": "" }, "require": { @@ -3771,23 +3801,23 @@ "drupal" ], "support": { - "source": "https://github.com/drupal/core-vendor-hardening/tree/9.2.4" + "source": "https://github.com/drupal/core-vendor-hardening/tree/9.5.0" }, - "time": "2021-04-22T15:46:23+00:00" + "time": "2022-12-07T11:22:43+00:00" }, { "name": "drupal/csv_serialization", - "version": "2.0.0", + "version": "2.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/csv_serialization.git", - "reference": "8.x-2.0" + "reference": "8.x-2.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/csv_serialization-8.x-2.0.zip", - "reference": "8.x-2.0", - "shasum": "3531383a6926a4ed761be56553997c2a937449ac" + "url": "https://ftp.drupal.org/files/projects/csv_serialization-8.x-2.1.zip", + "reference": "8.x-2.1", + "shasum": "10b8629a5808ed1ecf358d5ca7054d6c14a476d4" }, "require": { "drupal/core": "^8 || ^9", @@ -3800,8 +3830,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.0", - "datestamp": "1612801962", + "version": "8.x-2.1", + "datestamp": "1655054417", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3827,17 +3857,17 @@ }, { "name": "drupal/devel", - "version": "4.1.1", + "version": "4.2.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/devel.git", - "reference": "4.1.1" + "reference": "4.2.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/devel-4.1.1.zip", - "reference": "4.1.1", - "shasum": "88e5d49dda26a3136291ecd97bc6c8e897b24198" + "url": "https://ftp.drupal.org/files/projects/devel-4.2.1.zip", + "reference": "4.2.1", + "shasum": "aa08379bad81cb2e604ee9a0b9e2aabd86fae13f" }, "require": { "doctrine/common": "^2.7", @@ -3856,8 +3886,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "4.1.1", - "datestamp": "1631968537", + "version": "4.2.1", + "datestamp": "1664317444", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3893,26 +3923,26 @@ }, { "name": "drupal/embed", - "version": "1.4.0", + "version": "1.6.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/embed.git", - "reference": "8.x-1.4" + "reference": "8.x-1.6" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "09a2bda039bfbb3fff01c91964384bf3d924b8c5" + "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.6.zip", + "reference": "8.x-1.6", + "shasum": "6d2964775c3228d122cd61904786b3640fa83045" }, "require": { - "drupal/core": "^8.7.7 || ^9" + "drupal/core": "^9.3 | ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.4", - "datestamp": "1590176831", + "version": "8.x-1.6", + "datestamp": "1661298150", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3957,20 +3987,20 @@ }, { "name": "drupal/entity_browser", - "version": "2.6.0", + "version": "2.8.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/entity_browser.git", - "reference": "8.x-2.6" + "reference": "8.x-2.8" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.6.zip", - "reference": "8.x-2.6", - "shasum": "95cad4ce9620ccb4f02afa0e8b8bbf7c73fc5aac" + "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.8.zip", + "reference": "8.x-2.8", + "shasum": "151433fb7681f3e844010072285a374a5e46cf2a" }, "require": { - "drupal/core": "^8.8 || ^9" + "drupal/core": "^9.2 || ^10" }, "require-dev": { "drupal/embed": "~1.0", @@ -3979,13 +4009,13 @@ "drupal/entityqueue": "1.x-dev", "drupal/inline_entity_form": "1.x-dev", "drupal/paragraphs": "1.x-dev", - "drupal/token": "~1.0" + "drupal/token": "1.x-dev" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.6", - "datestamp": "1624401306", + "version": "8.x-2.8", + "datestamp": "1658509699", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4047,21 +4077,21 @@ }, { "name": "drupal/entity_embed", - "version": "1.2.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/entity_embed.git", - "reference": "8.x-1.2" + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/entity_embed-8.x-1.2.zip", - "reference": "8.x-1.2", - "shasum": "e1d4c9d6931984836c1ea550c32ae40f42367525" + "url": "https://ftp.drupal.org/files/projects/entity_embed-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "37781222e0b31a0319f0b2e67ef345f2033435e7" }, "require": { - "drupal/core": "^8.8 || ^9", - "drupal/embed": "^1.3" + "drupal/core": "^9.3", + "drupal/embed": "^1.5" }, "require-dev": { "drupal/entity_browser": "^2.2" @@ -4069,8 +4099,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.2", - "datestamp": "1631726164", + "version": "8.x-1.3", + "datestamp": "1666275539", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4079,7 +4109,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { @@ -4118,9 +4148,7 @@ "description": "Allows any entity to be embedded within a text area using a WYSIWYG editor.", "homepage": "https://www.drupal.org/project/entity_embed", "support": { - "source": "https://git.drupalcode.org/project/entity_embed", - "issues": "https://www.drupal.org/project/issues/entity_embed", - "irc": "irc://irc.freenode.org/drupal-media" + "source": "https://git.drupalcode.org/project/entity_embed" } }, { @@ -4169,26 +4197,26 @@ }, { "name": "drupal/epp", - "version": "1.1.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/epp.git", - "reference": "8.x-1.1" + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/epp-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "d52e973eb61182b56929aa62a9dc673e0acfd9e4" + "url": "https://ftp.drupal.org/files/projects/epp-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "f76397710f3ed2d88d72fa164456cc44afdcf16e" }, "require": { - "drupal/core": "^8.7.7 || ^9" + "drupal/core": "^8.7.7 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.1", - "datestamp": "1622317397", + "version": "8.x-1.3", + "datestamp": "1670961451", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4213,7 +4241,7 @@ "homepage": "https://www.drupal.org/user/998658" } ], - "description": "Prepopulate entity values via tokens.", + "description": "Prepopulate entity values via tokens. Install the Token module for more tokens and Token browser access.", "homepage": "https://www.drupal.org/project/epp", "support": { "source": "https://git.drupalcode.org/project/epp" @@ -4284,26 +4312,26 @@ }, { "name": "drupal/externalauth", - "version": "1.4.0", + "version": "2.0.3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/externalauth.git", - "reference": "8.x-1.4" + "reference": "2.0.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/externalauth-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "caea7d2d5a890adad9e6b5beaa2cf139727266d6" + "url": "https://ftp.drupal.org/files/projects/externalauth-2.0.3.zip", + "reference": "2.0.3", + "shasum": "dae49e3df8739538d7b9371ab7fb5005b8d953fd" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": "^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.4", - "datestamp": "1624457496", + "version": "2.0.3", + "datestamp": "1668777505", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4316,8 +4344,9 @@ ], "authors": [ { - "name": "rgristroph", - "homepage": "https://www.drupal.org/user/516442" + "name": "Sven Decabooter", + "homepage": "https://www.drupal.org/u/svendecabooter", + "role": "Maintainer" }, { "name": "snufkin", @@ -4329,9 +4358,10 @@ } ], "description": "Helper module to authenticate users using an external site / service and storing identification details", - "homepage": "https://www.drupal.org/project/externalauth", + "homepage": "https://drupal.org/project/externalauth", "support": { - "source": "https://git.drupalcode.org/project/externalauth" + "source": "https://git.drupalcode.org/project/externalauth", + "issues": "https://www.drupal.org/project/issues/externalauth" } }, { @@ -4489,29 +4519,26 @@ }, { "name": "drupal/field_group", - "version": "3.2.0", + "version": "3.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/field_group.git", - "reference": "8.x-3.2" + "reference": "8.x-3.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.2.zip", - "reference": "8.x-3.2", - "shasum": "2020bbfe40f6ba43bc733ae7c8761632572433a0" + "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.4.zip", + "reference": "8.x-3.4", + "shasum": "80b937e1a11f8b29c69d853fc4bf798c057c6f94" }, "require": { - "drupal/core": "^8.8 || ^9" - }, - "require-dev": { - "drupal/jquery_ui_accordion": "^1.0" + "drupal/core": "^9.2 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.2", - "datestamp": "1628513585", + "version": "8.x-3.4", + "datestamp": "1667241979", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4553,26 +4580,26 @@ }, { "name": "drupal/field_permissions", - "version": "1.1.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/field_permissions.git", - "reference": "8.x-1.1" + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/field_permissions-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "11e31db94999e6871ad7633455315bc27989a7ea" + "url": "https://ftp.drupal.org/files/projects/field_permissions-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "0b1a5edfac518fe6005d015b3781774b41cdec76" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": ">=8.9 <11" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.1", - "datestamp": "1598646882", + "version": "8.x-1.2", + "datestamp": "1658941749", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4617,32 +4644,32 @@ }, { "name": "drupal/file_mdm", - "version": "2.1.0", + "version": "2.5.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/file_mdm.git", - "reference": "8.x-2.1" + "reference": "8.x-2.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-2.1.zip", - "reference": "8.x-2.1", - "shasum": "5c3d75622299ebddc0e8456bb08bb371da8771bd" + "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-2.5.zip", + "reference": "8.x-2.5", + "shasum": "391d9902733704274594873aa9b1f6b6ba3bd319" }, "require": { - "drupal/core": "^8.8 || ^9", - "lsolesen/pel": "^0.9.8", - "phenx/php-font-lib": "^0.5.2", - "php": ">=7" + "drupal/core": "^9.3 | ^10", + "lsolesen/pel": "^0.9.12", + "phenx/php-font-lib": "^0.5.4" }, "require-dev": { - "drupal/image_effects": "*" + "drupal/vendor_stream_wrapper": "^2.0.2", + "fileeye/linuxlibertine-fonts": "^5.3" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.1", - "datestamp": "1586801064", + "version": "8.x-2.5", + "datestamp": "1663668519", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4667,26 +4694,26 @@ }, { "name": "drupal/file_replace", - "version": "1.2.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/file_replace.git", - "reference": "8.x-1.2" + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/file_replace-8.x-1.2.zip", - "reference": "8.x-1.2", - "shasum": "9ee1af7ad1f9cf3836b89bc43c3873960166f44d" + "url": "https://ftp.drupal.org/files/projects/file_replace-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "d0c1d6378d2958d8fd70b9cb55f884e3ddaf5f87" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": "^8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.2", - "datestamp": "1600085951", + "version": "8.x-1.3", + "datestamp": "1659099667", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4719,26 +4746,29 @@ }, { "name": "drupal/filehash", - "version": "1.5.0", + "version": "1.11.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/filehash.git", - "reference": "8.x-1.5" + "reference": "8.x-1.11" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/filehash-8.x-1.5.zip", - "reference": "8.x-1.5", - "shasum": "3b260fca1f77a003e3849709911ba36503ccb5ba" + "url": "https://ftp.drupal.org/files/projects/filehash-8.x-1.11.zip", + "reference": "8.x-1.11", + "shasum": "2399804f2e5f4d79d22ac768b736642c294a0d18" }, "require": { - "drupal/core": "^8.5 || ^9.0" + "drupal/core": "^8.5 || ^9.0 || ^10.0" + }, + "require-dev": { + "drush/drush": "^10.6 || ^11.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.5", - "datestamp": "1615099468", + "version": "8.x-1.11", + "datestamp": "1648209292", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4746,7 +4776,7 @@ }, "drush": { "services": { - "drush.services.yml": "^9" + "drush.services.yml": "^9 || ^10 || ^11" } } }, @@ -4859,20 +4889,23 @@ }, { "name": "drupal/geolocation", - "version": "3.7.0", + "version": "3.11.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/geolocation.git", - "reference": "8.x-3.7" + "reference": "8.x-3.11" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/geolocation-8.x-3.7.zip", - "reference": "8.x-3.7", - "shasum": "796797ff4d3cc9d8b645bf2534d783d170ef77f5" + "url": "https://ftp.drupal.org/files/projects/geolocation-8.x-3.11.zip", + "reference": "8.x-3.11", + "shasum": "7a563ba6ba18380b636c10d936a28837100a4e02" }, "require": { - "drupal/core": "^8.7.7 || ^9" + "drupal/core": "^9.3 || ^10", + "drupal/jquery_ui": "*", + "drupal/jquery_ui_autocomplete": "*", + "php": "^7.3 || ^8.0" }, "require-dev": { "drupal/address": "*", @@ -4891,8 +4924,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.7", - "datestamp": "1623052750", + "version": "8.x-3.11", + "datestamp": "1671546967", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4922,20 +4955,20 @@ }, { "name": "drupal/google_analytics", - "version": "4.0.0", + "version": "4.0.2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/google_analytics.git", - "reference": "4.0.0" + "reference": "4.0.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/google_analytics-4.0.0.zip", - "reference": "4.0.0", - "shasum": "4f761d4c852d11966f7289b0eb6431cc8db27240" + "url": "https://ftp.drupal.org/files/projects/google_analytics-4.0.2.zip", + "reference": "4.0.2", + "shasum": "6deec511373e4659e42ff494c8729434728e37d7" }, "require": { - "drupal/core": "^8.9|^9.0" + "drupal/core": "^9.3 || ^10" }, "require-dev": { "drupal/token": "^1.7" @@ -4943,8 +4976,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "4.0.0", - "datestamp": "1634230238", + "version": "4.0.2", + "datestamp": "1662768595", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4993,26 +5026,26 @@ }, { "name": "drupal/google_tag", - "version": "1.4.0", + "version": "1.6.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/google_tag.git", - "reference": "8.x-1.4" + "reference": "8.x-1.6" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/google_tag-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "1bdc6f93d1c79c27738320597f2185f5de37432f" + "url": "https://ftp.drupal.org/files/projects/google_tag-8.x-1.6.zip", + "reference": "8.x-1.6", + "shasum": "d084315e54c2e561b8b64eef86081c2634d054cd" }, "require": { - "drupal/core": "^8.8 || ^9" + "drupal/core": "^8.8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.4", - "datestamp": "1593179846", + "version": "8.x-1.6", + "datestamp": "1671145853", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5037,29 +5070,28 @@ }, { "name": "drupal/imagemagick", - "version": "3.2.0", + "version": "3.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/imagemagick.git", - "reference": "8.x-3.2" + "reference": "8.x-3.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-3.2.zip", - "reference": "8.x-3.2", - "shasum": "35346cda3bb9c989387a282dd7f7bb4da4f70fce" + "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-3.4.zip", + "reference": "8.x-3.4", + "shasum": "9f07b7db4bba2cb0e4ff004629f8f78242bb7226" }, "require": { - "drupal/core": "^8.9 || ^9.1", - "drupal/file_mdm": "^2", - "drupal/sophron": "^1", - "php": ">=7.1" + "drupal/core": "^9.3 || ^10", + "drupal/file_mdm": "^2.5", + "drupal/sophron": "^1.2 || ^2" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.2", - "datestamp": "1622711751", + "version": "8.x-3.4", + "datestamp": "1663947784", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5122,19 +5154,246 @@ "source": "https://git.drupalcode.org/project/imagemagick" } }, + { + "name": "drupal/jquery_ui", + "version": "1.6.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/jquery_ui.git", + "reference": "8.x-1.6" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.6.zip", + "reference": "8.x-1.6", + "shasum": "0ddccdcf35a066de1843e1d9670677ee1a2faac0" + }, + "require": { + "drupal/core": "^9.2 || ^10" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.6", + "datestamp": "1668521197", + "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": "bnjmnm", + "homepage": "https://www.drupal.org/user/2369194" + }, + { + "name": "jjeff", + "homepage": "https://www.drupal.org/user/17190" + }, + { + "name": "lauriii", + "homepage": "https://www.drupal.org/user/1078742" + }, + { + "name": "litwol", + "homepage": "https://www.drupal.org/user/78134" + }, + { + "name": "mfb", + "homepage": "https://www.drupal.org/user/12302" + }, + { + "name": "mfer", + "homepage": "https://www.drupal.org/user/25701" + }, + { + "name": "mikelutz", + "homepage": "https://www.drupal.org/user/2972409" + }, + { + "name": "nod_", + "homepage": "https://www.drupal.org/user/598310" + }, + { + "name": "phenaproxima", + "homepage": "https://www.drupal.org/user/205645" + }, + { + "name": "RobLoach", + "homepage": "https://www.drupal.org/user/61114" + }, + { + "name": "sun", + "homepage": "https://www.drupal.org/user/54136" + }, + { + "name": "webchick", + "homepage": "https://www.drupal.org/user/24967" + }, + { + "name": "Wim Leers", + "homepage": "https://www.drupal.org/user/99777" + }, + { + "name": "zrpnr", + "homepage": "https://www.drupal.org/user/1448368" + } + ], + "description": "Provides jQuery UI library.", + "homepage": "https://www.drupal.org/project/jquery_ui", + "support": { + "source": "https://git.drupalcode.org/project/jquery_ui" + } + }, + { + "name": "drupal/jquery_ui_autocomplete", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/jquery_ui_autocomplete.git", + "reference": "2.0.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/jquery_ui_autocomplete-2.0.0.zip", + "reference": "2.0.0", + "shasum": "927d312a74002f99e1c971d3d268be1b0a532fc7" + }, + "require": { + "drupal/core": "^9.2 || ^10", + "drupal/jquery_ui": "^1.6", + "drupal/jquery_ui_menu": "^2" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.0.0", + "datestamp": "1670871461", + "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": "bnjmnm", + "homepage": "https://www.drupal.org/user/2369194" + }, + { + "name": "lauriii", + "homepage": "https://www.drupal.org/user/1078742" + }, + { + "name": "nod_", + "homepage": "https://www.drupal.org/user/598310" + }, + { + "name": "phenaproxima", + "homepage": "https://www.drupal.org/user/205645" + }, + { + "name": "Wim Leers", + "homepage": "https://www.drupal.org/user/99777" + }, + { + "name": "zrpnr", + "homepage": "https://www.drupal.org/user/1448368" + } + ], + "description": "Provides jQuery UI Autocomplete library.", + "homepage": "https://www.drupal.org/project/jquery_ui_autocomplete", + "support": { + "source": "https://git.drupalcode.org/project/jquery_ui_autocomplete" + } + }, + { + "name": "drupal/jquery_ui_menu", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/jquery_ui_menu.git", + "reference": "2.0.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/jquery_ui_menu-2.0.0.zip", + "reference": "2.0.0", + "shasum": "5e1b56bf457669c7779a81784f49da63e3956854" + }, + "require": { + "drupal/core": "^9.2 || ^10", + "drupal/jquery_ui": "^1.6" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "2.0.0", + "datestamp": "1670871546", + "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": "bnjmnm", + "homepage": "https://www.drupal.org/user/2369194" + }, + { + "name": "lauriii", + "homepage": "https://www.drupal.org/user/1078742" + }, + { + "name": "nod_", + "homepage": "https://www.drupal.org/user/598310" + }, + { + "name": "phenaproxima", + "homepage": "https://www.drupal.org/user/205645" + }, + { + "name": "Wim Leers", + "homepage": "https://www.drupal.org/user/99777" + }, + { + "name": "zrpnr", + "homepage": "https://www.drupal.org/user/1448368" + } + ], + "description": "Provides jQuery UI Menu library.", + "homepage": "https://www.drupal.org/project/jquery_ui_menu", + "support": { + "source": "https://git.drupalcode.org/project/jquery_ui_menu" + } + }, { "name": "drupal/jwt", - "version": "1.0.0-rc1", + "version": "1.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/jwt.git", - "reference": "8.x-1.0-rc1" + "reference": "8.x-1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/jwt-8.x-1.0-rc1.zip", - "reference": "8.x-1.0-rc1", - "shasum": "80b26cba67d7593e7b40985dfbf6c8d9b244f5a4" + "url": "https://ftp.drupal.org/files/projects/jwt-8.x-1.0.zip", + "reference": "8.x-1.0", + "shasum": "1792f600b7b8357e4d1b2fbe365af7a41564db25" }, "require": { "drupal/core": "^8.7.12 || ^9.0", @@ -5148,17 +5407,17 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0-rc1", - "datestamp": "1623958868", + "version": "8.x-1.0", + "datestamp": "1653322599", "security-coverage": { - "status": "not-covered", - "message": "RC releases are not covered by Drupal security advisories." + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { @@ -5190,26 +5449,26 @@ }, { "name": "drupal/key", - "version": "1.14.0", + "version": "1.16.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/key.git", - "reference": "8.x-1.14" + "reference": "8.x-1.16" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/key-8.x-1.14.zip", - "reference": "8.x-1.14", - "shasum": "097cec8e86b1c164727ca62521a06c36459754f1" + "url": "https://ftp.drupal.org/files/projects/key-8.x-1.16.zip", + "reference": "8.x-1.16", + "shasum": "35a4476d7d52563bb26bd4dcc5fbf5fdd7c9391b" }, "require": { - "drupal/core": "^8.7.7 || ^9" + "drupal/core": ">=8.9 <11" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.14", - "datestamp": "1591765429", + "version": "8.x-1.16", + "datestamp": "1661968490", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5217,13 +5476,13 @@ }, "drush": { "services": { - "drush.services.yml": "^9" + "drush.services.yml": ">=9" } } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { @@ -5249,7 +5508,7 @@ "Drupal" ], "support": { - "source": "http://cgit.drupalcode.org/key", + "source": "https://git.drupalcode.org/project/key", "issues": "http://drupal.org/project/key" } }, @@ -5259,7 +5518,7 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/libraries.git", - "reference": "ba30ae518d87313a5d532ba0d45581243b81ac1b" + "reference": "ec0c6401e45ff8b09d10e043ff2dd4de324df86e" }, "require": { "drupal/core": "^8.8 || ^9" @@ -5314,26 +5573,24 @@ "source": "http://cgit.drupalcode.org/libraries", "issues": "http://drupal.org/project/issues/libraries", "irc": "irc://irc.freenode.org/drupal-contribute" - }, - "time": "2021-06-02T04:24:38+00:00" + } }, { "name": "drupal/migrate_plus", - "version": "5.1.0", + "version": "5.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/migrate_plus.git", - "reference": "8.x-5.1" + "reference": "8.x-5.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-5.1.zip", - "reference": "8.x-5.1", - "shasum": "1257427ab0c64459c3c1e42bb2a98d3114b77163" + "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-5.3.zip", + "reference": "8.x-5.3", + "shasum": "3cf6dde235d7604ee49be2986812c0ee5e2982f6" }, "require": { - "drupal/core": "^8.8 || ^9", - "php": ">=7.1" + "drupal/core": "^9.1" }, "require-dev": { "drupal/migrate_example_advanced_setup": "*", @@ -5346,8 +5603,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-5.1", - "datestamp": "1588261060", + "version": "8.x-5.3", + "datestamp": "1650658156", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5384,31 +5641,31 @@ }, { "name": "drupal/migrate_source_csv", - "version": "3.4.0", + "version": "3.5.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/migrate_source_csv.git", - "reference": "8.x-3.4" + "reference": "8.x-3.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/migrate_source_csv-8.x-3.4.zip", - "reference": "8.x-3.4", - "shasum": "12990ad8c3b99e16c1b2a1be955aaa28581e5d1c" + "url": "https://ftp.drupal.org/files/projects/migrate_source_csv-8.x-3.5.zip", + "reference": "8.x-3.5", + "shasum": "ddddba22fa7b4a54f05a606db33986b23b1a69ea" }, "require": { - "drupal/core": "^8.7 || ^9.0", + "drupal/core": ">=9.1", "league/csv": "^9.1", "php": ">=7.1" }, "require-dev": { - "drupal/migrate_plus": "5.x-dev" + "drupal/migrate_plus": ">=5.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.4", - "datestamp": "1588260548", + "version": "8.x-3.5", + "datestamp": "1645538421", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5430,8 +5687,7 @@ "homepage": "https://www.drupal.org/project/migrate_source_csv", "support": { "source": "https://cgit.drupalcode.org/migrate_source_csv", - "issues": "https://www.drupal.org/project/issues/migrate_source_csv", - "irc": "irc://irc.freenode.org/drupal-migrate" + "issues": "https://www.drupal.org/project/issues/migrate_source_csv" } }, { @@ -5492,11 +5748,17 @@ }, { "name": "drupal/migrate_tools", - "version": "dev-5.x", + "version": "5.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/migrate_tools.git", - "reference": "56d82b4fc111dd26f2c3a1e53c06015eb854df20" + "reference": "8.x-5.1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-5.1.zip", + "reference": "8.x-5.1", + "shasum": "2c1a9d35d318a0e1de30a99fbf64bedd4e65cee1" }, "require": { "drupal/core": "^9.1", @@ -5512,15 +5774,12 @@ }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-5.x": "5.x-dev" - }, "drupal": { - "version": "8.x-5.1+3-dev", - "datestamp": "1650661352", + "version": "8.x-5.1", + "datestamp": "1640378500", "security-coverage": { - "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } }, "drush": { @@ -5555,31 +5814,30 @@ "source": "https://git.drupalcode.org/project/migrate_tools", "issues": "https://www.drupal.org/project/issues/migrate_tools", "slack": "#migrate" - }, - "time": "2021-07-05T21:38:52+00:00" + } }, { "name": "drupal/pager_serializer", - "version": "1.1.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/pager_serializer.git", - "reference": "8.x-1.1" + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/pager_serializer-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "0f25319e3e0641a7b867cd55210d519e28d96896" + "url": "https://ftp.drupal.org/files/projects/pager_serializer-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "71b2b785889a30bc2dc7b130bf53a686d849785f" }, "require": { - "drupal/core": "^8.7.7 || ^9" + "drupal/core": "^8.7.7 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.1", - "datestamp": "1614122787", + "version": "8.x-1.2", + "datestamp": "1656444579", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5612,7 +5870,7 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/pdf.git", - "reference": "1e33fbf7013df3998dd4f1375889a2df93156a0e" + "reference": "c9b4600ee73b1555efe35c97b2260daf65a810a4" }, "require": { "drupal/core": "^8 || ^9" @@ -5665,22 +5923,21 @@ "homepage": "https://www.drupal.org/project/pdf", "support": { "source": "https://git.drupalcode.org/project/pdf" - }, - "time": "2020-06-26T10:23:16+00:00" + } }, { "name": "drupal/permissions_by_term", - "version": "3.1.16", + "version": "3.1.21", "source": { "type": "git", "url": "https://git.drupalcode.org/project/permissions_by_term.git", - "reference": "3.1.16" + "reference": "3.1.21" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/permissions_by_term-3.1.16.zip", - "reference": "3.1.16", - "shasum": "4208c34a4399249052bd7b070cd51d7628c6b184" + "url": "https://ftp.drupal.org/files/projects/permissions_by_term-3.1.21.zip", + "reference": "3.1.21", + "shasum": "ecd9340f1aac1f183398a571415bb0859fcb6f4c" }, "require": { "drupal/core": "^9.0", @@ -5689,8 +5946,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "3.1.16", - "datestamp": "1626101110", + "version": "3.1.21", + "datestamp": "1668009531", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5959,26 +6216,26 @@ }, { "name": "drupal/restui", - "version": "1.20.0", + "version": "1.21.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/restui.git", - "reference": "8.x-1.20" + "reference": "8.x-1.21" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.20.zip", - "reference": "8.x-1.20", - "shasum": "df1d3c486ee0e7b4e9a24e6523a69c9efe73caff" + "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.21.zip", + "reference": "8.x-1.21", + "shasum": "2a67dc2c1953dced0bddaff25e5c60784ee0178c" }, "require": { - "drupal/core": "^8.7.7 || ^9" + "drupal/core": "^8.7.7 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.20", - "datestamp": "1616839543", + "version": "8.x-1.21", + "datestamp": "1659086914", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6015,26 +6272,26 @@ }, { "name": "drupal/role_delegation", - "version": "1.1.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/role_delegation.git", - "reference": "8.x-1.1" + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/role_delegation-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "a63b548056cc729beacfd385625fafb983e0f73e" + "url": "https://ftp.drupal.org/files/projects/role_delegation-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "08095bada0f492e70d32fcf357a8c01825ca81fc" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": "^9.2 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.1", - "datestamp": "1580498751", + "version": "8.x-1.2", + "datestamp": "1644487627", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6113,24 +6370,24 @@ }, { "name": "drupal/s3fs", - "version": "3.0.0-beta3", + "version": "3.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/s3fs.git", - "reference": "8.x-3.0-beta3" + "reference": "8.x-3.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/s3fs-8.x-3.0-beta3.zip", - "reference": "8.x-3.0-beta3", - "shasum": "47b096438202633b07261b76d93c958a150a3159" + "url": "https://ftp.drupal.org/files/projects/s3fs-8.x-3.1.zip", + "reference": "8.x-3.1", + "shasum": "8de42701f4ce25c2c16c9efe28e605a712f1be9e" }, "require": { "aws/aws-sdk-php": "^3.18", - "drupal/core": "^8.8 || ^9" + "drupal/core": "^8.8 || ^9 || ~10.0.0" }, "require-dev": { - "drush/drush": "^10.0" + "drush/drush": "^10 || ^11" }, "suggest": { "doctrine/cache": "~1.4" @@ -6138,11 +6395,11 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.0-beta3", - "datestamp": "1629922175", + "version": "8.x-3.1", + "datestamp": "1670992386", "security-coverage": { - "status": "not-covered", - "message": "Beta releases are not covered by Drupal security advisories." + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, @@ -6190,20 +6447,20 @@ }, { "name": "drupal/search_api", - "version": "1.20.0", + "version": "1.28.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/search_api.git", - "reference": "8.x-1.20" + "reference": "8.x-1.28" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.20.zip", - "reference": "8.x-1.20", - "shasum": "4bed60ac7b502ccc1d4a01411aa35d2cb7f496c7" + "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.28.zip", + "reference": "8.x-1.28", + "shasum": "d3ae0bb3cf17c986d5e0c6edb87aee6580b6fc1e" }, "require": { - "drupal/core": "^8.8 || ^9" + "drupal/core": "^9.3 || ^10.0" }, "conflict": { "drupal/search_api_solr": "2.* || 3.0 || 3.1" @@ -6221,8 +6478,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.20", - "datestamp": "1626684847", + "version": "8.x-1.28", + "datestamp": "1667814116", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6262,44 +6519,44 @@ }, { "name": "drupal/search_api_solr", - "version": "4.2.1", + "version": "4.2.10", "source": { "type": "git", "url": "https://git.drupalcode.org/project/search_api_solr.git", - "reference": "4.2.1" + "reference": "4.2.10" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/search_api_solr-4.2.1.zip", - "reference": "4.2.1", - "shasum": "54e40c7ce41cef8edfb92807f87db06b0b13e9c8" + "url": "https://ftp.drupal.org/files/projects/search_api_solr-4.2.10.zip", + "reference": "4.2.10", + "shasum": "28b1ccd5c462db92af3561103e9a33569a674387" }, "require": { "composer/semver": "^1.0|^3.0", "consolidation/annotated-command": "^2.12|^4.1", - "drupal/core": "^8.8 || ^9", - "drupal/search_api": "~1.17", + "drupal/core": "^9.3 || ^10.0", + "drupal/search_api": "~1.28", "ext-dom": "*", "ext-json": "*", "ext-simplexml": "*", "laminas/laminas-stdlib": "^3.2", - "maennchen/zipstream-php": "^1.2|^2.0", - "php": "^7.3|^8.0", - "solarium/solarium": "^6.1.5" + "maennchen/zipstream-php": "^2.2.1", + "php": ">=7.4", + "solarium/solarium": "^6.2.8" }, "conflict": { "drupal/acquia_search_solr": "<1.0.0-beta8", + "drupal/search_api_autocomplete": "<1.6.0", "drupal/search_api_solr_multilingual": "<3.0.0" }, "require-dev": { - "drupal/devel": "^4.0", - "drupal/facets": "1.x-dev", + "drupal/devel": "^4.0|^5.0", + "drupal/facets": "^3.0.x-dev", "drupal/geofield": "1.x-dev", "drupal/search_api_autocomplete": "1.x-dev", "drupal/search_api_location": "1.x-dev", "drupal/search_api_spellcheck": "3.x-dev", - "monolog/monolog": "^1.25", - "phayes/geophp": "^1.2" + "monolog/monolog": "^1.25|^3" }, "suggest": { "drupal/facets": "Provides facetted search.", @@ -6311,8 +6568,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "4.2.1", - "datestamp": "1628871708", + "version": "4.2.10", + "datestamp": "1671442326", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6320,7 +6577,7 @@ }, "drush": { "services": { - "drush.services.yml": "^9" + "drush.services.yml": ">=9" } } }, @@ -6364,28 +6621,28 @@ }, { "name": "drupal/simplesamlphp_auth", - "version": "3.2.0", + "version": "3.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/simplesamlphp_auth.git", - "reference": "8.x-3.2" + "reference": "8.x-3.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/simplesamlphp_auth-8.x-3.2.zip", - "reference": "8.x-3.2", - "shasum": "a5a2b10fc873eb8669929ad1a6d9599e47a2ca99" + "url": "https://ftp.drupal.org/files/projects/simplesamlphp_auth-8.x-3.3.zip", + "reference": "8.x-3.3", + "shasum": "14b33fc4e7c9a6a72de5a4ec32722200e7203d43" }, "require": { - "drupal/core": "^8.7|^9.0", - "drupal/externalauth": "^1.1", - "simplesamlphp/simplesamlphp": "^1.18.2" + "drupal/core": "^8.7||^9.0", + "drupal/externalauth": "^1.1||^2.0", + "simplesamlphp/simplesamlphp": "^1.18.2||^1.19" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.2", - "datestamp": "1580423953", + "version": "8.x-3.3", + "datestamp": "1660687554", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6434,28 +6691,27 @@ }, { "name": "drupal/sophron", - "version": "1.1.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/sophron.git", - "reference": "8.x-1.1" + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/sophron-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "afb3650458b15b87918471defa763f24880622ca" + "url": "https://ftp.drupal.org/files/projects/sophron-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "426dde53813e855317d6f7ef9fd6b104cc8a3e22" }, "require": { - "drupal/core": "^8.9 || ^9", - "fileeye/mimemap": "^1.1.4", - "php": ">=7.1" + "drupal/core": "^9.2 || ^10", + "fileeye/mimemap": "^2" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.1", - "datestamp": "1606047077", + "version": "8.x-1.3", + "datestamp": "1663598448", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6485,17 +6741,17 @@ }, { "name": "drupal/title_length", - "version": "1.1.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/title_length.git", - "reference": "8.x-1.1" + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/title_length-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "f8a961bcc4cde1bf7c0f57c0a7b6248ea9d92bd4" + "url": "https://ftp.drupal.org/files/projects/title_length-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "22a19724c3807b6847a84ae0a38df80eebe69360" }, "require": { "drupal/core": "^8 || ^9" @@ -6503,8 +6759,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.1", - "datestamp": "1591431505", + "version": "8.x-1.2", + "datestamp": "1631721151", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6537,26 +6793,26 @@ }, { "name": "drupal/token", - "version": "1.9.0", + "version": "1.11.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/token.git", - "reference": "8.x-1.9" + "reference": "8.x-1.11" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/token-8.x-1.9.zip", - "reference": "8.x-1.9", - "shasum": "a5d234382a1a0e4ba61d4c7a2fa10671ca656be4" + "url": "https://ftp.drupal.org/files/projects/token-8.x-1.11.zip", + "reference": "8.x-1.11", + "shasum": "da264b36d1f88eb0c74bf84e18e8789854f98400" }, "require": { - "drupal/core": "^8.8 || ^9" + "drupal/core": "^9.2 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.9", - "datestamp": "1608284866", + "version": "8.x-1.11", + "datestamp": "1659471813", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6606,26 +6862,26 @@ }, { "name": "drupal/transliterate_filenames", - "version": "1.5.0", + "version": "1.10.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/transliterate_filenames.git", - "reference": "8.x-1.5" + "reference": "8.x-1.10" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/transliterate_filenames-8.x-1.5.zip", - "reference": "8.x-1.5", - "shasum": "c2f103a188b8ea19f380fae29434e1064c40dd55" + "url": "https://ftp.drupal.org/files/projects/transliterate_filenames-8.x-1.10.zip", + "reference": "8.x-1.10", + "shasum": "8c88c6411fd94cac271e38736664538c54f243ec" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": "^8.7.7 || ^9.2" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.5", - "datestamp": "1606460881", + "version": "8.x-1.10", + "datestamp": "1644653446", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6661,21 +6917,21 @@ }, { "name": "drupal/views_data_export", - "version": "1.0.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/views_data_export.git", - "reference": "8.x-1.0" + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/views_data_export-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "f1d16fd06ee7574f680e30f6bf5d6a152e3e9f42" + "url": "https://ftp.drupal.org/files/projects/views_data_export-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "168c0d3de19f2182f2c1bc16066498342015970e" }, "require": { - "drupal/core": "^8.8 || ^9", - "drupal/csv_serialization": "~1.4 || ~2.0" + "drupal/core": "^9 || ^10", + "drupal/csv_serialization": "~1.4 || ~2.0 || ~3" }, "require-dev": { "drupal/search_api": "~1.12", @@ -6684,8 +6940,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0", - "datestamp": "1592589996", + "version": "8.x-1.2", + "datestamp": "1665515238", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6730,26 +6986,26 @@ }, { "name": "drupal/workbench", - "version": "1.3.0", + "version": "1.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/workbench.git", - "reference": "8.x-1.3" + "reference": "8.x-1.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/workbench-8.x-1.3.zip", - "reference": "8.x-1.3", - "shasum": "643d5f27503d7fceda8673812ca9a3bc25ed53e5" + "url": "https://ftp.drupal.org/files/projects/workbench-8.x-1.4.zip", + "reference": "8.x-1.4", + "shasum": "bec38d8c333c1b72402f2e66be29838b65235fcd" }, "require": { - "drupal/core": "^8.8 || ^9" + "drupal/core": "^8.8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.3", - "datestamp": "1590419810", + "version": "8.x-1.4", + "datestamp": "1666723245", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6798,29 +7054,32 @@ }, { "name": "drupal/workbench_access", - "version": "1.0.0-beta4", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/workbench_access.git", - "reference": "8.x-1.0-beta4" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/workbench_access-8.x-1.0-beta4.zip", - "reference": "8.x-1.0-beta4", - "shasum": "8d81c3daef91d89ecb3c0e3823ee0144b37889a8" + "url": "https://ftp.drupal.org/files/projects/workbench_access-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "9546c6c0269e5883551abab1f9b51d2d363404ae" }, "require": { "drupal/core": "^8.7.7 || ^9" }, + "require-dev": { + "drupal/inline_entity_form": "*" + }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0-beta4", - "datestamp": "1591119383", + "version": "8.x-1.1", + "datestamp": "1663772820", "security-coverage": { - "status": "not-covered", - "message": "Beta releases are not covered by Drupal security advisories." + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } }, "drush": { @@ -6855,16 +7114,16 @@ }, { "name": "drush/drush", - "version": "10.6.0", + "version": "10.6.2", "source": { "type": "git", "url": "https://github.com/drush-ops/drush.git", - "reference": "c86d327359baddb0a2f51bb458703826469a0445" + "reference": "0a570a16ec63259eb71195aba5feab532318b337" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drush-ops/drush/zipball/c86d327359baddb0a2f51bb458703826469a0445", - "reference": "c86d327359baddb0a2f51bb458703826469a0445", + "url": "https://api.github.com/repos/drush-ops/drush/zipball/0a570a16ec63259eb71195aba5feab532318b337", + "reference": "0a570a16ec63259eb71195aba5feab532318b337", "shasum": "" }, "require": { @@ -6872,17 +7131,17 @@ "composer/semver": "^1.4 || ^3", "consolidation/config": "^1.2", "consolidation/filter-via-dot-access-data": "^1", - "consolidation/robo": "^1.4.11 || ^2", + "consolidation/robo": "^1.4.11 || ^2 || ^3", "consolidation/site-alias": "^3.0.0@stable", "consolidation/site-process": "^2.1 || ^4", "enlightn/security-checker": "^1", "ext-dom": "*", "grasmash/yaml-expander": "^1.1.1", "guzzlehttp/guzzle": "^6.3 || ^7.0", - "league/container": "~2", + "league/container": "^2.5 || ^3.4", "php": ">=7.1.3", "psr/log": "~1.0", - "psy/psysh": "~0.6", + "psy/psysh": ">=0.6 <0.11", "symfony/event-dispatcher": "^3.4 || ^4.0", "symfony/finder": "^3.4 || ^4.0 || ^5", "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0", @@ -6988,7 +7247,7 @@ "irc": "irc://irc.freenode.org/drush", "issues": "https://github.com/drush-ops/drush/issues", "slack": "https://drupal.slack.com/messages/C62H9CWQM", - "source": "https://github.com/drush-ops/drush/tree/10.6.0" + "source": "https://github.com/drush-ops/drush/tree/10.6.2" }, "funding": [ { @@ -6996,7 +7255,7 @@ "type": "github" } ], - "time": "2021-08-13T10:40:40+00:00" + "time": "2021-12-15T17:09:54+00:00" }, { "name": "easyrdf/easyrdf", @@ -7143,30 +7402,30 @@ }, { "name": "enlightn/security-checker", - "version": "v1.9.0", + "version": "v1.10.0", "source": { "type": "git", "url": "https://github.com/enlightn/security-checker.git", - "reference": "dc5bce653fa4d9c792e9dcffa728c0642847c1e1" + "reference": "196bacc76e7a72a63d0e1220926dbb190272db97" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/enlightn/security-checker/zipball/dc5bce653fa4d9c792e9dcffa728c0642847c1e1", - "reference": "dc5bce653fa4d9c792e9dcffa728c0642847c1e1", + "url": "https://api.github.com/repos/enlightn/security-checker/zipball/196bacc76e7a72a63d0e1220926dbb190272db97", + "reference": "196bacc76e7a72a63d0e1220926dbb190272db97", "shasum": "" }, "require": { "ext-json": "*", "guzzlehttp/guzzle": "^6.3|^7.0", "php": ">=5.6", - "symfony/console": "^3.4|^4|^5", - "symfony/finder": "^3|^4|^5", - "symfony/process": "^3.4|^4|^5", - "symfony/yaml": "^3.4|^4|^5" + "symfony/console": "^3.4|^4|^5|^6", + "symfony/finder": "^3|^4|^5|^6", + "symfony/process": "^3.4|^4|^5|^6", + "symfony/yaml": "^3.4|^4|^5|^6" }, "require-dev": { "ext-zip": "*", - "friendsofphp/php-cs-fixer": "^2.18", + "friendsofphp/php-cs-fixer": "^2.18|^3.0", "phpunit/phpunit": "^5.5|^6|^7|^8|^9" }, "bin": [ @@ -7203,36 +7462,39 @@ ], "support": { "issues": "https://github.com/enlightn/security-checker/issues", - "source": "https://github.com/enlightn/security-checker/tree/v1.9.0" + "source": "https://github.com/enlightn/security-checker/tree/v1.10.0" }, - "time": "2021-05-06T09:03:35+00:00" + "time": "2022-02-21T22:40:16+00:00" }, { "name": "fileeye/mimemap", - "version": "1.1.5", + "version": "2.0.0", "source": { "type": "git", "url": "https://github.com/FileEye/MimeMap.git", - "reference": "9efaad84adce38f2ee49331b2bd684c83fd9aa3b" + "reference": "24144b7dc84168e14e4fc893d654c4fb40628346" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/FileEye/MimeMap/zipball/9efaad84adce38f2ee49331b2bd684c83fd9aa3b", - "reference": "9efaad84adce38f2ee49331b2bd684c83fd9aa3b", + "url": "https://api.github.com/repos/FileEye/MimeMap/zipball/24144b7dc84168e14e4fc893d654c4fb40628346", + "reference": "24144b7dc84168e14e4fc893d654c4fb40628346", "shasum": "" }, "require": { - "php": ">=5.4" + "php": ">=7.3" }, "require-dev": { - "phpunit/phpunit": "<10", - "sebastian/comparator": "*", - "sebastian/diff": "*", - "squizlabs/php_codesniffer": "*", - "symfony/console": "*", - "symfony/filesystem": "*", - "symfony/var-dumper": "*", - "symfony/yaml": "*" + "composer-runtime-api": "^2.0.0", + "phpstan/phpstan": "^1.2", + "phpunit/phpunit": "^9", + "sebastian/comparator": ">=4", + "sebastian/diff": ">=4", + "squizlabs/php_codesniffer": ">=3.6", + "symfony/console": ">=5.4", + "symfony/filesystem": ">=5.4", + "symfony/var-dumper": ">=5.4", + "symfony/yaml": ">=5.4", + "vimeo/psalm": "^4.23" }, "bin": [ "bin/fileeye-mimemap" @@ -7240,7 +7502,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.x-dev" + "dev-master": "2.x-dev" } }, "autoload": { @@ -7262,22 +7524,22 @@ ], "support": { "issues": "https://github.com/FileEye/MimeMap/issues", - "source": "https://github.com/FileEye/MimeMap/tree/1.1.5" + "source": "https://github.com/FileEye/MimeMap/tree/2.0.0" }, - "time": "2021-04-02T20:21:45+00:00" + "time": "2022-07-17T13:00:20+00:00" }, { "name": "firebase/php-jwt", - "version": "v5.4.0", + "version": "v5.5.1", "source": { "type": "git", "url": "https://github.com/firebase/php-jwt.git", - "reference": "d2113d9b2e0e349796e72d2a63cf9319100382d2" + "reference": "83b609028194aa042ea33b5af2d41a7427de80e6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/firebase/php-jwt/zipball/d2113d9b2e0e349796e72d2a63cf9319100382d2", - "reference": "d2113d9b2e0e349796e72d2a63cf9319100382d2", + "url": "https://api.github.com/repos/firebase/php-jwt/zipball/83b609028194aa042ea33b5af2d41a7427de80e6", + "reference": "83b609028194aa042ea33b5af2d41a7427de80e6", "shasum": "" }, "require": { @@ -7319,22 +7581,22 @@ ], "support": { "issues": "https://github.com/firebase/php-jwt/issues", - "source": "https://github.com/firebase/php-jwt/tree/v5.4.0" + "source": "https://github.com/firebase/php-jwt/tree/v5.5.1" }, - "time": "2021-06-23T19:00:23+00:00" + "time": "2021-11-08T20:18:51+00:00" }, { "name": "gettext/gettext", - "version": "v4.8.5", + "version": "v4.8.8", "source": { "type": "git", "url": "https://github.com/php-gettext/Gettext.git", - "reference": "ef2e312dff383fc0e4cd62dd39042e1157f137d4" + "reference": "302a00aa9d6762c92c884d879c15d3ed05d6a37d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-gettext/Gettext/zipball/ef2e312dff383fc0e4cd62dd39042e1157f137d4", - "reference": "ef2e312dff383fc0e4cd62dd39042e1157f137d4", + "url": "https://api.github.com/repos/php-gettext/Gettext/zipball/302a00aa9d6762c92c884d879c15d3ed05d6a37d", + "reference": "302a00aa9d6762c92c884d879c15d3ed05d6a37d", "shasum": "" }, "require": { @@ -7386,7 +7648,7 @@ "support": { "email": "oom@oscarotero.com", "issues": "https://github.com/oscarotero/Gettext/issues", - "source": "https://github.com/php-gettext/Gettext/tree/v4.8.5" + "source": "https://github.com/php-gettext/Gettext/tree/v4.8.8" }, "funding": [ { @@ -7402,20 +7664,20 @@ "type": "patreon" } ], - "time": "2021-07-13T16:45:53+00:00" + "time": "2022-12-08T11:59:50+00:00" }, { "name": "gettext/languages", - "version": "2.8.1", + "version": "2.10.0", "source": { "type": "git", "url": "https://github.com/php-gettext/Languages.git", - "reference": "4ad818b6341e177b7c508ec4c37e18932a7b788a" + "reference": "4d61d67fe83a2ad85959fe6133d6d9ba7dddd1ab" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-gettext/Languages/zipball/4ad818b6341e177b7c508ec4c37e18932a7b788a", - "reference": "4ad818b6341e177b7c508ec4c37e18932a7b788a", + "url": "https://api.github.com/repos/php-gettext/Languages/zipball/4d61d67fe83a2ad85959fe6133d6d9ba7dddd1ab", + "reference": "4d61d67fe83a2ad85959fe6133d6d9ba7dddd1ab", "shasum": "" }, "require": { @@ -7464,7 +7726,7 @@ ], "support": { "issues": "https://github.com/php-gettext/Languages/issues", - "source": "https://github.com/php-gettext/Languages/tree/2.8.1" + "source": "https://github.com/php-gettext/Languages/tree/2.10.0" }, "funding": [ { @@ -7476,7 +7738,7 @@ "type": "github" } ], - "time": "2021-07-14T15:03:58+00:00" + "time": "2022-10-18T15:00:10+00:00" }, { "name": "grasmash/expander", @@ -7905,12 +8167,12 @@ "source": { "type": "git", "url": "https://github.com/roblib/islandora_fits.git", - "reference": "586427738cd9e2724d1ee3aeff8b42d114b518a6" + "reference": "f03b4eeff3598a9b81aad614f8aecd62cf14d81d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/roblib/islandora_fits/zipball/586427738cd9e2724d1ee3aeff8b42d114b518a6", - "reference": "586427738cd9e2724d1ee3aeff8b42d114b518a6", + "url": "https://api.github.com/repos/roblib/islandora_fits/zipball/f03b4eeff3598a9b81aad614f8aecd62cf14d81d", + "reference": "f03b4eeff3598a9b81aad614f8aecd62cf14d81d", "shasum": "" }, "require": { @@ -7931,7 +8193,7 @@ "issues": "https://www.drupal.org/project/issues/islandora_fits", "source": "http://cgit.drupalcode.org/islandora_fits" }, - "time": "2021-01-14T23:01:15+00:00" + "time": "2022-09-23T14:27:40+00:00" }, { "name": "islandora/carapace", @@ -7939,12 +8201,12 @@ "source": { "type": "git", "url": "https://github.com/Islandora/carapace.git", - "reference": "30e66191ff3ec46795832a6ea35f5a3f73b2a82e" + "reference": "8eb604852044beeb04f60baf9e684ab66154a0ea" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Islandora/carapace/zipball/30e66191ff3ec46795832a6ea35f5a3f73b2a82e", - "reference": "30e66191ff3ec46795832a6ea35f5a3f73b2a82e", + "url": "https://api.github.com/repos/Islandora/carapace/zipball/8eb604852044beeb04f60baf9e684ab66154a0ea", + "reference": "8eb604852044beeb04f60baf9e684ab66154a0ea", "shasum": "" }, "require": { @@ -7985,17 +8247,76 @@ "source": "https://github.com/Islandora/carapace/tree/4.0.1" }, "abandoned": true, - "time": "2021-04-21T13:06:26+00:00" + "time": "2022-10-15T16:33:10+00:00" }, { "name": "islandora/chullo", - "version": "dev-dev", + "version": "1.2.0", "source": { "type": "git", "url": "https://github.com/Islandora/chullo.git", "reference": "d563d5e48ef9b15dcf45029277bbc2f6eeef2454" }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Islandora/chullo/zipball/d563d5e48ef9b15dcf45029277bbc2f6eeef2454", + "reference": "d563d5e48ef9b15dcf45029277bbc2f6eeef2454", + "shasum": "" + }, + "require": { + "easyrdf/easyrdf": "^0.9 || ^1", + "guzzlehttp/guzzle": "^6.1.0", + "ml/json-ld": "^1.0.4", + "php": "^7.3 || ^7.4" + }, + "require-dev": { + "mockery/mockery": "^0.9", + "phpunit/phpunit": "^9.0", + "sebastian/phpcpd": "^6.0", + "squizlabs/php_codesniffer": "^3.0" + }, "type": "library", + "autoload": { + "psr-4": { + "Islandora\\Chullo\\": "src/" + } + }, + "scripts": { + "check": [ + "vendor/bin/phpcs --standard=PSR2 src test", + "vendor/bin/phpcpd --suffix *.php src test" + ], + "test": [ + "@check", + "vendor/bin/phpunit" + ] + }, + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Islandora Foundation", + "email": "community@islandora.ca", + "role": "Owner" + }, + { + "name": "Daniel Lamb", + "email": "dlamb@islandora.ca", + "role": "Maintainer" + }, + { + "name": "Nick Ruest", + "email": "ruestn@gmail.com", + "role": "Maintainer" + } + ], + "description": "A PHP client for interacting with a Fedora 4 server.", + "homepage": "https://github.com/Islandora/chullo", + "support": { + "issues": "https://github.com/Islandora/documentation/issues", + "source": "https://github.com/Islandora/chullo/tree/1.2.0" + }, "time": "2021-05-05T17:38:36+00:00" }, { @@ -8068,12 +8389,12 @@ "source": { "type": "git", "url": "https://github.com/Islandora/islandora.git", - "reference": "aa94c9afa50cdc6d31d68943bb52e1d6e2976c2b" + "reference": "2923a1a8b9303569fdea4bdbf580c1f56e3ed033" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Islandora/islandora/zipball/aa94c9afa50cdc6d31d68943bb52e1d6e2976c2b", - "reference": "aa94c9afa50cdc6d31d68943bb52e1d6e2976c2b", + "url": "https://api.github.com/repos/Islandora/islandora/zipball/2923a1a8b9303569fdea4bdbf580c1f56e3ed033", + "reference": "2923a1a8b9303569fdea4bdbf580c1f56e3ed033", "shasum": "" }, "require": { @@ -8129,7 +8450,7 @@ "issues": "https://github.com/Islandora/documentation/issues", "source": "https://github.com/Islandora/islandora/tree/8.x-1.x" }, - "time": "2021-08-18T17:21:32+00:00" + "time": "2021-10-04T15:56:49+00:00" }, { "name": "islandora/jsonld", @@ -8137,12 +8458,12 @@ "source": { "type": "git", "url": "https://github.com/Islandora/jsonld.git", - "reference": "dfd99c4c1beac54efc0eaa6cdbadc01d4918fd6c" + "reference": "7f169128a638562dba8f7f9109a8e01c6a59e69c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Islandora/jsonld/zipball/dfd99c4c1beac54efc0eaa6cdbadc01d4918fd6c", - "reference": "dfd99c4c1beac54efc0eaa6cdbadc01d4918fd6c", + "url": "https://api.github.com/repos/Islandora/jsonld/zipball/7f169128a638562dba8f7f9109a8e01c6a59e69c", + "reference": "7f169128a638562dba8f7f9109a8e01c6a59e69c", "shasum": "" }, "require-dev": { @@ -8180,7 +8501,7 @@ "issues": "https://github.com/Islandora/documentation/issues", "source": "https://github.com/Islandora/jsonld/tree/2.x" }, - "time": "2021-05-03T15:37:22+00:00" + "time": "2021-09-21T14:54:18+00:00" }, { "name": "islandora/openseadragon", @@ -8297,12 +8618,12 @@ "source": { "type": "git", "url": "https://github.com/jhu-idc/idc-ui-theme.git", - "reference": "1d583a018f7cdf17e989ac672d0fe8cc7d844429" + "reference": "28554807e807cd29b15472fa799234e9c54bf4d1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/jhu-idc/idc-ui-theme/zipball/1d583a018f7cdf17e989ac672d0fe8cc7d844429", - "reference": "1d583a018f7cdf17e989ac672d0fe8cc7d844429", + "url": "https://api.github.com/repos/jhu-idc/idc-ui-theme/zipball/28554807e807cd29b15472fa799234e9c54bf4d1", + "reference": "28554807e807cd29b15472fa799234e9c54bf4d1", "shasum": "" }, "default-branch": true, @@ -8312,7 +8633,7 @@ "source": "https://github.com/jhu-idc/idc-ui-theme/tree/main", "issues": "https://github.com/jhu-idc/idc-ui-theme/issues" }, - "time": "2022-12-14T18:10:29+00:00" + "time": "2022-12-19T21:24:21+00:00" }, { "name": "jhu-idc/idc_defaults", @@ -8320,12 +8641,12 @@ "source": { "type": "git", "url": "https://github.com/jhu-idc/idc_defaults.git", - "reference": "cb033a6f2e2423abec6d2dd66366c0e4da85b7d7" + "reference": "32b72a5c7faacf5647f311576761fd749fbe90c4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/jhu-idc/idc_defaults/zipball/cb033a6f2e2423abec6d2dd66366c0e4da85b7d7", - "reference": "cb033a6f2e2423abec6d2dd66366c0e4da85b7d7", + "url": "https://api.github.com/repos/jhu-idc/idc_defaults/zipball/32b72a5c7faacf5647f311576761fd749fbe90c4", + "reference": "32b72a5c7faacf5647f311576761fd749fbe90c4", "shasum": "" }, "require": { @@ -8339,7 +8660,7 @@ "source": "https://github.com/jhu-idc/idc_defaults/tree/main", "issues": "https://github.com/jhu-idc/idc_defaults/issues" }, - "time": "2021-10-05T14:45:02+00:00" + "time": "2022-07-21T20:41:01+00:00" }, { "name": "jhu-idc/idc_export", @@ -8347,12 +8668,12 @@ "source": { "type": "git", "url": "https://github.com/jhu-idc/idc_export.git", - "reference": "33c3b31ac884b9dc524ab864620d58660344a346" + "reference": "08f94f30b756728995833288162ae203fdbe6add" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/jhu-idc/idc_export/zipball/33c3b31ac884b9dc524ab864620d58660344a346", - "reference": "33c3b31ac884b9dc524ab864620d58660344a346", + "url": "https://api.github.com/repos/jhu-idc/idc_export/zipball/08f94f30b756728995833288162ae203fdbe6add", + "reference": "08f94f30b756728995833288162ae203fdbe6add", "shasum": "" }, "require": { @@ -8374,7 +8695,7 @@ "source": "https://github.com/jhu-idc/idc_export/tree/main", "issues": "https://github.com/jhu-idc/idc_export/issues" }, - "time": "2021-11-03T14:42:44+00:00" + "time": "2022-07-21T20:38:58+00:00" }, { "name": "jhu-idc/idc_ui_module", @@ -8397,7 +8718,7 @@ "source": "https://github.com/jhu-idc/idc_ui_module/tree/main", "issues": "https://github.com/jhu-idc/idc_ui_module/issues" }, - "time": "2022-12-14T16:34:58+00:00" + "time": "2022-12-15T17:09:58+00:00" }, { "name": "jhu-idc/islandora_defaults", @@ -8880,37 +9201,39 @@ }, { "name": "league/container", - "version": "2.5.0", + "version": "3.4.1", "source": { "type": "git", "url": "https://github.com/thephpleague/container.git", - "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3" + "reference": "84ecbc2dbecc31bd23faf759a0e329ee49abddbd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/container/zipball/8438dc47a0674e3378bcce893a0a04d79a2c22b3", - "reference": "8438dc47a0674e3378bcce893a0a04d79a2c22b3", + "url": "https://api.github.com/repos/thephpleague/container/zipball/84ecbc2dbecc31bd23faf759a0e329ee49abddbd", + "reference": "84ecbc2dbecc31bd23faf759a0e329ee49abddbd", "shasum": "" }, "require": { - "container-interop/container-interop": "^1.2", - "php": "^5.4 || ^7.0 || ^8.0" + "php": "^7.0 || ^8.0", + "psr/container": "^1.0.0" }, "provide": { - "container-interop/container-interop-implementation": "^1.2", "psr/container-implementation": "^1.0" }, "replace": { "orno/di": "~2.0" }, "require-dev": { - "phpunit/phpunit": "^4.8.36", - "scrutinizer/ocular": "^1.3", + "phpunit/phpunit": "^6.0 || ^7.0", + "roave/security-advisories": "dev-latest", + "scrutinizer/ocular": "^1.8", "squizlabs/php_codesniffer": "^3.5" }, "type": "library", "extra": { "branch-alias": { + "dev-master": "3.x-dev", + "dev-3.x": "3.x-dev", "dev-2.x": "2.x-dev", "dev-1.x": "1.x-dev" } @@ -8945,7 +9268,7 @@ ], "support": { "issues": "https://github.com/thephpleague/container/issues", - "source": "https://github.com/thephpleague/container/tree/2.5.0" + "source": "https://github.com/thephpleague/container/tree/3.4.1" }, "funding": [ { @@ -8953,35 +9276,35 @@ "type": "github" } ], - "time": "2021-02-22T09:20:06+00:00" + "time": "2021-07-09T08:23:52+00:00" }, { "name": "league/csv", - "version": "9.7.1", + "version": "9.8.0", "source": { "type": "git", "url": "https://github.com/thephpleague/csv.git", - "reference": "0ec57e8264ec92565974ead0d1724cf1026e10c1" + "reference": "9d2e0265c5d90f5dd601bc65ff717e05cec19b47" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/csv/zipball/0ec57e8264ec92565974ead0d1724cf1026e10c1", - "reference": "0ec57e8264ec92565974ead0d1724cf1026e10c1", + "url": "https://api.github.com/repos/thephpleague/csv/zipball/9d2e0265c5d90f5dd601bc65ff717e05cec19b47", + "reference": "9d2e0265c5d90f5dd601bc65ff717e05cec19b47", "shasum": "" }, "require": { "ext-json": "*", "ext-mbstring": "*", - "php": "^7.3 || ^8.0" + "php": "^7.4 || ^8.0" }, "require-dev": { "ext-curl": "*", "ext-dom": "*", - "friendsofphp/php-cs-fixer": "^2.16", - "phpstan/phpstan": "^0.12.0", - "phpstan/phpstan-phpunit": "^0.12.0", - "phpstan/phpstan-strict-rules": "^0.12.0", - "phpunit/phpunit": "^9.5" + "friendsofphp/php-cs-fixer": "^v3.4.0", + "phpstan/phpstan": "^1.3.0", + "phpstan/phpstan-phpunit": "^1.0.0", + "phpstan/phpstan-strict-rules": "^1.1.0", + "phpunit/phpunit": "^9.5.11" }, "suggest": { "ext-dom": "Required to use the XMLConverter and or the HTMLConverter classes", @@ -9014,7 +9337,7 @@ } ], "description": "CSV data manipulation made easy in PHP", - "homepage": "http://csv.thephpleague.com", + "homepage": "https://csv.thephpleague.com", "keywords": [ "convert", "csv", @@ -9037,20 +9360,20 @@ "type": "github" } ], - "time": "2021-04-17T16:32:08+00:00" + "time": "2022-01-04T00:13:07+00:00" }, { "name": "league/flysystem", - "version": "1.1.5", + "version": "1.1.10", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem.git", - "reference": "18634df356bfd4119fe3d6156bdb990c414c14ea" + "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/18634df356bfd4119fe3d6156bdb990c414c14ea", - "reference": "18634df356bfd4119fe3d6156bdb990c414c14ea", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1", + "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1", "shasum": "" }, "require": { @@ -9123,7 +9446,7 @@ ], "support": { "issues": "https://github.com/thephpleague/flysystem/issues", - "source": "https://github.com/thephpleague/flysystem/tree/1.1.5" + "source": "https://github.com/thephpleague/flysystem/tree/1.1.10" }, "funding": [ { @@ -9131,7 +9454,7 @@ "type": "other" } ], - "time": "2021-08-17T13:49:42+00:00" + "time": "2022-10-04T09:16:37+00:00" }, { "name": "league/flysystem-replicate-adapter", @@ -9185,16 +9508,16 @@ }, { "name": "league/mime-type-detection", - "version": "1.7.0", + "version": "1.11.0", "source": { "type": "git", "url": "https://github.com/thephpleague/mime-type-detection.git", - "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3" + "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3", - "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3", + "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd", + "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd", "shasum": "" }, "require": { @@ -9202,7 +9525,7 @@ "php": "^7.2 || ^8.0" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^2.18", + "friendsofphp/php-cs-fixer": "^3.2", "phpstan/phpstan": "^0.12.68", "phpunit/phpunit": "^8.5.8 || ^9.3" }, @@ -9225,7 +9548,7 @@ "description": "Mime-type detection for Flysystem", "support": { "issues": "https://github.com/thephpleague/mime-type-detection/issues", - "source": "https://github.com/thephpleague/mime-type-detection/tree/1.7.0" + "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0" }, "funding": [ { @@ -9237,20 +9560,20 @@ "type": "tidelift" } ], - "time": "2021-01-18T20:58:21+00:00" + "time": "2022-04-17T13:12:02+00:00" }, { "name": "lsolesen/pel", - "version": "0.9.10", + "version": "0.9.12", "source": { "type": "git", "url": "https://github.com/pel/pel.git", - "reference": "04ecb8a29e4b1628414193b0df9294232a44f8a9" + "reference": "b95fe29cdacf9d36330da277f10910a13648c84c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pel/pel/zipball/04ecb8a29e4b1628414193b0df9294232a44f8a9", - "reference": "04ecb8a29e4b1628414193b0df9294232a44f8a9", + "url": "https://api.github.com/repos/pel/pel/zipball/b95fe29cdacf9d36330da277f10910a13648c84c", + "reference": "b95fe29cdacf9d36330da277f10910a13648c84c", "shasum": "" }, "require": { @@ -9295,35 +9618,38 @@ ], "support": { "issues": "https://github.com/pel/pel/issues", - "source": "https://github.com/pel/pel/tree/0.9.10" + "source": "https://github.com/pel/pel/tree/0.9.12" }, - "time": "2021-01-01T22:15:50+00:00" + "time": "2022-02-18T13:20:54+00:00" }, { "name": "maennchen/zipstream-php", - "version": "2.1.0", + "version": "2.2.6", "source": { "type": "git", "url": "https://github.com/maennchen/ZipStream-PHP.git", - "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58" + "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58", - "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58", + "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f", + "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f", "shasum": "" }, "require": { "myclabs/php-enum": "^1.5", - "php": ">= 7.1", + "php": "^7.4 || ^8.0", "psr/http-message": "^1.0", "symfony/polyfill-mbstring": "^1.0" }, "require-dev": { "ext-zip": "*", - "guzzlehttp/guzzle": ">= 6.3", + "friendsofphp/php-cs-fixer": "^3.9", + "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0", "mikey179/vfsstream": "^1.6", - "phpunit/phpunit": ">= 7.5" + "php-coveralls/php-coveralls": "^2.4", + "phpunit/phpunit": "^8.5.8 || ^9.4.2", + "vimeo/psalm": "^4.1" }, "type": "library", "autoload": { @@ -9360,7 +9686,7 @@ ], "support": { "issues": "https://github.com/maennchen/ZipStream-PHP/issues", - "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.1.0" + "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.2.6" }, "funding": [ { @@ -9372,7 +9698,7 @@ "type": "open_collective" } ], - "time": "2020-05-30T13:11:16+00:00" + "time": "2022-11-25T18:57:19+00:00" }, { "name": "masonry/masonry", @@ -9453,18 +9779,122 @@ }, "time": "2022-08-18T16:18:26+00:00" }, + { + "name": "ml/iri", + "version": "1.1.4", + "target-dir": "ML/IRI", + "source": { + "type": "git", + "url": "https://github.com/lanthaler/IRI.git", + "reference": "cbd44fa913e00ea624241b38cefaa99da8d71341" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/lanthaler/IRI/zipball/cbd44fa913e00ea624241b38cefaa99da8d71341", + "reference": "cbd44fa913e00ea624241b38cefaa99da8d71341", + "shasum": "" + }, + "require": { + "lib-pcre": ">=4.0", + "php": ">=5.3.0" + }, + "type": "library", + "autoload": { + "psr-0": { + "ML\\IRI": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Markus Lanthaler", + "email": "mail@markus-lanthaler.com", + "homepage": "http://www.markus-lanthaler.com", + "role": "Developer" + } + ], + "description": "IRI handling for PHP", + "homepage": "http://www.markus-lanthaler.com", + "keywords": [ + "URN", + "iri", + "uri", + "url" + ], + "support": { + "issues": "https://github.com/lanthaler/IRI/issues", + "source": "https://github.com/lanthaler/IRI/tree/master" + }, + "time": "2014-01-21T13:43:39+00:00" + }, + { + "name": "ml/json-ld", + "version": "1.2.1", + "source": { + "type": "git", + "url": "https://github.com/lanthaler/JsonLD.git", + "reference": "537e68e87a6bce23e57c575cd5dcac1f67ce25d8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/lanthaler/JsonLD/zipball/537e68e87a6bce23e57c575cd5dcac1f67ce25d8", + "reference": "537e68e87a6bce23e57c575cd5dcac1f67ce25d8", + "shasum": "" + }, + "require": { + "ext-json": "*", + "ml/iri": "^1.1.1", + "php": ">=5.3.0" + }, + "require-dev": { + "json-ld/tests": "1.0", + "phpunit/phpunit": "^4" + }, + "type": "library", + "autoload": { + "psr-4": { + "ML\\JsonLD\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Markus Lanthaler", + "email": "mail@markus-lanthaler.com", + "homepage": "http://www.markus-lanthaler.com", + "role": "Developer" + } + ], + "description": "JSON-LD Processor for PHP", + "homepage": "http://www.markus-lanthaler.com", + "keywords": [ + "JSON-LD", + "jsonld" + ], + "support": { + "issues": "https://github.com/lanthaler/JsonLD/issues", + "source": "https://github.com/lanthaler/JsonLD/tree/1.2.1" + }, + "time": "2022-09-29T08:45:17+00:00" + }, { "name": "monolog/monolog", - "version": "1.26.1", + "version": "1.27.1", "source": { "type": "git", "url": "https://github.com/Seldaek/monolog.git", - "reference": "c6b00f05152ae2c9b04a448f99c7590beb6042f5" + "reference": "904713c5929655dc9b97288b69cfeedad610c9a1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/c6b00f05152ae2c9b04a448f99c7590beb6042f5", - "reference": "c6b00f05152ae2c9b04a448f99c7590beb6042f5", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/904713c5929655dc9b97288b69cfeedad610c9a1", + "reference": "904713c5929655dc9b97288b69cfeedad610c9a1", "shasum": "" }, "require": { @@ -9525,7 +9955,7 @@ ], "support": { "issues": "https://github.com/Seldaek/monolog/issues", - "source": "https://github.com/Seldaek/monolog/tree/1.26.1" + "source": "https://github.com/Seldaek/monolog/tree/1.27.1" }, "funding": [ { @@ -9537,7 +9967,7 @@ "type": "tidelift" } ], - "time": "2021-05-28T08:32:12+00:00" + "time": "2022-06-09T08:53:42+00:00" }, { "name": "mtdowling/jmespath.php", @@ -9602,16 +10032,16 @@ }, { "name": "myclabs/php-enum", - "version": "1.8.3", + "version": "1.8.4", "source": { "type": "git", "url": "https://github.com/myclabs/php-enum.git", - "reference": "b942d263c641ddb5190929ff840c68f78713e937" + "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/php-enum/zipball/b942d263c641ddb5190929ff840c68f78713e937", - "reference": "b942d263c641ddb5190929ff840c68f78713e937", + "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483", + "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483", "shasum": "" }, "require": { @@ -9627,7 +10057,10 @@ "autoload": { "psr-4": { "MyCLabs\\Enum\\": "src/" - } + }, + "classmap": [ + "stubs/Stringable.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -9646,7 +10079,7 @@ ], "support": { "issues": "https://github.com/myclabs/php-enum/issues", - "source": "https://github.com/myclabs/php-enum/tree/1.8.3" + "source": "https://github.com/myclabs/php-enum/tree/1.8.4" }, "funding": [ { @@ -9658,7 +10091,7 @@ "type": "tidelift" } ], - "time": "2021-07-05T08:18:36+00:00" + "time": "2022-08-04T09:53:51+00:00" }, { "name": "namshi/jose", @@ -10023,20 +10456,23 @@ }, { "name": "phenx/php-font-lib", - "version": "0.5.2", + "version": "0.5.4", "source": { "type": "git", - "url": "https://github.com/PhenX/php-font-lib.git", - "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8" + "url": "https://github.com/dompdf/php-font-lib.git", + "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PhenX/php-font-lib/zipball/ca6ad461f032145fff5971b5985e5af9e7fa88d8", - "reference": "ca6ad461f032145fff5971b5985e5af9e7fa88d8", + "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/dd448ad1ce34c63d09baccd05415e361300c35b4", + "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4", "shasum": "" }, + "require": { + "ext-mbstring": "*" + }, "require-dev": { - "phpunit/phpunit": "^4.8.35 || ^5 || ^6 || ^7" + "symfony/phpunit-bridge": "^3 || ^4 || ^5" }, "type": "library", "autoload": { @@ -10057,10 +10493,10 @@ "description": "A library to read, parse, export and make subsets of different types of font files.", "homepage": "https://github.com/PhenX/php-font-lib", "support": { - "issues": "https://github.com/PhenX/php-font-lib/issues", - "source": "https://github.com/PhenX/php-font-lib/tree/0.5.2" + "issues": "https://github.com/dompdf/php-font-lib/issues", + "source": "https://github.com/dompdf/php-font-lib/tree/0.5.4" }, - "time": "2020-03-08T15:31:32+00:00" + "time": "2021-12-17T19:44:54+00:00" }, { "name": "phpfastcache/riak-client", @@ -10140,16 +10576,16 @@ }, { "name": "phpmailer/phpmailer", - "version": "v6.5.1", + "version": "v6.7.1", "source": { "type": "git", "url": "https://github.com/PHPMailer/PHPMailer.git", - "reference": "dd803df5ad7492e1b40637f7ebd258fee5ca7355" + "reference": "49cd7ea3d2563f028d7811f06864a53b1f15ff55" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/dd803df5ad7492e1b40637f7ebd258fee5ca7355", - "reference": "dd803df5ad7492e1b40637f7ebd258fee5ca7355", + "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/49cd7ea3d2563f028d7811f06864a53b1f15ff55", + "reference": "49cd7ea3d2563f028d7811f06864a53b1f15ff55", "shasum": "" }, "require": { @@ -10159,22 +10595,24 @@ "php": ">=5.5.0" }, "require-dev": { - "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", - "doctrine/annotations": "^1.2", - "php-parallel-lint/php-console-highlighter": "^0.5.0", - "php-parallel-lint/php-parallel-lint": "^1.3", + "dealerdirect/phpcodesniffer-composer-installer": "^0.7.2", + "doctrine/annotations": "^1.2.6 || ^1.13.3", + "php-parallel-lint/php-console-highlighter": "^1.0.0", + "php-parallel-lint/php-parallel-lint": "^1.3.2", "phpcompatibility/php-compatibility": "^9.3.5", "roave/security-advisories": "dev-latest", - "squizlabs/php_codesniffer": "^3.6.0", - "yoast/phpunit-polyfills": "^1.0.0" + "squizlabs/php_codesniffer": "^3.7.1", + "yoast/phpunit-polyfills": "^1.0.4" }, "suggest": { "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses", + "ext-openssl": "Needed for secure SMTP sending and DKIM signing", + "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication", "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication", "league/oauth2-google": "Needed for Google XOAUTH2 authentication", "psr/log": "For optional PSR-3 debug logging", - "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication", - "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)" + "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)", + "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication" }, "type": "library", "autoload": { @@ -10206,7 +10644,7 @@ "description": "PHPMailer is a full-featured email creation and transfer class for PHP", "support": { "issues": "https://github.com/PHPMailer/PHPMailer/issues", - "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.5.1" + "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.7.1" }, "funding": [ { @@ -10214,33 +10652,37 @@ "type": "github" } ], - "time": "2021-08-18T09:14:16+00:00" + "time": "2022-12-08T13:30:06+00:00" }, { "name": "phpoption/phpoption", - "version": "1.7.5", + "version": "1.9.0", "source": { "type": "git", "url": "https://github.com/schmittjoh/php-option.git", - "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525" + "reference": "dc5ff11e274a90cc1c743f66c9ad700ce50db9ab" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525", - "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dc5ff11e274a90cc1c743f66c9ad700ce50db9ab", + "reference": "dc5ff11e274a90cc1c743f66c9ad700ce50db9ab", "shasum": "" }, "require": { - "php": "^5.5.9 || ^7.0 || ^8.0" + "php": "^7.2.5 || ^8.0" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.4.1", - "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0" + "bamarni/composer-bin-plugin": "^1.8", + "phpunit/phpunit": "^8.5.28 || ^9.5.21" }, "type": "library", "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": true + }, "branch-alias": { - "dev-master": "1.7-dev" + "dev-master": "1.9-dev" } }, "autoload": { @@ -10255,11 +10697,13 @@ "authors": [ { "name": "Johannes M. Schmitt", - "email": "schmittjoh@gmail.com" + "email": "schmittjoh@gmail.com", + "homepage": "https://github.com/schmittjoh" }, { "name": "Graham Campbell", - "email": "graham@alt-three.com" + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" } ], "description": "Option Type for PHP", @@ -10271,7 +10715,7 @@ ], "support": { "issues": "https://github.com/schmittjoh/php-option/issues", - "source": "https://github.com/schmittjoh/php-option/tree/1.7.5" + "source": "https://github.com/schmittjoh/php-option/tree/1.9.0" }, "funding": [ { @@ -10283,28 +10727,28 @@ "type": "tidelift" } ], - "time": "2020-07-20T17:29:33+00:00" + "time": "2022-07-30T15:51:26+00:00" }, { "name": "pimple/pimple", - "version": "v3.4.0", + "version": "v3.5.0", "source": { "type": "git", "url": "https://github.com/silexphp/Pimple.git", - "reference": "86406047271859ffc13424a048541f4531f53601" + "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/silexphp/Pimple/zipball/86406047271859ffc13424a048541f4531f53601", - "reference": "86406047271859ffc13424a048541f4531f53601", + "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed", + "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed", "shasum": "" }, "require": { "php": ">=7.2.5", - "psr/container": "^1.1" + "psr/container": "^1.1 || ^2.0" }, "require-dev": { - "symfony/phpunit-bridge": "^5.0" + "symfony/phpunit-bridge": "^5.4@dev" }, "type": "library", "extra": { @@ -10334,9 +10778,9 @@ "dependency injection" ], "support": { - "source": "https://github.com/silexphp/Pimple/tree/v3.4.0" + "source": "https://github.com/silexphp/Pimple/tree/v3.5.0" }, - "time": "2021-03-06T08:28:00+00:00" + "time": "2021-10-28T11:13:42+00:00" }, { "name": "psr/cache", @@ -10697,16 +11141,16 @@ }, { "name": "psy/psysh", - "version": "v0.10.8", + "version": "v0.10.12", "source": { "type": "git", "url": "https://github.com/bobthecow/psysh.git", - "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3" + "reference": "a0d9981aa07ecfcbea28e4bfa868031cca121e7d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bobthecow/psysh/zipball/e4573f47750dd6c92dca5aee543fa77513cbd8d3", - "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a0d9981aa07ecfcbea28e4bfa868031cca121e7d", + "reference": "a0d9981aa07ecfcbea28e4bfa868031cca121e7d", "shasum": "" }, "require": { @@ -10766,9 +11210,9 @@ ], "support": { "issues": "https://github.com/bobthecow/psysh/issues", - "source": "https://github.com/bobthecow/psysh/tree/v0.10.8" + "source": "https://github.com/bobthecow/psysh/tree/v0.10.12" }, - "time": "2021-04-10T16:23:39+00:00" + "time": "2021-11-30T14:05:36+00:00" }, { "name": "ralouphie/getallheaders", @@ -11124,29 +11568,30 @@ }, { "name": "simplesamlphp/composer-module-installer", - "version": "v1.1.8", + "version": "v1.2.0", "source": { "type": "git", "url": "https://github.com/simplesamlphp/composer-module-installer.git", - "reference": "45161b5406f3e9c82459d0f9a5a1dba064953cfa" + "reference": "27b4fe96198ffaff3ab49c87b40f4cb24de77b01" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/composer-module-installer/zipball/45161b5406f3e9c82459d0f9a5a1dba064953cfa", - "reference": "45161b5406f3e9c82459d0f9a5a1dba064953cfa", + "url": "https://api.github.com/repos/simplesamlphp/composer-module-installer/zipball/27b4fe96198ffaff3ab49c87b40f4cb24de77b01", + "reference": "27b4fe96198ffaff3ab49c87b40f4cb24de77b01", "shasum": "" }, "require": { - "composer-plugin-api": "^1.1|^2.0", + "composer-plugin-api": "^1.1 || ^2.0", + "php": "^7.4 || ^8.0", "simplesamlphp/simplesamlphp": "*" }, "type": "composer-plugin", "extra": { - "class": "SimpleSamlPhp\\Composer\\ModuleInstallerPlugin" + "class": "SimpleSAML\\Composer\\ModuleInstallerPlugin" }, "autoload": { - "psr-0": { - "SimpleSamlPhp\\Composer": "src/" + "psr-4": { + "SimpleSAML\\Composer\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -11156,22 +11601,22 @@ "description": "A Composer plugin that allows installing SimpleSAMLphp modules through Composer.", "support": { "issues": "https://github.com/simplesamlphp/composer-module-installer/issues", - "source": "https://github.com/simplesamlphp/composer-module-installer/tree/v1.1.8" + "source": "https://github.com/simplesamlphp/composer-module-installer/tree/v1.2.0" }, - "time": "2020-08-25T19:04:33+00:00" + "time": "2022-08-31T17:20:27+00:00" }, { "name": "simplesamlphp/saml2", - "version": "v4.2.4", + "version": "v4.6.5", "source": { "type": "git", "url": "https://github.com/simplesamlphp/saml2.git", - "reference": "8e3ad89b97d2f2f922f67894675e3460feab2209" + "reference": "35e4cac48ef97d454d25a92eb24c85cadf96de9d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/saml2/zipball/8e3ad89b97d2f2f922f67894675e3460feab2209", - "reference": "8e3ad89b97d2f2f922f67894675e3460feab2209", + "url": "https://api.github.com/repos/simplesamlphp/saml2/zipball/35e4cac48ef97d454d25a92eb24c85cadf96de9d", + "reference": "35e4cac48ef97d454d25a92eb24c85cadf96de9d", "shasum": "" }, "require": { @@ -11179,7 +11624,7 @@ "ext-openssl": "*", "ext-zlib": "*", "php": ">=7.1 || ^8.0", - "psr/log": "~1.1", + "psr/log": "~1.1 || ^2.0 || ^3.0", "robrichards/xmlseclibs": "^3.1.1", "webmozart/assert": "^1.9" }, @@ -11214,22 +11659,22 @@ "description": "SAML2 PHP library from SimpleSAMLphp", "support": { "issues": "https://github.com/simplesamlphp/saml2/issues", - "source": "https://github.com/simplesamlphp/saml2/tree/v4.2.4" + "source": "https://github.com/simplesamlphp/saml2/tree/v4.6.5" }, - "time": "2021-08-24T12:21:57+00:00" + "time": "2022-11-23T12:50:43+00:00" }, { "name": "simplesamlphp/simplesamlphp", - "version": "v1.19.1", + "version": "v1.19.7", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp.git", - "reference": "59e08962c3890fc7be737591c3743fcbf770baa3" + "reference": "f62565d62e0d4e5f105008608faa96949acf854b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp/zipball/59e08962c3890fc7be737591c3743fcbf770baa3", - "reference": "59e08962c3890fc7be737591c3743fcbf770baa3", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp/zipball/f62565d62e0d4e5f105008608faa96949acf854b", + "reference": "f62565d62e0d4e5f105008608faa96949acf854b", "shasum": "" }, "require": { @@ -11242,13 +11687,13 @@ "ext-pcre": "*", "ext-spl": "*", "ext-zlib": "*", - "gettext/gettext": "^4.8", - "php": ">=7.1 <8.0", + "gettext/gettext": "^4.8.7", + "php": ">=7.1|^8", "phpmailer/phpmailer": "^6.1", "robrichards/xmlseclibs": "^3.1", "simplesamlphp/assert": "^0.0.13", - "simplesamlphp/saml2": "^4.2", - "simplesamlphp/simplesamlphp-module-adfs": "^0.9", + "simplesamlphp/saml2": "^4.5", + "simplesamlphp/simplesamlphp-module-adfs": "^1.0", "simplesamlphp/simplesamlphp-module-authcrypt": "^0.9", "simplesamlphp/simplesamlphp-module-authfacebook": "^0.9", "simplesamlphp/simplesamlphp-module-authorize": "^0.9", @@ -11260,15 +11705,15 @@ "simplesamlphp/simplesamlphp-module-cdc": "^0.9", "simplesamlphp/simplesamlphp-module-consent": "^0.9", "simplesamlphp/simplesamlphp-module-consentadmin": "^0.9", - "simplesamlphp/simplesamlphp-module-discopower": "^0.9", + "simplesamlphp/simplesamlphp-module-discopower": "^0.10", "simplesamlphp/simplesamlphp-module-exampleattributeserver": "^1.0", "simplesamlphp/simplesamlphp-module-expirycheck": "^0.9", "simplesamlphp/simplesamlphp-module-ldap": "^0.9 | ^1.0", "simplesamlphp/simplesamlphp-module-memcachemonitor": "^0.9", "simplesamlphp/simplesamlphp-module-memcookie": "^1.2", - "simplesamlphp/simplesamlphp-module-metarefresh": "^0.9", + "simplesamlphp/simplesamlphp-module-metarefresh": "^0.10", "simplesamlphp/simplesamlphp-module-negotiate": "^0.9", - "simplesamlphp/simplesamlphp-module-oauth": "^0.9", + "simplesamlphp/simplesamlphp-module-oauth": "^0.9.3", "simplesamlphp/simplesamlphp-module-preprodwarning": "^0.9", "simplesamlphp/simplesamlphp-module-radius": "^0.9", "simplesamlphp/simplesamlphp-module-riak": "^0.9", @@ -11288,7 +11733,7 @@ "symfony/routing": "^4.4 || ^5.0", "symfony/var-exporter": "^4.4 || ^5.0", "symfony/yaml": "^4.4 || ^5.0", - "twig/twig": "^1.43 || ^2.0" + "twig/twig": "^2.15.3" }, "require-dev": { "ext-curl": "*", @@ -11348,32 +11793,30 @@ "issues": "https://github.com/simplesamlphp/simplesamlphp/issues", "source": "https://github.com/simplesamlphp/simplesamlphp" }, - "time": "2021-04-29T10:11:23+00:00" + "time": "2022-12-05T19:46:47+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-adfs", - "version": "v0.9.8", + "version": "v1.0.9", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-adfs.git", - "reference": "ac2ba46a6b94ed48b527ac190b0fa99bcda8d98e" + "reference": "c47daabc262b7e14a76879015fd9db85319752ec" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-adfs/zipball/ac2ba46a6b94ed48b527ac190b0fa99bcda8d98e", - "reference": "ac2ba46a6b94ed48b527ac190b0fa99bcda8d98e", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-adfs/zipball/c47daabc262b7e14a76879015fd9db85319752ec", + "reference": "c47daabc262b7e14a76879015fd9db85319752ec", "shasum": "" }, "require": { - "php": ">=5.6", - "simplesamlphp/composer-module-installer": "~1.1" + "php": ">=7.1", + "simplesamlphp/assert": "^0.0.13", + "simplesamlphp/composer-module-installer": "^1.1.7" }, "require-dev": { - "phpunit/phpunit": "~5.7", - "sensiolabs/security-checker": "^5.0", - "simplesamlphp/simplesamlphp": "^1.17", - "simplesamlphp/simplesamlphp-test-framework": "^0.0.15", - "webmozart/assert": "<1.7" + "simplesamlphp/simplesamlphp": "^1.18", + "simplesamlphp/simplesamlphp-test-framework": "^0.1.2" }, "type": "simplesamlphp-module", "autoload": { @@ -11397,23 +11840,23 @@ "simplesamlphp" ], "support": { - "issues": "https://github.com/tvdijen/simplesamlphp-module-adfs/issues", - "source": "https://github.com/tvdijen/simplesamlphp-module-adfs" + "issues": "https://github.com/simplesamlphp/simplesamlphp-module-adfs/issues", + "source": "https://github.com/simplesamlphp/simplesamlphp-module-adfs" }, - "time": "2021-08-17T07:54:07+00:00" + "time": "2022-04-11T10:24:25+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-authcrypt", - "version": "v0.9.3", + "version": "v0.9.4", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-authcrypt.git", - "reference": "9a2c1a761e2d94394a4f2d3499fd6f0853899530" + "reference": "62555123e61b11463be3cd7adb708562023cff28" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-authcrypt/zipball/9a2c1a761e2d94394a4f2d3499fd6f0853899530", - "reference": "9a2c1a761e2d94394a4f2d3499fd6f0853899530", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-authcrypt/zipball/62555123e61b11463be3cd7adb708562023cff28", + "reference": "62555123e61b11463be3cd7adb708562023cff28", "shasum": "" }, "require": { @@ -11451,7 +11894,7 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-authcrypt/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-authcrypt" }, - "time": "2021-01-08T09:09:33+00:00" + "time": "2022-01-03T20:50:47+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-authfacebook", @@ -11509,16 +11952,16 @@ }, { "name": "simplesamlphp/simplesamlphp-module-authorize", - "version": "v0.9.3", + "version": "v0.9.4", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-authorize.git", - "reference": "0593bfcb84fca9d9133f415246ab8ca51b412c92" + "reference": "4c7ce4eaa54fc301f131c62e803fc843e4d88056" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-authorize/zipball/0593bfcb84fca9d9133f415246ab8ca51b412c92", - "reference": "0593bfcb84fca9d9133f415246ab8ca51b412c92", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-authorize/zipball/4c7ce4eaa54fc301f131c62e803fc843e4d88056", + "reference": "4c7ce4eaa54fc301f131c62e803fc843e4d88056", "shasum": "" }, "require": { @@ -11554,20 +11997,20 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-authorize/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-authorize" }, - "time": "2021-03-24T10:37:17+00:00" + "time": "2022-01-03T20:56:53+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-authtwitter", - "version": "v0.9.1", + "version": "v0.9.3", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-authtwitter.git", - "reference": "29a15e58061222632fea9eb2c807aef5e2c0d54a" + "reference": "6e178e7aae7827a64dc462b5bb2f28d6eddc4381" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-authtwitter/zipball/29a15e58061222632fea9eb2c807aef5e2c0d54a", - "reference": "29a15e58061222632fea9eb2c807aef5e2c0d54a", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-authtwitter/zipball/6e178e7aae7827a64dc462b5bb2f28d6eddc4381", + "reference": "6e178e7aae7827a64dc462b5bb2f28d6eddc4381", "shasum": "" }, "require": { @@ -11577,7 +12020,8 @@ }, "require-dev": { "phpunit/phpunit": "~4.8.35", - "simplesamlphp/simplesamlphp": "^1.17" + "simplesamlphp/simplesamlphp": "^1.17", + "webmozart/assert": "<1.7" }, "type": "simplesamlphp-module", "autoload": { @@ -11587,7 +12031,7 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-3.0-or-later" + "LGPL-2.1-or-later" ], "authors": [ { @@ -11608,7 +12052,7 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-authtwitter/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-authtwitter" }, - "time": "2019-12-03T09:00:09+00:00" + "time": "2022-01-03T23:01:48+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-authwindowslive", @@ -11668,16 +12112,16 @@ }, { "name": "simplesamlphp/simplesamlphp-module-authx509", - "version": "v0.9.8", + "version": "v0.9.9", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-authX509.git", - "reference": "66525b1ec4145ec8d0d0e9db4534624b6be4c1fb" + "reference": "b138f41b2bc725371f42abb63b5a39ac11b5432a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-authX509/zipball/66525b1ec4145ec8d0d0e9db4534624b6be4c1fb", - "reference": "66525b1ec4145ec8d0d0e9db4534624b6be4c1fb", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-authX509/zipball/b138f41b2bc725371f42abb63b5a39ac11b5432a", + "reference": "b138f41b2bc725371f42abb63b5a39ac11b5432a", "shasum": "" }, "require": { @@ -11721,20 +12165,20 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-authx509/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-authx509" }, - "time": "2020-12-15T23:06:47+00:00" + "time": "2022-01-06T19:02:38+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-authyubikey", - "version": "v0.9.1", + "version": "v0.9.3", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-authyubikey.git", - "reference": "8c27bfeb4981d2e6fa40a831e945f40c5a4ad3d2" + "reference": "414e2a73da4adfee6d97ba66e852ec7c85369913" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-authyubikey/zipball/8c27bfeb4981d2e6fa40a831e945f40c5a4ad3d2", - "reference": "8c27bfeb4981d2e6fa40a831e945f40c5a4ad3d2", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-authyubikey/zipball/414e2a73da4adfee6d97ba66e852ec7c85369913", + "reference": "414e2a73da4adfee6d97ba66e852ec7c85369913", "shasum": "" }, "require": { @@ -11748,7 +12192,7 @@ }, "type": "simplesamlphp-module", "extra": { - "ssp-mixedcase-module-name": "authYubikey" + "ssp-mixedcase-module-name": "authYubiKey" }, "autoload": { "psr-4": { @@ -11757,7 +12201,7 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-3.0-or-later" + "LGPL-2.1-or-later" ], "authors": [ { @@ -11774,7 +12218,7 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-authyubikey/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-authyubikey" }, - "time": "2019-12-03T08:52:49+00:00" + "time": "2022-01-06T19:07:32+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-cas", @@ -11829,16 +12273,16 @@ }, { "name": "simplesamlphp/simplesamlphp-module-cdc", - "version": "v0.9.1", + "version": "v0.9.2", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-cdc.git", - "reference": "16a5bfac7299e04e5feb472af328e07598708166" + "reference": "92498fc3004c02849d96da29ca472d99ed23af73" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-cdc/zipball/16a5bfac7299e04e5feb472af328e07598708166", - "reference": "16a5bfac7299e04e5feb472af328e07598708166", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-cdc/zipball/92498fc3004c02849d96da29ca472d99ed23af73", + "reference": "92498fc3004c02849d96da29ca472d99ed23af73", "shasum": "" }, "require": { @@ -11846,7 +12290,8 @@ }, "require-dev": { "phpunit/phpunit": "~5.7", - "simplesamlphp/simplesamlphp": "^1.17" + "simplesamlphp/simplesamlphp": "^1.17", + "webmozart/assert": "<1.7" }, "type": "simplesamlphp-module", "autoload": { @@ -11856,7 +12301,7 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-3.0-or-later" + "LGPL-2.1-or-later" ], "authors": [ { @@ -11878,20 +12323,20 @@ "issues": "https://github.com/simplesamlphp/simplesamlphp-module-cdc/issues", "source": "https://github.com/simplesamlphp/simplesamlphp-module-cdc/" }, - "time": "2019-12-03T09:04:11+00:00" + "time": "2022-01-06T19:27:16+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-consent", - "version": "v0.9.6", + "version": "v0.9.8", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-consent.git", - "reference": "2f84d15e96afb5a32b6d1cff93370f501ca7867d" + "reference": "8466b0b7c6207b15ca5e265f436299ff2dec85da" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-consent/zipball/2f84d15e96afb5a32b6d1cff93370f501ca7867d", - "reference": "2f84d15e96afb5a32b6d1cff93370f501ca7867d", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-consent/zipball/8466b0b7c6207b15ca5e265f436299ff2dec85da", + "reference": "8466b0b7c6207b15ca5e265f436299ff2dec85da", "shasum": "" }, "require": { @@ -11901,7 +12346,7 @@ "require-dev": { "phpunit/phpunit": "~5.7", "simplesamlphp/simplesamlphp": "^1.17", - "webmozart/assert": "<1.7" + "webmozart/assert": "<1.6" }, "type": "simplesamlphp-module", "autoload": { @@ -11928,20 +12373,20 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-consent/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-consent" }, - "time": "2020-06-15T14:26:23+00:00" + "time": "2022-01-06T19:17:22+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-consentadmin", - "version": "v0.9.1", + "version": "v0.9.2", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-consentadmin.git", - "reference": "466e8d0d751f0080162d78e63ab2e125b24d17a1" + "reference": "62dc5e9d5b1a12a73549c80140b7224d7f7d1c2e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-consentadmin/zipball/466e8d0d751f0080162d78e63ab2e125b24d17a1", - "reference": "466e8d0d751f0080162d78e63ab2e125b24d17a1", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-consentadmin/zipball/62dc5e9d5b1a12a73549c80140b7224d7f7d1c2e", + "reference": "62dc5e9d5b1a12a73549c80140b7224d7f7d1c2e", "shasum": "" }, "require": { @@ -11960,7 +12405,7 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-3.0-or-later" + "LGPL-2.1-or-later" ], "authors": [ { @@ -11981,30 +12426,29 @@ "issues": "https://github.com/simplesamlphp/simplesamlphp-module-consentadmin/issues", "source": "https://github.com/simplesamlphp/simplesamlphp-module-consentadmin" }, - "time": "2019-12-03T09:06:40+00:00" + "time": "2022-01-06T19:19:38+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-discopower", - "version": "v0.9.1", + "version": "v0.10.1", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-discopower.git", - "reference": "006c0617610f1bae11cf4d17e8ce4c509239a60e" + "reference": "4cb6b7c648b455586903b8932a171397375b50b0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-discopower/zipball/006c0617610f1bae11cf4d17e8ce4c509239a60e", - "reference": "006c0617610f1bae11cf4d17e8ce4c509239a60e", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-discopower/zipball/4cb6b7c648b455586903b8932a171397375b50b0", + "reference": "4cb6b7c648b455586903b8932a171397375b50b0", "shasum": "" }, "require": { - "php": ">=5.6", - "simplesamlphp/composer-module-installer": "~1.1", - "webmozart/assert": "~1.4" + "php": ">=7.1", + "simplesamlphp/composer-module-installer": "~1.1" }, "require-dev": { - "phpunit/phpunit": "~5.7", - "simplesamlphp/simplesamlphp": "^1.17" + "simplesamlphp/simplesamlphp": "^1.19", + "simplesamlphp/simplesamlphp-test-framework": "^0.1.2" }, "type": "simplesamlphp-module", "autoload": { @@ -12014,7 +12458,7 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-3.0-or-later" + "LGPL-2.1-or-later" ], "authors": [ { @@ -12032,7 +12476,7 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-discopower/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-discopower" }, - "time": "2019-11-27T20:34:37+00:00" + "time": "2021-08-17T14:29:22+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-exampleattributeserver", @@ -12085,26 +12529,25 @@ }, { "name": "simplesamlphp/simplesamlphp-module-expirycheck", - "version": "v0.9.3", + "version": "v0.9.4", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-expirycheck.git", - "reference": "59c59cdf87e2679257b46c07bb4c27666a11cc20" + "reference": "02101497281031befba93c48c96ee9133f57241d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-expirycheck/zipball/59c59cdf87e2679257b46c07bb4c27666a11cc20", - "reference": "59c59cdf87e2679257b46c07bb4c27666a11cc20", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-expirycheck/zipball/02101497281031befba93c48c96ee9133f57241d", + "reference": "02101497281031befba93c48c96ee9133f57241d", "shasum": "" }, "require": { "php": ">=5.6", - "simplesamlphp/composer-module-installer": "~1.1", - "webmozart/assert": "~1.4" + "simplesamlphp/composer-module-installer": "~1.1" }, "require-dev": { - "simplesamlphp/simplesamlphp": "^1.17", - "simplesamlphp/simplesamlphp-test-framework": "^0.0.10" + "phpunit/phpunit": "~5.7", + "simplesamlphp/simplesamlphp": "^1.17" }, "type": "simplesamlphp-module", "autoload": { @@ -12114,7 +12557,7 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-3.0-or-later" + "LGPL-2.1-or-later" ], "authors": [ { @@ -12128,23 +12571,23 @@ "simplesamlphp" ], "support": { - "issues": "https://github.com/simplesamlphp/simplesamlphp-module-expirycheck/issues", - "source": "https://github.com/simplesamlphp/simplesamlphp-module-expirycheck" + "issues": "https://github.com/tvdijen/simplesamlphp-module-expirycheck/issues", + "source": "https://github.com/tvdijen/simplesamlphp-module-expirycheck" }, - "time": "2019-12-14T13:20:46+00:00" + "time": "2022-01-06T21:16:01+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-ldap", - "version": "v0.9.10", + "version": "v0.9.17", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-ldap.git", - "reference": "78f04cbe41bfb9dcbcdeff4b5f12e67c060e1a77" + "reference": "40f1bfe0c4ac2f91cf8e52d22fa6ec2fe1c03066" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-ldap/zipball/78f04cbe41bfb9dcbcdeff4b5f12e67c060e1a77", - "reference": "78f04cbe41bfb9dcbcdeff4b5f12e67c060e1a77", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-ldap/zipball/40f1bfe0c4ac2f91cf8e52d22fa6ec2fe1c03066", + "reference": "40f1bfe0c4ac2f91cf8e52d22fa6ec2fe1c03066", "shasum": "" }, "require": { @@ -12187,20 +12630,20 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-ldap/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-ldap" }, - "time": "2020-09-16T21:09:07+00:00" + "time": "2022-01-11T12:50:47+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-memcachemonitor", - "version": "v0.9.2", + "version": "v0.9.3", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-memcachemonitor.git", - "reference": "900b5c6b59913d9013b8dae090841a127ae55ae5" + "reference": "8d25463ac56b4e2294f59f622a6658e0c67086f4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-memcachemonitor/zipball/900b5c6b59913d9013b8dae090841a127ae55ae5", - "reference": "900b5c6b59913d9013b8dae090841a127ae55ae5", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-memcachemonitor/zipball/8d25463ac56b4e2294f59f622a6658e0c67086f4", + "reference": "8d25463ac56b4e2294f59f622a6658e0c67086f4", "shasum": "" }, "require": { @@ -12238,7 +12681,7 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-memcachemonitor/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-memcachemonitor" }, - "time": "2021-01-25T15:44:44+00:00" + "time": "2022-01-06T22:37:15+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-memcookie", @@ -12294,16 +12737,16 @@ }, { "name": "simplesamlphp/simplesamlphp-module-metarefresh", - "version": "v0.9.6", + "version": "v0.10.0", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-metarefresh.git", - "reference": "e284306a7097297765b5b78a4e28f19f18d4e001" + "reference": "488d7809857c274befac89facfa03520a05bc1ba" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-metarefresh/zipball/e284306a7097297765b5b78a4e28f19f18d4e001", - "reference": "e284306a7097297765b5b78a4e28f19f18d4e001", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-metarefresh/zipball/488d7809857c274befac89facfa03520a05bc1ba", + "reference": "488d7809857c274befac89facfa03520a05bc1ba", "shasum": "" }, "require": { @@ -12339,20 +12782,20 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-metarefresh/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-metarefresh" }, - "time": "2020-07-31T14:43:37+00:00" + "time": "2022-05-03T08:57:30+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-negotiate", - "version": "v0.9.11", + "version": "v0.9.12", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-negotiate.git", - "reference": "e7c4597110c753a750cd522220fc2a5a34b7c1b8" + "reference": "48752cea80e81a60ebb522cc10789589ac16df50" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-negotiate/zipball/e7c4597110c753a750cd522220fc2a5a34b7c1b8", - "reference": "e7c4597110c753a750cd522220fc2a5a34b7c1b8", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-negotiate/zipball/48752cea80e81a60ebb522cc10789589ac16df50", + "reference": "48752cea80e81a60ebb522cc10789589ac16df50", "shasum": "" }, "require": { @@ -12393,23 +12836,23 @@ "simplesamlphp" ], "support": { - "issues": "https://github.com/tvdijen/simplesamlphp-module-negotiate/issues", - "source": "https://github.com/tvdijen/simplesamlphp-module-negotiate" + "issues": "https://github.com/simplesamlphp/simplesamlphp-module-negotiate/issues", + "source": "https://github.com/simplesamlphp/simplesamlphp-module-negotiate" }, - "time": "2021-05-17T11:01:39+00:00" + "time": "2022-01-03T23:18:27+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-oauth", - "version": "v0.9.2", + "version": "v0.9.3", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-oauth.git", - "reference": "d14d7aca6e699ec12b3f4dd0128373faa1a2cc61" + "reference": "2a2433144dca408315e4ee163f9ab73a6110b2b1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-oauth/zipball/d14d7aca6e699ec12b3f4dd0128373faa1a2cc61", - "reference": "d14d7aca6e699ec12b3f4dd0128373faa1a2cc61", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-oauth/zipball/2a2433144dca408315e4ee163f9ab73a6110b2b1", + "reference": "2a2433144dca408315e4ee163f9ab73a6110b2b1", "shasum": "" }, "require": { @@ -12420,6 +12863,11 @@ "simplesamlphp/simplesamlphp": "^1.17" }, "type": "simplesamlphp-module", + "autoload": { + "psr-4": { + "SimpleSAML\\Module\\oauth\\": "lib/" + } + }, "notification-url": "https://packagist.org/downloads/", "license": [ "LGPL-2.1-or-later" @@ -12445,29 +12893,29 @@ "source": "https://github.com/simplesamlphp/simplesamlphp-module-oauth/" }, "abandoned": true, - "time": "2020-04-29T19:37:43+00:00" + "time": "2021-08-31T18:55:00+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-preprodwarning", - "version": "v0.9.2", + "version": "v0.9.3", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-preprodwarning.git", - "reference": "8e032de33a75eb44857dc06d886ad94ee3af4638" + "reference": "b3c6d9d41d009e340f4843ce5c24b4118a38e4c3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-preprodwarning/zipball/8e032de33a75eb44857dc06d886ad94ee3af4638", - "reference": "8e032de33a75eb44857dc06d886ad94ee3af4638", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-preprodwarning/zipball/b3c6d9d41d009e340f4843ce5c24b4118a38e4c3", + "reference": "b3c6d9d41d009e340f4843ce5c24b4118a38e4c3", "shasum": "" }, "require": { - "php": ">=5.6", + "php": ">=7.0", "simplesamlphp/composer-module-installer": "~1.1" }, "require-dev": { "phpunit/phpunit": "~5.7", - "simplesamlphp/simplesamlphp": "^1.17", + "simplesamlphp/simplesamlphp": "dev-simplesamlphp-1.19", "webmozart/assert": "^1.4" }, "type": "simplesamlphp-module", @@ -12495,20 +12943,20 @@ "issues": "https://github.com/simplesamlphp/simplesamlphp-module-preprodwarning/issues", "source": "https://github.com/simplesamlphp/simplesamlphp-module-preprodwarning" }, - "time": "2020-04-09T13:05:27+00:00" + "time": "2022-01-06T23:21:17+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-radius", - "version": "v0.9.3", + "version": "v0.9.4", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-radius.git", - "reference": "36bd0f39f9a13f7eb96ead97c97c3634aa1c3f2d" + "reference": "dbe2976ba27f5131faeca368a5665f8baeaae8b6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-radius/zipball/36bd0f39f9a13f7eb96ead97c97c3634aa1c3f2d", - "reference": "36bd0f39f9a13f7eb96ead97c97c3634aa1c3f2d", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-radius/zipball/dbe2976ba27f5131faeca368a5665f8baeaae8b6", + "reference": "dbe2976ba27f5131faeca368a5665f8baeaae8b6", "shasum": "" }, "require": { @@ -12528,7 +12976,7 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-3.0-or-later" + "LGPL-2.1-or-later" ], "authors": [ { @@ -12545,7 +12993,7 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-radius/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-radius" }, - "time": "2019-10-03T18:13:07+00:00" + "time": "2022-01-06T23:23:28+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-riak", @@ -12650,16 +13098,16 @@ }, { "name": "simplesamlphp/simplesamlphp-module-smartattributes", - "version": "v0.9.1", + "version": "v0.9.2", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-smartattributes.git", - "reference": "b45d3ecd916e359a9cae05f9ae9df09b5c42f4e6" + "reference": "ba6a32fa287db0f8d767104471176f70fad7f0e1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-smartattributes/zipball/b45d3ecd916e359a9cae05f9ae9df09b5c42f4e6", - "reference": "b45d3ecd916e359a9cae05f9ae9df09b5c42f4e6", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-smartattributes/zipball/ba6a32fa287db0f8d767104471176f70fad7f0e1", + "reference": "ba6a32fa287db0f8d767104471176f70fad7f0e1", "shasum": "" }, "require": { @@ -12678,7 +13126,7 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-3.0-or-later" + "LGPL-2.1-or-later" ], "authors": [ { @@ -12695,20 +13143,20 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-smartattributes/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-smartattributes" }, - "time": "2019-12-03T09:24:09+00:00" + "time": "2022-01-06T23:42:07+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-sqlauth", - "version": "v0.9.3", + "version": "v0.9.4", "source": { "type": "git", "url": "https://github.com/simplesamlphp/simplesamlphp-module-sqlauth.git", - "reference": "c2dc4fc8aa6d8b2408131e09b39f06d8610ff374" + "reference": "8a28f9a9726bab1dbc8fd3734daa08882dd0a25b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-sqlauth/zipball/c2dc4fc8aa6d8b2408131e09b39f06d8610ff374", - "reference": "c2dc4fc8aa6d8b2408131e09b39f06d8610ff374", + "url": "https://api.github.com/repos/simplesamlphp/simplesamlphp-module-sqlauth/zipball/8a28f9a9726bab1dbc8fd3734daa08882dd0a25b", + "reference": "8a28f9a9726bab1dbc8fd3734daa08882dd0a25b", "shasum": "" }, "require": { @@ -12745,7 +13193,7 @@ "issues": "https://github.com/tvdijen/simplesamlphp-module-sqlauth/issues", "source": "https://github.com/tvdijen/simplesamlphp-module-sqlauth" }, - "time": "2021-04-29T16:51:59+00:00" + "time": "2022-01-06T23:50:52+00:00" }, { "name": "simplesamlphp/simplesamlphp-module-statistics", @@ -12800,16 +13248,16 @@ }, { "name": "simplesamlphp/twig-configurable-i18n", - "version": "v2.3.4", + "version": "v2.3.5", "source": { "type": "git", "url": "https://github.com/simplesamlphp/twig-configurable-i18n.git", - "reference": "e2bffc7eed3112a0b3870ef5b4da0fd74c7c4b8a" + "reference": "1dc0ff69ec1dfb4cab6a30c583b59faf0efc27d6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simplesamlphp/twig-configurable-i18n/zipball/e2bffc7eed3112a0b3870ef5b4da0fd74c7c4b8a", - "reference": "e2bffc7eed3112a0b3870ef5b4da0fd74c7c4b8a", + "url": "https://api.github.com/repos/simplesamlphp/twig-configurable-i18n/zipball/1dc0ff69ec1dfb4cab6a30c583b59faf0efc27d6", + "reference": "1dc0ff69ec1dfb4cab6a30c583b59faf0efc27d6", "shasum": "" }, "require": { @@ -12821,7 +13269,7 @@ "sensiolabs/security-checker": "~6.0.3", "simplesamlphp/simplesamlphp-test-framework": "~0.1.2", "squizlabs/php_codesniffer": "^3.5", - "twig/twig": "^2.13" + "twig/twig": "^2.15.3" }, "type": "project", "autoload": { @@ -12852,41 +13300,44 @@ "issues": "https://github.com/simplesamlphp/twig-configurable-i18n/issues", "source": "https://github.com/simplesamlphp/twig-configurable-i18n" }, - "time": "2020-08-27T12:51:10+00:00" + "time": "2022-11-28T16:34:29+00:00" }, { "name": "solarium/solarium", - "version": "6.1.5", + "version": "6.2.8", "source": { "type": "git", "url": "https://github.com/solariumphp/solarium.git", - "reference": "beec496540c3d227201c556729d2c61d1c1f8ab1" + "reference": "0bca4fdcd53e86dea19754b0081f91fe17248a9d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/solariumphp/solarium/zipball/beec496540c3d227201c556729d2c61d1c1f8ab1", - "reference": "beec496540c3d227201c556729d2c61d1c1f8ab1", + "url": "https://api.github.com/repos/solariumphp/solarium/zipball/0bca4fdcd53e86dea19754b0081f91fe17248a9d", + "reference": "0bca4fdcd53e86dea19754b0081f91fe17248a9d", "shasum": "" }, "require": { + "composer-runtime-api": ">=2.0", "ext-json": "*", "php": "^7.3 || ^8.0", "psr/event-dispatcher": "^1.0", "psr/http-client": "^1.0", "psr/http-factory": "^1.0", - "symfony/event-dispatcher-contracts": "^1.0 || ^2.0" + "symfony/event-dispatcher-contracts": "^1.0 || ^2.0 || ^3.0" }, "require-dev": { "escapestudios/symfony2-coding-standard": "^3.11", + "ext-iconv": "*", "guzzlehttp/guzzle": "^7.2", "nyholm/psr7": "^1.2", "php-http/guzzle7-adapter": "^0.1", "phpstan/extension-installer": "^1.0", - "phpstan/phpstan": "^0.12", - "phpstan/phpstan-phpunit": "^0.12", + "phpstan/phpstan": "^1.0", + "phpstan/phpstan-deprecation-rules": "^1.0", + "phpstan/phpstan-phpunit": "^1.0", "phpunit/phpunit": "^9.5", "roave/security-advisories": "dev-master", - "symfony/event-dispatcher": "^4.3 || ^5.0" + "symfony/event-dispatcher": "^4.3 || ^5.0 || ^6.0" }, "type": "library", "autoload": { @@ -12913,9 +13364,9 @@ ], "support": { "issues": "https://github.com/solariumphp/solarium/issues", - "source": "https://github.com/solariumphp/solarium/tree/6.1.5" + "source": "https://github.com/solariumphp/solarium/tree/6.2.8" }, - "time": "2021-08-12T15:28:32+00:00" + "time": "2022-12-06T10:22:19+00:00" }, { "name": "stack/builder", @@ -13158,16 +13609,16 @@ }, { "name": "symfony/cache", - "version": "v5.3.4", + "version": "v5.4.15", "source": { "type": "git", "url": "https://github.com/symfony/cache.git", - "reference": "944db6004fc374fbe032d18e07cce51cc4e1e661" + "reference": "60e87188abbacd29ccde44d69c5392a33e888e98" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/cache/zipball/944db6004fc374fbe032d18e07cce51cc4e1e661", - "reference": "944db6004fc374fbe032d18e07cce51cc4e1e661", + "url": "https://api.github.com/repos/symfony/cache/zipball/60e87188abbacd29ccde44d69c5392a33e888e98", + "reference": "60e87188abbacd29ccde44d69c5392a33e888e98", "shasum": "" }, "require": { @@ -13175,34 +13626,35 @@ "psr/cache": "^1.0|^2.0", "psr/log": "^1.1|^2|^3", "symfony/cache-contracts": "^1.1.7|^2", - "symfony/deprecation-contracts": "^2.1", + "symfony/deprecation-contracts": "^2.1|^3", + "symfony/polyfill-php73": "^1.9", "symfony/polyfill-php80": "^1.16", - "symfony/service-contracts": "^1.1|^2", - "symfony/var-exporter": "^4.4|^5.0" + "symfony/service-contracts": "^1.1|^2|^3", + "symfony/var-exporter": "^4.4|^5.0|^6.0" }, "conflict": { - "doctrine/dbal": "<2.10", + "doctrine/dbal": "<2.13.1", "symfony/dependency-injection": "<4.4", "symfony/http-kernel": "<4.4", "symfony/var-dumper": "<4.4" }, "provide": { "psr/cache-implementation": "1.0|2.0", - "psr/simple-cache-implementation": "1.0", + "psr/simple-cache-implementation": "1.0|2.0", "symfony/cache-implementation": "1.0|2.0" }, "require-dev": { "cache/integration-tests": "dev-master", "doctrine/cache": "^1.6|^2.0", - "doctrine/dbal": "^2.10|^3.0", + "doctrine/dbal": "^2.13.1|^3.0", "predis/predis": "^1.1", - "psr/simple-cache": "^1.0", - "symfony/config": "^4.4|^5.0", - "symfony/dependency-injection": "^4.4|^5.0", - "symfony/filesystem": "^4.4|^5.0", - "symfony/http-kernel": "^4.4|^5.0", - "symfony/messenger": "^4.4|^5.0", - "symfony/var-dumper": "^4.4|^5.0" + "psr/simple-cache": "^1.0|^2.0", + "symfony/config": "^4.4|^5.0|^6.0", + "symfony/dependency-injection": "^4.4|^5.0|^6.0", + "symfony/filesystem": "^4.4|^5.0|^6.0", + "symfony/http-kernel": "^4.4|^5.0|^6.0", + "symfony/messenger": "^4.4|^5.0|^6.0", + "symfony/var-dumper": "^4.4|^5.0|^6.0" }, "type": "library", "autoload": { @@ -13227,14 +13679,14 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation", + "description": "Provides extended PSR-6, PSR-16 (and tags) implementations", "homepage": "https://symfony.com", "keywords": [ "caching", "psr6" ], "support": { - "source": "https://github.com/symfony/cache/tree/v5.3.4" + "source": "https://github.com/symfony/cache/tree/v5.4.15" }, "funding": [ { @@ -13250,7 +13702,7 @@ "type": "tidelift" } ], - "time": "2021-07-23T15:55:36+00:00" + "time": "2022-10-27T07:55:40+00:00" }, { "name": "symfony/cache-contracts", @@ -13333,16 +13785,16 @@ }, { "name": "symfony/config", - "version": "v4.4.27", + "version": "v4.4.44", "source": { "type": "git", "url": "https://github.com/symfony/config.git", - "reference": "8132e8d645d703e9b7c9c4f25067b93638683a35" + "reference": "ed42f8f9da528d2c6cae36fe1f380b0c1d8f0658" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/8132e8d645d703e9b7c9c4f25067b93638683a35", - "reference": "8132e8d645d703e9b7c9c4f25067b93638683a35", + "url": "https://api.github.com/repos/symfony/config/zipball/ed42f8f9da528d2c6cae36fe1f380b0c1d8f0658", + "reference": "ed42f8f9da528d2c6cae36fe1f380b0c1d8f0658", "shasum": "" }, "require": { @@ -13391,7 +13843,7 @@ "description": "Helps you find, load, combine, autofill and validate configuration values of any kind", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/config/tree/v4.4.27" + "source": "https://github.com/symfony/config/tree/v4.4.44" }, "funding": [ { @@ -13407,7 +13859,7 @@ "type": "tidelift" } ], - "time": "2021-07-21T12:19:41+00:00" + "time": "2022-07-20T09:59:04+00:00" }, { "name": "symfony/console", @@ -14092,18 +14544,81 @@ ], "time": "2022-01-02T09:41:36+00:00" }, + { + "name": "symfony/expression-language", + "version": "v4.4.47", + "source": { + "type": "git", + "url": "https://github.com/symfony/expression-language.git", + "reference": "e4964c7636e19f6008660f450c09121c80c2a7b9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/expression-language/zipball/e4964c7636e19f6008660f450c09121c80c2a7b9", + "reference": "e4964c7636e19f6008660f450c09121c80c2a7b9", + "shasum": "" + }, + "require": { + "php": ">=7.1.3", + "symfony/cache": "^3.4|^4.0|^5.0", + "symfony/service-contracts": "^1.1|^2" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\ExpressionLanguage\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides an engine that can compile and evaluate expressions", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/expression-language/tree/v4.4.47" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2022-10-03T15:15:11+00:00" + }, { "name": "symfony/filesystem", - "version": "v4.4.39", + "version": "v4.4.42", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "72a5b35fecaa670b13954e6eaf414acbe2a67b35" + "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/72a5b35fecaa670b13954e6eaf414acbe2a67b35", - "reference": "72a5b35fecaa670b13954e6eaf414acbe2a67b35", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/815412ee8971209bd4c1eecd5f4f481eacd44bf5", + "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5", "shasum": "" }, "require": { @@ -14137,7 +14652,7 @@ "description": "Provides basic utilities for the filesystem", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/filesystem/tree/v4.4.39" + "source": "https://github.com/symfony/filesystem/tree/v4.4.42" }, "funding": [ { @@ -14153,7 +14668,7 @@ "type": "tidelift" } ], - "time": "2022-02-25T10:38:15+00:00" + "time": "2022-05-20T08:49:14+00:00" }, { "name": "symfony/finder", @@ -14219,16 +14734,16 @@ }, { "name": "symfony/framework-bundle", - "version": "v4.4.27", + "version": "v4.4.49", "source": { "type": "git", "url": "https://github.com/symfony/framework-bundle.git", - "reference": "b616b87fad76a783e6148a6849a5fbef18006e63" + "reference": "d8cf2558249004a29b8e27b1f6eae52337ff471b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/b616b87fad76a783e6148a6849a5fbef18006e63", - "reference": "b616b87fad76a783e6148a6849a5fbef18006e63", + "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/d8cf2558249004a29b8e27b1f6eae52337ff471b", + "reference": "d8cf2558249004a29b8e27b1f6eae52337ff471b", "shasum": "" }, "require": { @@ -14236,7 +14751,7 @@ "php": ">=7.1.3", "symfony/cache": "^4.4|^5.0", "symfony/config": "^4.4.11|~5.0.11|^5.1.3", - "symfony/dependency-injection": "^4.4.1|^5.0.1", + "symfony/dependency-injection": "^4.4.38|^5.0.1", "symfony/error-handler": "^4.4.1|^5.0.1", "symfony/filesystem": "^3.4|^4.0|^5.0", "symfony/finder": "^3.4|^4.0|^5.0", @@ -14276,14 +14791,14 @@ "require-dev": { "doctrine/annotations": "^1.10.4", "doctrine/cache": "^1.0|^2.0", - "doctrine/persistence": "^1.3|^2.0", + "doctrine/persistence": "^1.3|^2|^3", "paragonie/sodium_compat": "^1.8", "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", "symfony/asset": "^3.4|^4.0|^5.0", "symfony/browser-kit": "^4.3|^5.0", - "symfony/console": "^4.4.21|^5.0", + "symfony/console": "^4.4.42|^5.4.9", "symfony/css-selector": "^3.4|^4.0|^5.0", - "symfony/dom-crawler": "^4.3|^5.0", + "symfony/dom-crawler": "^4.4.30|^5.3.7", "symfony/dotenv": "^4.3.6|^5.0", "symfony/expression-language": "^3.4|^4.0|^5.0", "symfony/form": "^4.3.5|^5.0", @@ -14345,7 +14860,7 @@ "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/framework-bundle/tree/v4.4.27" + "source": "https://github.com/symfony/framework-bundle/tree/v4.4.49" }, "funding": [ { @@ -14361,7 +14876,7 @@ "type": "tidelift" } ], - "time": "2021-07-21T13:02:15+00:00" + "time": "2022-11-05T15:42:31+00:00" }, { "name": "symfony/http-client-contracts", @@ -15994,16 +16509,16 @@ }, { "name": "symfony/security", - "version": "v4.4.29", + "version": "v4.4.48", "source": { "type": "git", "url": "https://github.com/symfony/security.git", - "reference": "3053d8faa77a40491727445e410868a2a3762ff8" + "reference": "c36a32a2ec1ce91780685f8eb75dba9d832147fb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/security/zipball/3053d8faa77a40491727445e410868a2a3762ff8", - "reference": "3053d8faa77a40491727445e410868a2a3762ff8", + "url": "https://api.github.com/repos/symfony/security/zipball/c36a32a2ec1ce91780685f8eb75dba9d832147fb", + "reference": "c36a32a2ec1ce91780685f8eb75dba9d832147fb", "shasum": "" }, "require": { @@ -16074,7 +16589,7 @@ "description": "Provides a complete security system for your web application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/security/tree/v4.4.29" + "source": "https://github.com/symfony/security/tree/v4.4.48" }, "funding": [ { @@ -16090,7 +16605,7 @@ "type": "tidelift" } ], - "time": "2021-07-27T06:31:16+00:00" + "time": "2022-10-22T05:50:33+00:00" }, { "name": "symfony/serializer", @@ -17147,16 +17662,16 @@ }, { "name": "vlucas/phpdotenv", - "version": "v4.2.0", + "version": "v4.3.0", "source": { "type": "git", "url": "https://github.com/vlucas/phpdotenv.git", - "reference": "da64796370fc4eb03cc277088f6fede9fde88482" + "reference": "67a491df68208bef8c37092db11fa3885008efcf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/da64796370fc4eb03cc277088f6fede9fde88482", - "reference": "da64796370fc4eb03cc277088f6fede9fde88482", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/67a491df68208bef8c37092db11fa3885008efcf", + "reference": "67a491df68208bef8c37092db11fa3885008efcf", "shasum": "" }, "require": { @@ -17168,7 +17683,7 @@ "bamarni/composer-bin-plugin": "^1.4.1", "ext-filter": "*", "ext-pcre": "*", - "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20" + "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.30" }, "suggest": { "ext-filter": "Required to use the boolean validator.", @@ -17176,8 +17691,12 @@ }, "type": "library", "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": true + }, "branch-alias": { - "dev-master": "4.1-dev" + "dev-master": "4.3-dev" } }, "autoload": { @@ -17192,13 +17711,13 @@ "authors": [ { "name": "Graham Campbell", - "email": "graham@alt-three.com", - "homepage": "https://gjcampbell.co.uk/" + "email": "hello@gjcampbell.co.uk", + "homepage": "https://github.com/GrahamCampbell" }, { "name": "Vance Lucas", "email": "vance@vancelucas.com", - "homepage": "https://vancelucas.com/" + "homepage": "https://github.com/vlucas" } ], "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", @@ -17209,7 +17728,7 @@ ], "support": { "issues": "https://github.com/vlucas/phpdotenv/issues", - "source": "https://github.com/vlucas/phpdotenv/tree/v4.2.0" + "source": "https://github.com/vlucas/phpdotenv/tree/v4.3.0" }, "funding": [ { @@ -17221,7 +17740,7 @@ "type": "tidelift" } ], - "time": "2021-01-20T15:11:48+00:00" + "time": "2022-10-16T00:51:09+00:00" }, { "name": "webflo/drupal-finder", @@ -17537,90 +18056,35 @@ }, "time": "2022-03-28T14:22:43+00:00" }, - { - "name": "behat/mink-goutte-driver", - "version": "v1.3.0", - "source": { - "type": "git", - "url": "https://github.com/minkphp/MinkGoutteDriver.git", - "reference": "8139f520f417c81bf9d2f9a171fff400f6adc9ea" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8139f520f417c81bf9d2f9a171fff400f6adc9ea", - "reference": "8139f520f417c81bf9d2f9a171fff400f6adc9ea", - "shasum": "" - }, - "require": { - "behat/mink-browserkit-driver": "~1.2@dev", - "fabpot/goutte": "~1.0.4|~2.0|~3.1", - "php": ">=5.4" - }, - "require-dev": { - "mink/driver-testsuite": "dev-master" - }, - "type": "mink-driver", - "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } - }, - "autoload": { - "psr-4": { - "Behat\\Mink\\Driver\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Konstantin Kudryashov", - "email": "ever.zet@gmail.com", - "homepage": "http://everzet.com" - } - ], - "description": "Goutte driver for Mink framework", - "homepage": "https://mink.behat.org/", - "keywords": [ - "browser", - "goutte", - "headless", - "testing" - ], - "support": { - "issues": "https://github.com/minkphp/MinkGoutteDriver/issues", - "source": "https://github.com/minkphp/MinkGoutteDriver/tree/v1.3.0" - }, - "time": "2021-10-12T11:35:46+00:00" - }, { "name": "behat/mink-selenium2-driver", - "version": "v1.4.0", + "version": "v1.6.0", "source": { "type": "git", "url": "https://github.com/minkphp/MinkSelenium2Driver.git", - "reference": "312a967dd527f28980cce40850339cd5316da092" + "reference": "e5f8421654930da725499fb92983e6948c6f973e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/312a967dd527f28980cce40850339cd5316da092", - "reference": "312a967dd527f28980cce40850339cd5316da092", + "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/e5f8421654930da725499fb92983e6948c6f973e", + "reference": "e5f8421654930da725499fb92983e6948c6f973e", "shasum": "" }, "require": { - "behat/mink": "~1.7@dev", - "instaclick/php-webdriver": "~1.1", - "php": ">=5.4" + "behat/mink": "^1.9@dev", + "ext-json": "*", + "instaclick/php-webdriver": "^1.4", + "php": ">=7.2" }, "require-dev": { - "mink/driver-testsuite": "dev-master" + "mink/driver-testsuite": "dev-master", + "phpunit/phpunit": "^8.5.22 || ^9.5.11", + "symfony/error-handler": "^4.4 || ^5.0" }, "type": "mink-driver", "extra": { "branch-alias": { - "dev-master": "1.4.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { @@ -17645,7 +18109,7 @@ } ], "description": "Selenium2 (WebDriver) driver for Mink framework", - "homepage": "http://mink.behat.org/", + "homepage": "https://mink.behat.org/", "keywords": [ "ajax", "browser", @@ -17656,22 +18120,22 @@ ], "support": { "issues": "https://github.com/minkphp/MinkSelenium2Driver/issues", - "source": "https://github.com/minkphp/MinkSelenium2Driver/tree/v1.4.0" + "source": "https://github.com/minkphp/MinkSelenium2Driver/tree/v1.6.0" }, - "time": "2020-03-11T14:43:21+00:00" + "time": "2022-03-28T14:55:17+00:00" }, { "name": "composer/ca-bundle", - "version": "1.3.1", + "version": "1.3.4", "source": { "type": "git", "url": "https://github.com/composer/ca-bundle.git", - "reference": "4c679186f2aca4ab6a0f1b0b9cf9252decb44d0b" + "reference": "69098eca243998b53eed7a48d82dedd28b447cd5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/ca-bundle/zipball/4c679186f2aca4ab6a0f1b0b9cf9252decb44d0b", - "reference": "4c679186f2aca4ab6a0f1b0b9cf9252decb44d0b", + "url": "https://api.github.com/repos/composer/ca-bundle/zipball/69098eca243998b53eed7a48d82dedd28b447cd5", + "reference": "69098eca243998b53eed7a48d82dedd28b447cd5", "shasum": "" }, "require": { @@ -17718,7 +18182,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.1" + "source": "https://github.com/composer/ca-bundle/tree/1.3.4" }, "funding": [ { @@ -17734,20 +18198,20 @@ "type": "tidelift" } ], - "time": "2021-10-28T20:44:15+00:00" + "time": "2022-10-12T12:08:29+00:00" }, { "name": "composer/composer", - "version": "2.2.12", + "version": "2.2.18", "source": { "type": "git", "url": "https://github.com/composer/composer.git", - "reference": "ba61e768b410736efe61df01b61f1ec44f51474f" + "reference": "84175907664ca8b73f73f4883e67e886dfefb9f5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/composer/zipball/ba61e768b410736efe61df01b61f1ec44f51474f", - "reference": "ba61e768b410736efe61df01b61f1ec44f51474f", + "url": "https://api.github.com/repos/composer/composer/zipball/84175907664ca8b73f73f4883e67e886dfefb9f5", + "reference": "84175907664ca8b73f73f4883e67e886dfefb9f5", "shasum": "" }, "require": { @@ -17817,7 +18281,7 @@ "support": { "irc": "ircs://irc.libera.chat:6697/composer", "issues": "https://github.com/composer/composer/issues", - "source": "https://github.com/composer/composer/tree/2.2.12" + "source": "https://github.com/composer/composer/tree/2.2.18" }, "funding": [ { @@ -17833,7 +18297,7 @@ "type": "tidelift" } ], - "time": "2022-04-13T14:42:25+00:00" + "time": "2022-08-20T09:33:38+00:00" }, { "name": "composer/metadata-minifier", @@ -17904,79 +18368,6 @@ ], "time": "2021-04-07T13:37:33+00:00" }, - { - "name": "composer/package-versions-deprecated", - "version": "1.11.99.3", - "source": { - "type": "git", - "url": "https://github.com/composer/package-versions-deprecated.git", - "reference": "fff576ac850c045158a250e7e27666e146e78d18" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/fff576ac850c045158a250e7e27666e146e78d18", - "reference": "fff576ac850c045158a250e7e27666e146e78d18", - "shasum": "" - }, - "require": { - "composer-plugin-api": "^1.1.0 || ^2.0", - "php": "^7 || ^8" - }, - "replace": { - "ocramius/package-versions": "1.11.99" - }, - "require-dev": { - "composer/composer": "^1.9.3 || ^2.0@dev", - "ext-zip": "^1.13", - "phpunit/phpunit": "^6.5 || ^7" - }, - "type": "composer-plugin", - "extra": { - "class": "PackageVersions\\Installer", - "branch-alias": { - "dev-master": "1.x-dev" - } - }, - "autoload": { - "psr-4": { - "PackageVersions\\": "src/PackageVersions" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Marco Pivetta", - "email": "ocramius@gmail.com" - }, - { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be" - } - ], - "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)", - "support": { - "issues": "https://github.com/composer/package-versions-deprecated/issues", - "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.3" - }, - "funding": [ - { - "url": "https://packagist.com", - "type": "custom" - }, - { - "url": "https://github.com/composer", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/composer/composer", - "type": "tidelift" - } - ], - "time": "2021-08-17T13:49:14+00:00" - }, { "name": "composer/pcre", "version": "1.0.1", @@ -18050,16 +18441,16 @@ }, { "name": "composer/spdx-licenses", - "version": "1.5.6", + "version": "1.5.7", "source": { "type": "git", "url": "https://github.com/composer/spdx-licenses.git", - "reference": "a30d487169d799745ca7280bc90fdfa693536901" + "reference": "c848241796da2abf65837d51dce1fae55a960149" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/a30d487169d799745ca7280bc90fdfa693536901", - "reference": "a30d487169d799745ca7280bc90fdfa693536901", + "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/c848241796da2abf65837d51dce1fae55a960149", + "reference": "c848241796da2abf65837d51dce1fae55a960149", "shasum": "" }, "require": { @@ -18110,7 +18501,7 @@ "support": { "irc": "irc://irc.freenode.org/composer", "issues": "https://github.com/composer/spdx-licenses/issues", - "source": "https://github.com/composer/spdx-licenses/tree/1.5.6" + "source": "https://github.com/composer/spdx-licenses/tree/1.5.7" }, "funding": [ { @@ -18126,31 +18517,31 @@ "type": "tidelift" } ], - "time": "2021-11-18T10:14:14+00:00" + "time": "2022-05-23T07:37:50+00:00" }, { "name": "composer/xdebug-handler", - "version": "2.0.5", + "version": "3.0.3", "source": { "type": "git", "url": "https://github.com/composer/xdebug-handler.git", - "reference": "9e36aeed4616366d2b690bdce11f71e9178c579a" + "reference": "ced299686f41dce890debac69273b47ffe98a40c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/9e36aeed4616366d2b690bdce11f71e9178c579a", - "reference": "9e36aeed4616366d2b690bdce11f71e9178c579a", + "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c", + "reference": "ced299686f41dce890debac69273b47ffe98a40c", "shasum": "" }, "require": { - "composer/pcre": "^1", - "php": "^5.3.2 || ^7.0 || ^8.0", + "composer/pcre": "^1 || ^2 || ^3", + "php": "^7.2.5 || ^8.0", "psr/log": "^1 || ^2 || ^3" }, "require-dev": { "phpstan/phpstan": "^1.0", "phpstan/phpstan-strict-rules": "^1.1", - "symfony/phpunit-bridge": "^4.2 || ^5.0 || ^6.0" + "symfony/phpunit-bridge": "^6.0" }, "type": "library", "autoload": { @@ -18176,7 +18567,7 @@ "support": { "irc": "irc://irc.freenode.org/composer", "issues": "https://github.com/composer/xdebug-handler/issues", - "source": "https://github.com/composer/xdebug-handler/tree/2.0.5" + "source": "https://github.com/composer/xdebug-handler/tree/3.0.3" }, "funding": [ { @@ -18192,7 +18583,82 @@ "type": "tidelift" } ], - "time": "2022-02-24T20:20:32+00:00" + "time": "2022-02-25T21:32:43+00:00" + }, + { + "name": "dealerdirect/phpcodesniffer-composer-installer", + "version": "v0.7.2", + "source": { + "type": "git", + "url": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer.git", + "reference": "1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Dealerdirect/phpcodesniffer-composer-installer/zipball/1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db", + "reference": "1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^1.0 || ^2.0", + "php": ">=5.3", + "squizlabs/php_codesniffer": "^2.0 || ^3.1.0 || ^4.0" + }, + "require-dev": { + "composer/composer": "*", + "php-parallel-lint/php-parallel-lint": "^1.3.1", + "phpcompatibility/php-compatibility": "^9.0" + }, + "type": "composer-plugin", + "extra": { + "class": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin" + }, + "autoload": { + "psr-4": { + "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Franck Nijhof", + "email": "franck.nijhof@dealerdirect.com", + "homepage": "http://www.frenck.nl", + "role": "Developer / IT Manager" + }, + { + "name": "Contributors", + "homepage": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer/graphs/contributors" + } + ], + "description": "PHP_CodeSniffer Standards Composer Installer Plugin", + "homepage": "http://www.dealerdirect.com", + "keywords": [ + "PHPCodeSniffer", + "PHP_CodeSniffer", + "code quality", + "codesniffer", + "composer", + "installer", + "phpcbf", + "phpcs", + "plugin", + "qa", + "quality", + "standard", + "standards", + "style guide", + "stylecheck", + "tests" + ], + "support": { + "issues": "https://github.com/dealerdirect/phpcodesniffer-composer-installer/issues", + "source": "https://github.com/dealerdirect/phpcodesniffer-composer-installer" + }, + "time": "2022-02-04T12:51:07+00:00" }, { "name": "doctrine/instantiator", @@ -18266,22 +18732,24 @@ }, { "name": "drupal/coder", - "version": "8.3.13", + "version": "8.3.16", "source": { "type": "git", "url": "https://git.drupalcode.org/project/coder.git", - "reference": "d3286d571b19633cc296d438c36b9aed195de43c" + "reference": "d6f6112e5e84ff4f6baaada223c93dadbd6d3887" }, "require": { + "dealerdirect/phpcodesniffer-composer-installer": "^0.7.1", "ext-mbstring": "*", - "php": ">=7.0.8", - "sirbrillig/phpcs-variable-analysis": "^2.10", - "squizlabs/php_codesniffer": "^3.5.6", - "symfony/yaml": ">=2.0.5" + "php": ">=7.1", + "sirbrillig/phpcs-variable-analysis": "^2.11.7", + "slevomat/coding-standard": "^7.0 || ^8.0", + "squizlabs/php_codesniffer": "^3.7.1", + "symfony/yaml": ">=3.4.0" }, "require-dev": { - "phpstan/phpstan": "^0.12.63", - "phpunit/phpunit": "^6.0 || ^7.0" + "phpstan/phpstan": "^1.7.12", + "phpunit/phpunit": "^7.0 || ^8.0" }, "type": "phpcodesniffer-standard", "autoload": { @@ -18305,118 +18773,57 @@ "issues": "https://www.drupal.org/project/issues/coder", "source": "https://www.drupal.org/project/coder" }, - "time": "2021-02-06T10:44:32+00:00" + "time": "2022-08-20T17:31:46+00:00" }, { "name": "drupal/core-dev", - "version": "9.2.4", + "version": "9.5.0", "source": { "type": "git", "url": "https://github.com/drupal/core-dev.git", - "reference": "4b5b8556711315e180d72830733ddb07a57a2d73" + "reference": "60196e12909624e168c482660c0f5795df67a6d7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-dev/zipball/4b5b8556711315e180d72830733ddb07a57a2d73", - "reference": "4b5b8556711315e180d72830733ddb07a57a2d73", + "url": "https://api.github.com/repos/drupal/core-dev/zipball/60196e12909624e168c482660c0f5795df67a6d7", + "reference": "60196e12909624e168c482660c0f5795df67a6d7", "shasum": "" }, "require": { "behat/mink": "^1.8", - "behat/mink-goutte-driver": "^1.2", "behat/mink-selenium2-driver": "^1.4", - "composer/composer": "^2.0.2", + "composer/composer": "^2.2.12", "drupal/coder": "^8.3.10", - "easyrdf/easyrdf": "^0.9 || ^1.0", - "fabpot/goutte": "^3.3", - "friends-of-behat/mink-browserkit-driver": "^1.4", - "instaclick/php-webdriver": "^1.4.1", - "justinrainbow/json-schema": "^5.2", - "mikey179/vfsstream": "^1.6.8", - "phpspec/prophecy": "^1.12", - "phpunit/phpunit": "^8.5.14 || ^9", - "symfony/browser-kit": "^4.4", - "symfony/css-selector": "^4.4", - "symfony/dom-crawler": "^4.4 !=4.4.5", - "symfony/error-handler": "^4.4", - "symfony/filesystem": "^4.4", - "symfony/finder": "^4.4", - "symfony/lock": "^4.4", - "symfony/phpunit-bridge": "^5.3.0", - "symfony/var-dumper": "^5.3.0" - }, - "conflict": { - "webflo/drupal-core-require-dev": "*" - }, - "type": "metapackage", - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "description": "require-dev dependencies from drupal/drupal; use in addition to drupal/core-recommended to run tests from drupal/core.", - "support": { - "source": "https://github.com/drupal/core-dev/tree/9.2.4" - }, - "time": "2021-06-01T16:41:50+00:00" - }, - { - "name": "fabpot/goutte", - "version": "v3.3.1", - "source": { - "type": "git", - "url": "https://github.com/FriendsOfPHP/Goutte.git", - "reference": "80a23b64f44d54dd571d114c473d9d7e9ed84ca5" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/80a23b64f44d54dd571d114c473d9d7e9ed84ca5", - "reference": "80a23b64f44d54dd571d114c473d9d7e9ed84ca5", - "shasum": "" - }, - "require": { - "guzzlehttp/guzzle": "^6.0", - "php": ">=7.1.3", - "symfony/browser-kit": "^4.4|^5.0", - "symfony/css-selector": "^4.4|^5.0", - "symfony/dom-crawler": "^4.4|^5.0" - }, - "require-dev": { - "symfony/phpunit-bridge": "^5.0" - }, - "type": "application", - "extra": { - "branch-alias": { - "dev-master": "3.3-dev" - } + "easyrdf/easyrdf": "^0.9 || ^1.0", + "friends-of-behat/mink-browserkit-driver": "^1.4", + "instaclick/php-webdriver": "^1.4.1", + "justinrainbow/json-schema": "^5.2", + "mikey179/vfsstream": "^1.6.11", + "phpspec/prophecy": "^1.12", + "phpunit/phpunit": "^8.5.14 || ^9", + "symfony/browser-kit": "^4.4", + "symfony/css-selector": "^4.4", + "symfony/dom-crawler": "^4.4 !=4.4.5", + "symfony/error-handler": "^4.4", + "symfony/filesystem": "^4.4", + "symfony/finder": "^4.4", + "symfony/lock": "^4.4", + "symfony/phpunit-bridge": "^5.4", + "symfony/var-dumper": "^5.4" }, - "autoload": { - "psr-4": { - "Goutte\\": "Goutte" - }, - "exclude-from-classmap": [ - "Goutte/Tests" - ] + "conflict": { + "webflo/drupal-core-require-dev": "*" }, + "type": "metapackage", "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - } - ], - "description": "A simple PHP Web Scraper", - "homepage": "https://github.com/FriendsOfPHP/Goutte", - "keywords": [ - "scraper" + "GPL-2.0-or-later" ], + "description": "require-dev dependencies from drupal/drupal; use in addition to drupal/core-recommended to run tests from drupal/core.", "support": { - "issues": "https://github.com/FriendsOfPHP/Goutte/issues", - "source": "https://github.com/FriendsOfPHP/Goutte/tree/v3.3.1" + "source": "https://github.com/drupal/core-dev/tree/9.5.0" }, - "time": "2020-11-01T09:30:18+00:00" + "time": "2022-07-27T00:23:55+00:00" }, { "name": "friends-of-behat/mink-browserkit-driver", @@ -18482,16 +18889,16 @@ }, { "name": "instaclick/php-webdriver", - "version": "1.4.9", + "version": "1.4.16", "source": { "type": "git", "url": "https://github.com/instaclick/php-webdriver.git", - "reference": "961b12178cb71f8667afaf2f66ab3e000e060e1c" + "reference": "a39a1f6dc0f4ddd8b2438fa5eb1f67755730d606" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/961b12178cb71f8667afaf2f66ab3e000e060e1c", - "reference": "961b12178cb71f8667afaf2f66ab3e000e060e1c", + "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/a39a1f6dc0f4ddd8b2438fa5eb1f67755730d606", + "reference": "a39a1f6dc0f4ddd8b2438fa5eb1f67755730d606", "shasum": "" }, "require": { @@ -18499,8 +18906,8 @@ "php": ">=5.3.2" }, "require-dev": { - "phpunit/phpunit": "^4.8", - "satooshi/php-coveralls": "^1.0||^2.0" + "phpunit/phpunit": "^8.5 || ^9.5", + "satooshi/php-coveralls": "^1.0 || ^2.0" }, "type": "library", "extra": { @@ -18539,30 +18946,34 @@ ], "support": { "issues": "https://github.com/instaclick/php-webdriver/issues", - "source": "https://github.com/instaclick/php-webdriver/tree/1.4.9" + "source": "https://github.com/instaclick/php-webdriver/tree/1.4.16" }, - "time": "2021-06-28T22:23:20+00:00" + "time": "2022-10-28T13:30:35+00:00" }, { "name": "jean85/pretty-package-versions", - "version": "1.6.0", + "version": "2.0.5", "source": { "type": "git", "url": "https://github.com/Jean85/pretty-package-versions.git", - "reference": "1e0104b46f045868f11942aea058cd7186d6c303" + "reference": "ae547e455a3d8babd07b96966b17d7fd21d9c6af" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/1e0104b46f045868f11942aea058cd7186d6c303", - "reference": "1e0104b46f045868f11942aea058cd7186d6c303", + "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/ae547e455a3d8babd07b96966b17d7fd21d9c6af", + "reference": "ae547e455a3d8babd07b96966b17d7fd21d9c6af", "shasum": "" }, "require": { - "composer/package-versions-deprecated": "^1.8.0", - "php": "^7.0|^8.0" + "composer-runtime-api": "^2.0.0", + "php": "^7.1|^8.0" }, "require-dev": { - "phpunit/phpunit": "^6.0|^8.5|^9.2" + "friendsofphp/php-cs-fixer": "^2.17", + "jean85/composer-provided-replaced-stub-package": "^1.0", + "phpstan/phpstan": "^0.12.66", + "phpunit/phpunit": "^7.5|^8.5|^9.4", + "vimeo/psalm": "^4.3" }, "type": "library", "extra": { @@ -18585,7 +18996,7 @@ "email": "alessandro.lai85@gmail.com" } ], - "description": "A wrapper for ocramius/package-versions to get pretty versions strings", + "description": "A library to get pretty versions strings of installed dependencies", "keywords": [ "composer", "package", @@ -18594,9 +19005,9 @@ ], "support": { "issues": "https://github.com/Jean85/pretty-package-versions/issues", - "source": "https://github.com/Jean85/pretty-package-versions/tree/1.6.0" + "source": "https://github.com/Jean85/pretty-package-versions/tree/2.0.5" }, - "time": "2021-02-04T16:20:16+00:00" + "time": "2021-10-08T21:21:46+00:00" }, { "name": "justinrainbow/json-schema", @@ -18670,32 +19081,32 @@ }, { "name": "mglaman/drupal-check", - "version": "1.1.10", + "version": "1.4.0", "source": { "type": "git", "url": "https://github.com/mglaman/drupal-check.git", - "reference": "b7bcfb2f766332a888bb6d550dedbb508a3a9d41" + "reference": "e78eff7b10f79659c020a45baaa1f3035cb9a06a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mglaman/drupal-check/zipball/b7bcfb2f766332a888bb6d550dedbb508a3a9d41", - "reference": "b7bcfb2f766332a888bb6d550dedbb508a3a9d41", + "url": "https://api.github.com/repos/mglaman/drupal-check/zipball/e78eff7b10f79659c020a45baaa1f3035cb9a06a", + "reference": "e78eff7b10f79659c020a45baaa1f3035cb9a06a", "shasum": "" }, "require": { - "composer/xdebug-handler": "^1.1 | ^2.0.1", + "composer/xdebug-handler": "^1.1 || ^2.0.1 || ^3.0", "jean85/pretty-package-versions": "^1.5.0 || ^2.0.1", - "mglaman/phpstan-drupal": "^0.12.12", + "mglaman/phpstan-drupal": "^1.0.0", "nette/neon": "^3.1", "php": "^7.2.5|^8.0", - "phpstan/phpstan-deprecation-rules": "^0.12.6", - "symfony/console": "~3.2 || ~4.0", - "symfony/process": "~3.2 || ~4.0", + "phpstan/phpstan-deprecation-rules": "^1.0.0", + "symfony/console": "~3.4.5 || ^4.2|| ^5.0 || ^6.0", + "symfony/process": "~3.4.5 || ^4.2|| ^5.0 || ^6.0", "webflo/drupal-finder": "^1.1" }, "require-dev": { - "phpstan/phpstan": "^0.12.81", - "phpstan/phpstan-strict-rules": "^0.12.9", + "phpstan/phpstan": "^1.0.0", + "phpstan/phpstan-strict-rules": "^1.0.0", "squizlabs/php_codesniffer": "^3.4" }, "bin": [ @@ -18725,7 +19136,7 @@ "description": "CLI tool for running checks on a Drupal code base", "support": { "issues": "https://github.com/mglaman/drupal-check/issues", - "source": "https://github.com/mglaman/drupal-check/tree/1.1.10" + "source": "https://github.com/mglaman/drupal-check/tree/1.4.0" }, "funding": [ { @@ -18741,46 +19152,51 @@ "type": "tidelift" } ], - "time": "2021-07-22T03:52:26+00:00" + "time": "2022-04-29T02:26:28+00:00" }, { "name": "mglaman/phpstan-drupal", - "version": "0.12.12", + "version": "1.1.25", "source": { "type": "git", "url": "https://github.com/mglaman/phpstan-drupal.git", - "reference": "548fa7cb31239997863bf695f04a9fefd04c7288" + "reference": "480245d5d0bd1858e01c43d738718dab85be0ad2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/548fa7cb31239997863bf695f04a9fefd04c7288", - "reference": "548fa7cb31239997863bf695f04a9fefd04c7288", + "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/480245d5d0bd1858e01c43d738718dab85be0ad2", + "reference": "480245d5d0bd1858e01c43d738718dab85be0ad2", "shasum": "" }, "require": { - "nette/finder": "^2.5", - "php": "^7.1 || ^8.0", - "phpstan/phpstan": "^0.12.65", - "symfony/yaml": "~3.4.5|^4.2", + "php": "^7.4 || ^8.0", + "phpstan/phpstan": "^1.6.0", + "symfony/finder": "~3.4.5 ||^4.2 || ^5.0 || ^6.0", + "symfony/yaml": "~3.4.5 || ^4.2|| ^5.0 || ^6.0", "webflo/drupal-finder": "^1.2" }, "require-dev": { + "behat/mink": "^1.8", "composer/installers": "^1.9", - "drupal/core-dev": "^8.8@alpha || ^9.0", "drupal/core-recommended": "^8.8@alpha || ^9.0", - "drush/drush": "^9.6 | ^10.0", - "phpstan/phpstan-deprecation-rules": "~0.12.0", - "phpstan/phpstan-strict-rules": "^0.12.0", + "drush/drush": "^9.6 || ^10.0", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan-deprecation-rules": "^1.0", + "phpstan/phpstan-strict-rules": "^1.0", "phpunit/phpunit": "^6.5 || ^7.5 || ^8.0 || ^9", - "squizlabs/php_codesniffer": "^3.3" + "slevomat/coding-standard": "^7.1", + "squizlabs/php_codesniffer": "^3.3", + "symfony/phpunit-bridge": "^3.4.3 || ^4.4 || ^5.4 || ^6.0" }, "suggest": { - "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core." + "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.", + "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.", + "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan." }, "type": "phpstan-extension", "extra": { "branch-alias": { - "dev-master": "0.12-dev" + "dev-main": "1.0-dev" }, "installer-paths": { "tests/fixtures/drupal/core": [ @@ -18801,16 +19217,14 @@ }, "phpstan": { "includes": [ - "extension.neon" + "extension.neon", + "rules.neon" ] } }, "autoload": { - "files": [ - "drupal-phpunit-hack.php" - ], "psr-4": { - "PHPStan\\": "src/" + "mglaman\\PHPStanDrupal\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -18826,7 +19240,7 @@ "description": "Drupal extension and rules for PHPStan", "support": { "issues": "https://github.com/mglaman/phpstan-drupal/issues", - "source": "https://github.com/mglaman/phpstan-drupal/tree/0.12.12" + "source": "https://github.com/mglaman/phpstan-drupal/tree/1.1.25" }, "funding": [ { @@ -18842,7 +19256,7 @@ "type": "tidelift" } ], - "time": "2021-07-21T20:46:24+00:00" + "time": "2022-07-18T17:17:55+00:00" }, { "name": "mikey179/vfsstream", @@ -18954,85 +19368,18 @@ ], "time": "2022-03-03T13:19:32+00:00" }, - { - "name": "nette/finder", - "version": "v2.5.2", - "source": { - "type": "git", - "url": "https://github.com/nette/finder.git", - "reference": "4ad2c298eb8c687dd0e74ae84206a4186eeaed50" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/nette/finder/zipball/4ad2c298eb8c687dd0e74ae84206a4186eeaed50", - "reference": "4ad2c298eb8c687dd0e74ae84206a4186eeaed50", - "shasum": "" - }, - "require": { - "nette/utils": "^2.4 || ^3.0", - "php": ">=7.1" - }, - "conflict": { - "nette/nette": "<2.2" - }, - "require-dev": { - "nette/tester": "^2.0", - "phpstan/phpstan": "^0.12", - "tracy/tracy": "^2.3" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.5-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause", - "GPL-2.0", - "GPL-3.0" - ], - "authors": [ - { - "name": "David Grudl", - "homepage": "https://davidgrudl.com" - }, - { - "name": "Nette Community", - "homepage": "https://nette.org/contributors" - } - ], - "description": "🔍 Nette Finder: find files and directories with an intuitive API.", - "homepage": "https://nette.org", - "keywords": [ - "filesystem", - "glob", - "iterator", - "nette" - ], - "support": { - "issues": "https://github.com/nette/finder/issues", - "source": "https://github.com/nette/finder/tree/v2.5.2" - }, - "time": "2020-01-03T20:35:40+00:00" - }, { "name": "nette/neon", - "version": "v3.2.2", + "version": "v3.3.3", "source": { "type": "git", "url": "https://github.com/nette/neon.git", - "reference": "e4ca6f4669121ca6876b1d048c612480e39a28d5" + "reference": "22e384da162fab42961d48eb06c06d3ad0c11b95" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/neon/zipball/e4ca6f4669121ca6876b1d048c612480e39a28d5", - "reference": "e4ca6f4669121ca6876b1d048c612480e39a28d5", + "url": "https://api.github.com/repos/nette/neon/zipball/22e384da162fab42961d48eb06c06d3ad0c11b95", + "reference": "22e384da162fab42961d48eb06c06d3ad0c11b95", "shasum": "" }, "require": { @@ -19042,12 +19389,15 @@ "require-dev": { "nette/tester": "^2.0", "phpstan/phpstan": "^0.12", - "tracy/tracy": "^2.3" + "tracy/tracy": "^2.7" }, + "bin": [ + "bin/neon-lint" + ], "type": "library", "extra": { "branch-alias": { - "dev-master": "3.2-dev" + "dev-master": "3.3-dev" } }, "autoload": { @@ -19082,94 +19432,9 @@ ], "support": { "issues": "https://github.com/nette/neon/issues", - "source": "https://github.com/nette/neon/tree/v3.2.2" - }, - "time": "2021-02-28T12:30:32+00:00" - }, - { - "name": "nette/utils", - "version": "v3.2.3", - "source": { - "type": "git", - "url": "https://github.com/nette/utils.git", - "reference": "5c36cc1ba9bb6abb8a9e425cf054e0c3fd5b9822" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/nette/utils/zipball/5c36cc1ba9bb6abb8a9e425cf054e0c3fd5b9822", - "reference": "5c36cc1ba9bb6abb8a9e425cf054e0c3fd5b9822", - "shasum": "" - }, - "require": { - "php": ">=7.2 <8.1" - }, - "conflict": { - "nette/di": "<3.0.6" - }, - "require-dev": { - "nette/tester": "~2.0", - "phpstan/phpstan": "^0.12", - "tracy/tracy": "^2.3" - }, - "suggest": { - "ext-gd": "to use Image", - "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()", - "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()", - "ext-json": "to use Nette\\Utils\\Json", - "ext-mbstring": "to use Strings::lower() etc...", - "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()", - "ext-xml": "to use Strings::length() etc. when mbstring is not available" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.2-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause", - "GPL-2.0-only", - "GPL-3.0-only" - ], - "authors": [ - { - "name": "David Grudl", - "homepage": "https://davidgrudl.com" - }, - { - "name": "Nette Community", - "homepage": "https://nette.org/contributors" - } - ], - "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.", - "homepage": "https://nette.org", - "keywords": [ - "array", - "core", - "datetime", - "images", - "json", - "nette", - "paginator", - "password", - "slugify", - "string", - "unicode", - "utf-8", - "utility", - "validation" - ], - "support": { - "issues": "https://github.com/nette/utils/issues", - "source": "https://github.com/nette/utils/tree/v3.2.3" + "source": "https://github.com/nette/neon/tree/v3.3.3" }, - "time": "2021-08-16T21:05:00+00:00" + "time": "2022-03-10T02:04:26+00:00" }, { "name": "phar-io/manifest", @@ -19566,22 +19831,67 @@ }, "time": "2020-07-09T08:33:42+00:00" }, + { + "name": "phpstan/phpdoc-parser", + "version": "1.15.2", + "source": { + "type": "git", + "url": "https://github.com/phpstan/phpdoc-parser.git", + "reference": "5941477f100993652218928039d530b75a13a9ca" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/5941477f100993652218928039d530b75a13a9ca", + "reference": "5941477f100993652218928039d530b75a13a9ca", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "php-parallel-lint/php-parallel-lint": "^1.2", + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^1.5", + "phpstan/phpstan-phpunit": "^1.1", + "phpstan/phpstan-strict-rules": "^1.0", + "phpunit/phpunit": "^9.5", + "symfony/process": "^5.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "PHPStan\\PhpDocParser\\": [ + "src/" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "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.15.2" + }, + "time": "2022-12-16T06:42:48+00:00" + }, { "name": "phpstan/phpstan", - "version": "0.12.96", + "version": "1.9.4", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "a98bdc51318f20fcae8c953d266f81a70254917f" + "reference": "d03bccee595e2146b7c9d174486b84f4dc61b0f2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/a98bdc51318f20fcae8c953d266f81a70254917f", - "reference": "a98bdc51318f20fcae8c953d266f81a70254917f", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/d03bccee595e2146b7c9d174486b84f4dc61b0f2", + "reference": "d03bccee595e2146b7c9d174486b84f4dc61b0f2", "shasum": "" }, "require": { - "php": "^7.1|^8.0" + "php": "^7.2|^8.0" }, "conflict": { "phpstan/phpstan-shim": "*" @@ -19591,11 +19901,6 @@ "phpstan.phar" ], "type": "library", - "extra": { - "branch-alias": { - "dev-master": "0.12-dev" - } - }, "autoload": { "files": [ "bootstrap.php" @@ -19606,9 +19911,13 @@ "MIT" ], "description": "PHPStan - PHP Static Analysis Tool", + "keywords": [ + "dev", + "static analysis" + ], "support": { "issues": "https://github.com/phpstan/phpstan/issues", - "source": "https://github.com/phpstan/phpstan/tree/0.12.96" + "source": "https://github.com/phpstan/phpstan/tree/1.9.4" }, "funding": [ { @@ -19619,46 +19928,39 @@ "url": "https://github.com/phpstan", "type": "github" }, - { - "url": "https://www.patreon.com/phpstan", - "type": "patreon" - }, { "url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan", "type": "tidelift" } ], - "time": "2021-08-21T11:55:13+00:00" + "time": "2022-12-17T13:33:52+00:00" }, { "name": "phpstan/phpstan-deprecation-rules", - "version": "0.12.6", + "version": "1.1.1", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan-deprecation-rules.git", - "reference": "46dbd43c2db973d2876d6653e53f5c2cc3a01fbb" + "reference": "2c6792eda026d9c474c14aa018aed312686714db" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/46dbd43c2db973d2876d6653e53f5c2cc3a01fbb", - "reference": "46dbd43c2db973d2876d6653e53f5c2cc3a01fbb", + "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/2c6792eda026d9c474c14aa018aed312686714db", + "reference": "2c6792eda026d9c474c14aa018aed312686714db", "shasum": "" }, "require": { - "php": "^7.1 || ^8.0", - "phpstan/phpstan": "^0.12.60" + "php": "^7.2 || ^8.0", + "phpstan/phpstan": "^1.9.3" }, "require-dev": { - "phing/phing": "^2.16.3", "php-parallel-lint/php-parallel-lint": "^1.2", - "phpstan/phpstan-phpunit": "^0.12", - "phpunit/phpunit": "^7.5.20" + "phpstan/phpstan-php-parser": "^1.1", + "phpstan/phpstan-phpunit": "^1.0", + "phpunit/phpunit": "^9.5" }, "type": "phpstan-extension", "extra": { - "branch-alias": { - "dev-master": "0.12-dev" - }, "phpstan": { "includes": [ "rules.neon" @@ -19677,22 +19979,22 @@ "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.", "support": { "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues", - "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/0.12.6" + "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.1.1" }, - "time": "2020-12-13T10:20:54+00:00" + "time": "2022-12-13T14:26:20+00:00" }, { "name": "phpunit/php-code-coverage", - "version": "9.2.20", + "version": "9.2.22", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "af7463c955007de36db0c5e26d03e2f933c2e980" + "reference": "e4bf60d2220b4baaa0572986b5d69870226b06df" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/af7463c955007de36db0c5e26d03e2f933c2e980", - "reference": "af7463c955007de36db0c5e26d03e2f933c2e980", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/e4bf60d2220b4baaa0572986b5d69870226b06df", + "reference": "e4bf60d2220b4baaa0572986b5d69870226b06df", "shasum": "" }, "require": { @@ -19748,7 +20050,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", - "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.20" + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.22" }, "funding": [ { @@ -19756,7 +20058,7 @@ "type": "github" } ], - "time": "2022-12-13T07:49:28+00:00" + "time": "2022-12-18T16:40:55+00:00" }, { "name": "phpunit/php-file-iterator", @@ -21207,16 +21509,16 @@ }, { "name": "seld/phar-utils", - "version": "1.2.0", + "version": "1.2.1", "source": { "type": "git", "url": "https://github.com/Seldaek/phar-utils.git", - "reference": "9f3452c93ff423469c0d56450431562ca423dcee" + "reference": "ea2f4014f163c1be4c601b9b7bd6af81ba8d701c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/9f3452c93ff423469c0d56450431562ca423dcee", - "reference": "9f3452c93ff423469c0d56450431562ca423dcee", + "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/ea2f4014f163c1be4c601b9b7bd6af81ba8d701c", + "reference": "ea2f4014f163c1be4c601b9b7bd6af81ba8d701c", "shasum": "" }, "require": { @@ -21249,34 +21551,35 @@ ], "support": { "issues": "https://github.com/Seldaek/phar-utils/issues", - "source": "https://github.com/Seldaek/phar-utils/tree/1.2.0" + "source": "https://github.com/Seldaek/phar-utils/tree/1.2.1" }, - "time": "2021-12-10T11:20:11+00:00" + "time": "2022-08-31T10:31:18+00:00" }, { "name": "sirbrillig/phpcs-variable-analysis", - "version": "v2.11.2", + "version": "v2.11.9", "source": { "type": "git", "url": "https://github.com/sirbrillig/phpcs-variable-analysis.git", - "reference": "3fad28475bfbdbf8aa5c440f8a8f89824983d85e" + "reference": "62730888d225d55a613854b6a76fb1f9f57d1618" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sirbrillig/phpcs-variable-analysis/zipball/3fad28475bfbdbf8aa5c440f8a8f89824983d85e", - "reference": "3fad28475bfbdbf8aa5c440f8a8f89824983d85e", + "url": "https://api.github.com/repos/sirbrillig/phpcs-variable-analysis/zipball/62730888d225d55a613854b6a76fb1f9f57d1618", + "reference": "62730888d225d55a613854b6a76fb1f9f57d1618", "shasum": "" }, "require": { "php": ">=5.4.0", - "squizlabs/php_codesniffer": "^3.5" + "squizlabs/php_codesniffer": "^3.5.6" }, "require-dev": { "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", - "limedeck/phpunit-detailed-printer": "^3.1 || ^4.0 || ^5.0", - "phpstan/phpstan": "^0.11.8", - "phpunit/phpunit": "^5.0 || ^6.5 || ^7.0 || ^8.0", - "sirbrillig/phpcs-import-detection": "^1.1" + "phpcsstandards/phpcsdevcs": "^1.1", + "phpstan/phpstan": "^1.7", + "phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6.5 || ^7.0 || ^8.0 || ^9.0", + "sirbrillig/phpcs-import-detection": "^1.1", + "vimeo/psalm": "^0.2 || ^0.3 || ^1.1 || ^4.24 || ^5.0@beta" }, "type": "phpcodesniffer-standard", "autoload": { @@ -21299,25 +21602,94 @@ } ], "description": "A PHPCS sniff to detect problems with variables.", + "keywords": [ + "phpcs", + "static analysis" + ], "support": { "issues": "https://github.com/sirbrillig/phpcs-variable-analysis/issues", "source": "https://github.com/sirbrillig/phpcs-variable-analysis", "wiki": "https://github.com/sirbrillig/phpcs-variable-analysis/wiki" }, - "time": "2021-07-06T23:45:17+00:00" + "time": "2022-10-05T23:31:46+00:00" + }, + { + "name": "slevomat/coding-standard", + "version": "8.7.1", + "source": { + "type": "git", + "url": "https://github.com/slevomat/coding-standard.git", + "reference": "c51edb898bebd36aac70a190c6a41a7c056bb5b9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/c51edb898bebd36aac70a190c6a41a7c056bb5b9", + "reference": "c51edb898bebd36aac70a190c6a41a7c056bb5b9", + "shasum": "" + }, + "require": { + "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7", + "php": "^7.2 || ^8.0", + "phpstan/phpdoc-parser": ">=1.15.0 <1.16.0", + "squizlabs/php_codesniffer": "^3.7.1" + }, + "require-dev": { + "phing/phing": "2.17.4", + "php-parallel-lint/php-parallel-lint": "1.3.2", + "phpstan/phpstan": "1.4.10|1.9.3", + "phpstan/phpstan-deprecation-rules": "1.1.0", + "phpstan/phpstan-phpunit": "1.0.0|1.3.1", + "phpstan/phpstan-strict-rules": "1.4.4", + "phpunit/phpunit": "7.5.20|8.5.21|9.5.27" + }, + "type": "phpcodesniffer-standard", + "extra": { + "branch-alias": { + "dev-master": "8.x-dev" + } + }, + "autoload": { + "psr-4": { + "SlevomatCodingStandard\\": "SlevomatCodingStandard" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Slevomat Coding Standard for PHP_CodeSniffer complements Consistence Coding Standard by providing sniffs with additional checks.", + "keywords": [ + "dev", + "phpcs" + ], + "support": { + "issues": "https://github.com/slevomat/coding-standard/issues", + "source": "https://github.com/slevomat/coding-standard/tree/8.7.1" + }, + "funding": [ + { + "url": "https://github.com/kukulich", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/slevomat/coding-standard", + "type": "tidelift" + } + ], + "time": "2022-12-14T08:49:18+00:00" }, { "name": "squizlabs/php_codesniffer", - "version": "3.6.0", + "version": "3.7.1", "source": { "type": "git", "url": "https://github.com/squizlabs/PHP_CodeSniffer.git", - "reference": "ffced0d2c8fa8e6cdc4d695a743271fab6c38625" + "reference": "1359e176e9307e906dc3d890bcc9603ff6d90619" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/ffced0d2c8fa8e6cdc4d695a743271fab6c38625", - "reference": "ffced0d2c8fa8e6cdc4d695a743271fab6c38625", + "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/1359e176e9307e906dc3d890bcc9603ff6d90619", + "reference": "1359e176e9307e906dc3d890bcc9603ff6d90619", "shasum": "" }, "require": { @@ -21360,7 +21732,7 @@ "source": "https://github.com/squizlabs/PHP_CodeSniffer", "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki" }, - "time": "2021-04-09T00:54:41+00:00" + "time": "2022-06-18T07:21:10+00:00" }, { "name": "symfony/browser-kit", @@ -21436,16 +21808,16 @@ }, { "name": "symfony/lock", - "version": "v4.4.27", + "version": "v4.4.46", "source": { "type": "git", "url": "https://github.com/symfony/lock.git", - "reference": "6ca476d4ac992802f2a4043929f68f1818449486" + "reference": "8b060dd4e10f05219698ceb3a4ad735b19c1be4f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/lock/zipball/6ca476d4ac992802f2a4043929f68f1818449486", - "reference": "6ca476d4ac992802f2a4043929f68f1818449486", + "url": "https://api.github.com/repos/symfony/lock/zipball/8b060dd4e10f05219698ceb3a4ad735b19c1be4f", + "reference": "8b060dd4e10f05219698ceb3a4ad735b19c1be4f", "shasum": "" }, "require": { @@ -21454,10 +21826,10 @@ "symfony/polyfill-php80": "^1.16" }, "conflict": { - "doctrine/dbal": "<2.6" + "doctrine/dbal": "<2.7" }, "require-dev": { - "doctrine/dbal": "^2.6|^3.0", + "doctrine/dbal": "^2.7|^3.0", "predis/predis": "~1.0" }, "type": "library", @@ -21494,7 +21866,7 @@ "semaphore" ], "support": { - "source": "https://github.com/symfony/lock/tree/v4.4.27" + "source": "https://github.com/symfony/lock/tree/v4.4.46" }, "funding": [ { @@ -21510,31 +21882,31 @@ "type": "tidelift" } ], - "time": "2021-07-23T15:41:52+00:00" + "time": "2022-09-19T08:41:12+00:00" }, { "name": "symfony/phpunit-bridge", - "version": "v5.3.4", + "version": "v5.4.16", "source": { "type": "git", "url": "https://github.com/symfony/phpunit-bridge.git", - "reference": "bc368b765a651424b19f5759953ce2873e7d448b" + "reference": "5ea977eb24dd9926e2920078530985dc6942597c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/bc368b765a651424b19f5759953ce2873e7d448b", - "reference": "bc368b765a651424b19f5759953ce2873e7d448b", + "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/5ea977eb24dd9926e2920078530985dc6942597c", + "reference": "5ea977eb24dd9926e2920078530985dc6942597c", "shasum": "" }, "require": { "php": ">=7.1.3", - "symfony/deprecation-contracts": "^2.1" + "symfony/deprecation-contracts": "^2.1|^3" }, "conflict": { "phpunit/phpunit": "<7.5|9.1.2" }, "require-dev": { - "symfony/error-handler": "^4.4|^5.0" + "symfony/error-handler": "^4.4|^5.0|^6.0" }, "suggest": { "symfony/error-handler": "For tracking deprecated interfaces usages at runtime with DebugClassLoader" @@ -21577,7 +21949,7 @@ "description": "Provides utilities for PHPUnit, especially user deprecation notices management", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/phpunit-bridge/tree/v5.3.4" + "source": "https://github.com/symfony/phpunit-bridge/tree/v5.4.16" }, "funding": [ { @@ -21593,7 +21965,7 @@ "type": "tidelift" } ], - "time": "2021-07-15T21:37:44+00:00" + "time": "2022-11-14T09:59:19+00:00" }, { "name": "theseer/tokenizer", @@ -21646,7 +22018,14 @@ "time": "2021-07-28T10:34:58+00:00" } ], - "aliases": [], + "aliases": [ + { + "package": "islandora/chullo", + "version": "1.2.0.0", + "alias": "dev-dev", + "alias_normalized": "dev-dev" + } + ], "minimum-stability": "dev", "stability-flags": { "drupal/auto_entitylabel": 10, diff --git a/codebase/patches/search_api_solr_defaults_post_update_uninstall_module.patch b/codebase/patches/search_api_solr_defaults_post_update_uninstall_module.patch new file mode 100644 index 000000000..1b0bf4e8d --- /dev/null +++ b/codebase/patches/search_api_solr_defaults_post_update_uninstall_module.patch @@ -0,0 +1,12 @@ +diff --git a/modules/search_api_solr_defaults/search_api_solr_defaults.post_update.php b/modules/search_api_solr_defaults/search_api_solr_defaults.post_update.php +index 5f72babf..05ba1558 100644 +--- a/modules/search_api_solr_defaults/search_api_solr_defaults.post_update.php ++++ b/modules/search_api_solr_defaults/search_api_solr_defaults.post_update.php +@@ -12,6 +12,6 @@ function search_api_solr_defaults_post_update_uninstall_module() { + if (\Drupal::moduleHandler()->moduleExists('search_api_solr_defaults')) { + /** @var \Drupal\Core\Extension\ModuleInstallerInterface $moduleInstaller */ + $moduleInstaller = \Drupal::service('module_installer'); +- $moduleInstaller->uninstall('search_api_solr_defaults'); ++ $moduleInstaller->uninstall(['search_api_solr_defaults']); + } + } From 400ee64cab289f260336d8fcfce3f4658fa5e9e9 Mon Sep 17 00:00:00 2001 From: Tim Martin Date: Tue, 20 Dec 2022 15:49:03 -0700 Subject: [PATCH 10/10] remove solr defaults deletions --- rootfs/etc/cont-init.d/.999-startup.sh.swp | Bin 0 -> 12288 bytes rootfs/etc/cont-init.d/999-startup.sh | 11 +++++------ 2 files changed, 5 insertions(+), 6 deletions(-) create mode 100644 rootfs/etc/cont-init.d/.999-startup.sh.swp diff --git a/rootfs/etc/cont-init.d/.999-startup.sh.swp b/rootfs/etc/cont-init.d/.999-startup.sh.swp new file mode 100644 index 0000000000000000000000000000000000000000..e0fe199d80bdba414aff71d16b8df1c2fe109aff GIT binary patch literal 12288 zcmeI2O>Y}T7{@1Ecr76M0eHHJ>K0f}T3S_cF(R_vHqa!xTYJ!Ic9GaJWJ zRn8z(1Ye*MSGWM5f&&~lpn?Pk5JE^CIKzei+H0qcT7pDX2{fzxve}*4*?E35^Egqa zyLf43m6ocD49C-q-FWt+;EUg`vd?cZW>p*uZB^JGwi}Jr<;JlS)hG=_ zbhql)XAN?r1OC<^=UQf|;mSlJ2~#b2FV&keMXSlQh57NZ?Dp9r? z@};FE-&k}n&#Go{x7WFQ&VVy;hk*m^#pB1uOMTuuLI0MdrGvEw31I~am;0!ne&VV!U zA2c9B#{7pFJNXDYkN^Kq|Nj5!DaL*T-+`~eb?_Yc=1IoB0$+m9z)kQT7=azI1v1bC zbKsW)s1H5`pMZ}+AM`*I%z<~GVC)_60{G!^#=ZwPK@ZfyOW-&-2>yJGu|L4C;9GDD zY=LF)3aEhJA7$)A@IJT!UIi;)87zUH5$gw_4vM%>0CzY8&VV!E3^)VMz&-|KFi6Ss z*yK$9eLHBkP1^Tprit9Q68X2adH?%4?XSmJsB<$Qe?-`oXl2bvOJ-!OjH|IwiIs^+ z0@;bvP|_llsU*v-kNu9Zu=S$6FExJUQH&_a$Q#NowmWLc@jxC)!($mL!Bs5!xKP*$ zX?R~IQmdevC4F!5gi#iyq3nq~vb?8?2k)rGRFB@IL*)0Uc*8#R=_;KjJCI2^(v375 z(b>sc=?q#&*poTX$hDSIV|#AY7miHC z1)2^Yrt)V5UTp5Pxq+#kl2K^tC_>YI*)(0FAh+a)S8536I4+G0sbV;B-me^;4M#X0 zj@*>}yfALGTCL6oEC`ASW9e(zSH|kmG@?j~WKYrfxp`_7MR_)Thmk@D17BpSre!x* zQRrJOf=#LE+BLE|m*w2pt>~LH(lwPJ#whY*WsFMtlR)h#lVWRLHa6byNNSy8I!$zDgUpxP7#8nJb1bn|+mxeABFg2F zN;yYO012XU)PFgYk+dklyiDV?a@3o3=HIlYWt>{sfnX`(&QOaillu0?+5Dt=vlaPU zxzr=_nyvG#jTW70udfn1+(8Jrq|4`8?G^=T6v@D1lGXQwK+9`QN<=JCFdmr>My68; z@01I}R8H>(RlYVr*l1MCs@%a^EoLuGmR|Kb~g@*4SVO8P3^Bp|S@0A;DoDs)2o@up>EQjsrUc@ literal 0 HcmV?d00001 diff --git a/rootfs/etc/cont-init.d/999-startup.sh b/rootfs/etc/cont-init.d/999-startup.sh index ae9d48a92..bc72e18b6 100755 --- a/rootfs/etc/cont-init.d/999-startup.sh +++ b/rootfs/etc/cont-init.d/999-startup.sh @@ -21,11 +21,12 @@ for d in $DRUPAL_DIR/web/sites/default/files/tmp /tmp/private ; do $CHOWN -R nginx:nginx "$d" done -#drush -y state:set system.maintenance_mode 1 --input-format=integer +drush -y state:set system.maintenance_mode 1 --input-format=integer # This is a workaround for a bug. -drush cdel core.extension module.search_api_solr_defaults || true -drush sql-query "DELETE FROM key_value WHERE collection='system.schema' AND name='search_api_solr_defaults';" || true +#drush cdel core.extension module.search_api_solr_defaults || true +#drush sql-query "DELETE FROM key_value WHERE collection='system.schema' AND name='search_api_solr_defaults';" || true + drush php-eval "\Drupal::keyValue('system.schema')->delete('remote_stream_wrapper')" || true drush php-eval "\Drupal::keyValue('system.schema')->delete('matomo')" || true @@ -48,9 +49,7 @@ if [ ! -f web/sites/default/files/generic.png ] ; then cp "web/core/modules/media/images/icons/generic.png" "web/sites/default/files/generic.png" fi -#drush -y config:import -#drush -y cache:rebuild -#drush -y state:set system.maintenance_mode 0 --input-format=integer +drush -y state:set system.maintenance_mode 0 --input-format=integer echo "" echo ""