diff --git a/.ddev/config.yaml b/.ddev/config.yaml new file mode 100644 index 000000000..6e6df92a2 --- /dev/null +++ b/.ddev/config.yaml @@ -0,0 +1,266 @@ +name: drupal-pece +type: drupal10 +docroot: web +php_version: "8.1" +webserver_type: nginx-fpm +xdebug_enabled: false +additional_hostnames: [] +additional_fqdns: [] +database: + type: mariadb + version: "10.4" +use_dns_when_possible: true +composer_version: "2" +web_environment: [] +nodejs_version: "18" + +# Key features of DDEV's config.yaml: + +# name: # Name of the project, automatically provides +# http://projectname.ddev.site and https://projectname.ddev.site + +# type: # drupal6/7/8, backdrop, typo3, wordpress, php + +# docroot: # Relative path to the directory containing index.php. + +# php_version: "8.1" # PHP version to use, "5.6", "7.0", "7.1", "7.2", "7.3", "7.4", "8.0", "8.1", "8.2" + +# You can explicitly specify the webimage but this +# is not recommended, as the images are often closely tied to DDEV's' behavior, +# so this can break upgrades. + +# webimage: # nginx/php docker image. + +# database: +# type: # mysql, mariadb, postgres +# version: # database version, like "10.4" or "8.0" +# MariaDB versions can be 5.5-10.8 and 10.11, MySQL versions can be 5.5-8.0 +# PostgreSQL versions can be 9-15. + +# router_http_port: # Port to be used for http (defaults to global configuration, usually 80) +# router_https_port: # Port for https (defaults to global configuration, usually 443) + +# xdebug_enabled: false # Set to true to enable Xdebug and "ddev start" or "ddev restart" +# Note that for most people the commands +# "ddev xdebug" to enable Xdebug and "ddev xdebug off" to disable it work better, +# as leaving Xdebug enabled all the time is a big performance hit. + +# xhprof_enabled: false # Set to true to enable Xhprof and "ddev start" or "ddev restart" +# Note that for most people the commands +# "ddev xhprof" to enable Xhprof and "ddev xhprof off" to disable it work better, +# as leaving Xhprof enabled all the time is a big performance hit. + +# webserver_type: nginx-fpm, apache-fpm, or nginx-gunicorn + +# timezone: Europe/Berlin +# This is the timezone used in the containers and by PHP; +# it can be set to any valid timezone, +# see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones +# For example Europe/Dublin or MST7MDT + +# composer_root: +# Relative path to the Composer root directory from the project root. This is +# the directory which contains the composer.json and where all Composer related +# commands are executed. + +# composer_version: "2" +# You can set it to "" or "2" (default) for Composer v2 or "1" for Composer v1 +# to use the latest major version available at the time your container is built. +# It is also possible to use each other Composer version channel. This includes: +# - 2.2 (latest Composer LTS version) +# - stable +# - preview +# - snapshot +# Alternatively, an explicit Composer version may be specified, for example "2.2.18". +# To reinstall Composer after the image was built, run "ddev debug refresh". + +# nodejs_version: "18" +# change from the default system Node.js version to another supported version, like 14, 16, 18, 20. +# Note that you can use 'ddev nvm' or nvm inside the web container to provide nearly any +# Node.js version, including v6, etc. + +# additional_hostnames: +# - somename +# - someothername +# would provide http and https URLs for "somename.ddev.site" +# and "someothername.ddev.site". + +# additional_fqdns: +# - example.com +# - sub1.example.com +# would provide http and https URLs for "example.com" and "sub1.example.com" +# Please take care with this because it can cause great confusion. + +# upload_dirs: "custom/upload/dir" +# +# upload_dirs: +# - custom/upload/dir +# - ../private +# +# would set the destination paths for ddev import-files to /custom/upload/dir +# When Mutagen is enabled this path is bind-mounted so that all the files +# in the upload_dirs don't have to be synced into Mutagen. + +# disable_upload_dirs_warning: false +# If true, turns off the normal warning that says +# "You have Mutagen enabled and your 'php' project type doesn't have upload_dirs set" + +# working_dir: +# web: /var/www/html +# db: /home +# would set the default working directory for the web and db services. +# These values specify the destination directory for ddev ssh and the +# directory in which commands passed into ddev exec are run. + +# omit_containers: [db, ddev-ssh-agent] +# Currently only these containers are supported. Some containers can also be +# omitted globally in the ~/.ddev/global_config.yaml. Note that if you omit +# the "db" container, several standard features of DDEV that access the +# database container will be unusable. In the global configuration it is also +# possible to omit ddev-router, but not here. + +# performance_mode: "global" +# DDEV offers performance optimization strategies to improve the filesystem +# performance depending on your host system. Should be configured globally. +# +# If set, will override the global config. Possible values are: +# - "global": uses the value from the global config. +# - "none": disables performance optimization for this project. +# - "mutagen": enables Mutagen for this project. +# - "nfs": enables NFS for this project. +# +# See https://ddev.readthedocs.io/en/latest/users/install/performance/#nfs +# See https://ddev.readthedocs.io/en/latest/users/install/performance/#mutagen + +# fail_on_hook_fail: False +# Decide whether 'ddev start' should be interrupted by a failing hook + +# host_https_port: "59002" +# The host port binding for https can be explicitly specified. It is +# dynamic unless otherwise specified. +# This is not used by most people, most people use the *router* instead +# of the localhost port. + +# host_webserver_port: "59001" +# The host port binding for the ddev-webserver can be explicitly specified. It is +# dynamic unless otherwise specified. +# This is not used by most people, most people use the *router* instead +# of the localhost port. + +# host_db_port: "59002" +# The host port binding for the ddev-dbserver can be explicitly specified. It is dynamic +# unless explicitly specified. + +# mailpit_http_port: "8025" +# mailpit_https_port: "8026" +# The Mailpit ports can be changed from the default 8025 and 8026 + +# host_mailpit_port: "8025" +# The mailpit port is not normally bound on the host at all, instead being routed +# through ddev-router, but it can be bound directly to localhost if specified here. + +# webimage_extra_packages: [php7.4-tidy, php-bcmath] +# Extra Debian packages that are needed in the webimage can be added here + +# dbimage_extra_packages: [telnet,netcat] +# Extra Debian packages that are needed in the dbimage can be added here + +# use_dns_when_possible: true +# If the host has internet access and the domain configured can +# successfully be looked up, DNS will be used for hostname resolution +# instead of editing /etc/hosts +# Defaults to true + +# project_tld: ddev.site +# The top-level domain used for project URLs +# The default "ddev.site" allows DNS lookup via a wildcard +# If you prefer you can change this to "ddev.local" to preserve +# pre-v1.9 behavior. + +# ngrok_args: --basic-auth username:pass1234 +# Provide extra flags to the "ngrok http" command, see +# https://ngrok.com/docs/ngrok-agent/config or run "ngrok http -h" + +# disable_settings_management: false +# If true, DDEV will not create CMS-specific settings files like +# Drupal's settings.php/settings.ddev.php or TYPO3's AdditionalConfiguration.php +# In this case the user must provide all such settings. + +# You can inject environment variables into the web container with: +# web_environment: +# - SOMEENV=somevalue +# - SOMEOTHERENV=someothervalue + +# no_project_mount: false +# (Experimental) If true, DDEV will not mount the project into the web container; +# the user is responsible for mounting it manually or via a script. +# This is to enable experimentation with alternate file mounting strategies. +# For advanced users only! + +# bind_all_interfaces: false +# If true, host ports will be bound on all network interfaces, +# not the localhost interface only. This means that ports +# will be available on the local network if the host firewall +# allows it. + +# default_container_timeout: 120 +# The default time that DDEV waits for all containers to become ready can be increased from +# the default 120. This helps in importing huge databases, for example. + +#web_extra_exposed_ports: +#- name: nodejs +# container_port: 3000 +# http_port: 2999 +# https_port: 3000 +#- name: something +# container_port: 4000 +# https_port: 4000 +# http_port: 3999 +# Allows a set of extra ports to be exposed via ddev-router +# Fill in all three fields even if you don’t intend to use the https_port! +# If you don’t add https_port, then it defaults to 0 and ddev-router will fail to start. +# +# The port behavior on the ddev-webserver must be arranged separately, for example +# using web_extra_daemons. +# For example, with a web app on port 3000 inside the container, this config would +# expose that web app on https://.ddev.site:9999 and http://.ddev.site:9998 +# web_extra_exposed_ports: +# - name: myapp +# container_port: 3000 +# http_port: 9998 +# https_port: 9999 + +#web_extra_daemons: +#- name: "http-1" +# command: "/var/www/html/node_modules/.bin/http-server -p 3000" +# directory: /var/www/html +#- name: "http-2" +# command: "/var/www/html/node_modules/.bin/http-server /var/www/html/sub -p 3000" +# directory: /var/www/html + +# override_config: false +# By default, config.*.yaml files are *merged* into the configuration +# But this means that some things can't be overridden +# For example, if you have 'nfs_mount_enabled: true'' you can't override it with a merge +# and you can't erase existing hooks or all environment variables. +# However, with "override_config: true" in a particular config.*.yaml file, +# 'nfs_mount_enabled: false' can override the existing values, and +# hooks: +# post-start: [] +# or +# web_environment: [] +# or +# additional_hostnames: [] +# can have their intended affect. 'override_config' affects only behavior of the +# config.*.yaml file it exists in. + +# Many DDEV commands can be extended to run tasks before or after the +# DDEV command is executed, for example "post-start", "post-import-db", +# "pre-composer", "post-composer" +# See https://ddev.readthedocs.io/en/stable/users/extend/custom-commands/ for more +# information on the commands that can be extended and the tasks you can define +# for them. Example: +#hooks: +# post-import-db: +# - exec: drush cr +# - exec: drush updb diff --git a/composer.lock b/composer.lock index a256efc9d..cbec545f9 100644 --- a/composer.lock +++ b/composer.lock @@ -54,34 +54,41 @@ }, { "name": "academicpuma/locales", - "version": "1.0.0", + "version": "dev-master", "source": { "type": "git", "url": "https://github.com/seboettg/locales.git", - "reference": "e5985dbc979f6a285e74006466daab40fd53573f" + "reference": "a741caa933d0b62a224dea5784d8a4387c4bdfd9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/seboettg/locales/zipball/e5985dbc979f6a285e74006466daab40fd53573f", - "reference": "e5985dbc979f6a285e74006466daab40fd53573f", + "url": "https://api.github.com/repos/seboettg/locales/zipball/a741caa933d0b62a224dea5784d8a4387c4bdfd9", + "reference": "a741caa933d0b62a224dea5784d8a4387c4bdfd9", "shasum": "" }, + "default-branch": true, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, "notification-url": "https://packagist.org/downloads/", "license": [ - "Creative Commons Attribution-ShareAlike 3.0 License" + "CC-BY-SA-3.0" ], "authors": [ { - "name": "seboettg", - "email": "boettger@cs.uni-kassel.de" + "name": "Citation Style Language (CSL) Team", + "homepage": "http://citationstyles.org/about/#Credits" } ], - "description": "Citation Style Language (CSL) Locales Repository", + "description": "Citation Style Language (CSL) Locales", + "homepage": "http://citationstyles.org/", "support": { "source": "https://github.com/seboettg/locales/tree/master" }, - "time": "2015-09-08T14:33:33+00:00" + "time": "2023-03-23T19:18:02+00:00" }, { "name": "academicpuma/styles", @@ -655,16 +662,16 @@ }, { "name": "composer/semver", - "version": "3.3.2", + "version": "3.4.0", "source": { "type": "git", "url": "https://github.com/composer/semver.git", - "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9" + "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9", - "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9", + "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32", + "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32", "shasum": "" }, "require": { @@ -714,9 +721,9 @@ "versioning" ], "support": { - "irc": "irc://irc.freenode.org/composer", + "irc": "ircs://irc.libera.chat:6697/composer", "issues": "https://github.com/composer/semver/issues", - "source": "https://github.com/composer/semver/tree/3.3.2" + "source": "https://github.com/composer/semver/tree/3.4.0" }, "funding": [ { @@ -732,29 +739,29 @@ "type": "tidelift" } ], - "time": "2022-04-01T19:23:25+00:00" + "time": "2023-08-31T09:50:34+00:00" }, { "name": "consolidation/annotated-command", - "version": "4.8.2", + "version": "4.9.1", "source": { "type": "git", "url": "https://github.com/consolidation/annotated-command.git", - "reference": "7f5dd1aafb93a10593ed70f3caa6a0cd5a32f0e3" + "reference": "e01152f698eff4cb5df3ebfe5e097ef335dbd3c9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/7f5dd1aafb93a10593ed70f3caa6a0cd5a32f0e3", - "reference": "7f5dd1aafb93a10593ed70f3caa6a0cd5a32f0e3", + "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/e01152f698eff4cb5df3ebfe5e097ef335dbd3c9", + "reference": "e01152f698eff4cb5df3ebfe5e097ef335dbd3c9", "shasum": "" }, "require": { - "consolidation/output-formatters": "^4.1.1", + "consolidation/output-formatters": "^4.3.1", "php": ">=7.1.3", - "psr/log": "^1|^2|^3", - "symfony/console": "^4.4.8|^5|^6", - "symfony/event-dispatcher": "^4.4.8|^5|^6", - "symfony/finder": "^4.4.8|^5|^6" + "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": { "composer-runtime-api": "^2.0", @@ -786,9 +793,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.8.2" + "source": "https://github.com/consolidation/annotated-command/tree/4.9.1" }, - "time": "2023-03-11T19:32:28+00:00" + "time": "2023-05-20T04:19:01+00:00" }, { "name": "consolidation/config", @@ -999,16 +1006,16 @@ }, { "name": "consolidation/output-formatters", - "version": "4.2.4", + "version": "4.3.2", "source": { "type": "git", "url": "https://github.com/consolidation/output-formatters.git", - "reference": "b377db7e9435c50c4e019c26ec164b547e754ca0" + "reference": "06711568b4cd169700ff7e8075db0a9a341ceb58" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/b377db7e9435c50c4e019c26ec164b547e754ca0", - "reference": "b377db7e9435c50c4e019c26ec164b547e754ca0", + "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/06711568b4cd169700ff7e8075db0a9a341ceb58", + "reference": "06711568b4cd169700ff7e8075db0a9a341ceb58", "shasum": "" }, "require": { @@ -1047,22 +1054,22 @@ "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.4" + "source": "https://github.com/consolidation/output-formatters/tree/4.3.2" }, - "time": "2023-02-24T03:39:10+00:00" + "time": "2023-07-06T04:45:41+00:00" }, { "name": "consolidation/robo", - "version": "3.0.11", + "version": "3.0.12", "source": { "type": "git", "url": "https://github.com/consolidation/robo.git", - "reference": "820fa0f164f77887e268b7dbfb2283416c7334c1" + "reference": "0c3a5085357f46c90a0b756e3d326f44847158b8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/robo/zipball/820fa0f164f77887e268b7dbfb2283416c7334c1", - "reference": "820fa0f164f77887e268b7dbfb2283416c7334c1", + "url": "https://api.github.com/repos/consolidation/robo/zipball/0c3a5085357f46c90a0b756e3d326f44847158b8", + "reference": "0c3a5085357f46c90a0b756e3d326f44847158b8", "shasum": "" }, "require": { @@ -1146,22 +1153,22 @@ "description": "Modern task runner", "support": { "issues": "https://github.com/consolidation/robo/issues", - "source": "https://github.com/consolidation/robo/tree/3.0.11" + "source": "https://github.com/consolidation/robo/tree/3.0.12" }, - "time": "2022-12-07T15:18:26+00:00" + "time": "2023-04-30T21:18:09+00:00" }, { "name": "consolidation/self-update", - "version": "2.1.0", + "version": "2.2.0", "source": { "type": "git", "url": "https://github.com/consolidation/self-update.git", - "reference": "714b09fdf0513f83292874bb12de0566066040c2" + "reference": "972a1016761c9b63314e040836a12795dff6953a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/self-update/zipball/714b09fdf0513f83292874bb12de0566066040c2", - "reference": "714b09fdf0513f83292874bb12de0566066040c2", + "url": "https://api.github.com/repos/consolidation/self-update/zipball/972a1016761c9b63314e040836a12795dff6953a", + "reference": "972a1016761c9b63314e040836a12795dff6953a", "shasum": "" }, "require": { @@ -1201,9 +1208,9 @@ "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.1.0" + "source": "https://github.com/consolidation/self-update/tree/2.2.0" }, - "time": "2023-02-21T19:33:55+00:00" + "time": "2023-03-18T01:37:41+00:00" }, { "name": "consolidation/site-alias", @@ -1432,16 +1439,16 @@ }, { "name": "defuse/php-encryption", - "version": "v2.3.1", + "version": "v2.4.0", "source": { "type": "git", "url": "https://github.com/defuse/php-encryption.git", - "reference": "77880488b9954b7884c25555c2a0ea9e7053f9d2" + "reference": "f53396c2d34225064647a05ca76c1da9d99e5828" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/defuse/php-encryption/zipball/77880488b9954b7884c25555c2a0ea9e7053f9d2", - "reference": "77880488b9954b7884c25555c2a0ea9e7053f9d2", + "url": "https://api.github.com/repos/defuse/php-encryption/zipball/f53396c2d34225064647a05ca76c1da9d99e5828", + "reference": "f53396c2d34225064647a05ca76c1da9d99e5828", "shasum": "" }, "require": { @@ -1450,7 +1457,8 @@ "php": ">=5.6.0" }, "require-dev": { - "phpunit/phpunit": "^4|^5|^6|^7|^8|^9" + "phpunit/phpunit": "^5|^6|^7|^8|^9|^10", + "yoast/phpunit-polyfills": "^2.0.0" }, "bin": [ "bin/generate-defuse-key" @@ -1492,9 +1500,9 @@ ], "support": { "issues": "https://github.com/defuse/php-encryption/issues", - "source": "https://github.com/defuse/php-encryption/tree/v2.3.1" + "source": "https://github.com/defuse/php-encryption/tree/v2.4.0" }, - "time": "2021-04-09T23:57:26+00:00" + "time": "2023-06-19T06:10:36+00:00" }, { "name": "dflydev/dot-access-data", @@ -1707,25 +1715,29 @@ }, { "name": "doctrine/deprecations", - "version": "v1.0.0", + "version": "v1.1.1", "source": { "type": "git", "url": "https://github.com/doctrine/deprecations.git", - "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de" + "reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de", - "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de", + "url": "https://api.github.com/repos/doctrine/deprecations/zipball/612a3ee5ab0d5dd97b7cf3874a6efe24325efac3", + "reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3", "shasum": "" }, "require": { - "php": "^7.1|^8.0" + "php": "^7.1 || ^8.0" }, "require-dev": { "doctrine/coding-standard": "^9", - "phpunit/phpunit": "^7.5|^8.5|^9.5", - "psr/log": "^1|^2|^3" + "phpstan/phpstan": "1.4.10 || 1.10.15", + "phpstan/phpstan-phpunit": "^1.0", + "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", + "psalm/plugin-phpunit": "0.18.4", + "psr/log": "^1 || ^2 || ^3", + "vimeo/psalm": "4.30.0 || 5.12.0" }, "suggest": { "psr/log": "Allows logging deprecations via PSR-3 logger implementation" @@ -1744,9 +1756,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/v1.1.1" }, - "time": "2022-05-02T15:47:09+00:00" + "time": "2023-06-03T09:27:29+00:00" }, { "name": "doctrine/lexer", @@ -1828,20 +1840,20 @@ }, { "name": "doctrine/reflection", - "version": "1.2.3", + "version": "1.2.4", "source": { "type": "git", "url": "https://github.com/doctrine/reflection.git", - "reference": "1034e5e71f89978b80f9c1570e7226f6c3b9b6fb" + "reference": "6bcea3e81ab8b3d0abe5fde5300bbc8a968960c7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/reflection/zipball/1034e5e71f89978b80f9c1570e7226f6c3b9b6fb", - "reference": "1034e5e71f89978b80f9c1570e7226f6c3b9b6fb", + "url": "https://api.github.com/repos/doctrine/reflection/zipball/6bcea3e81ab8b3d0abe5fde5300bbc8a968960c7", + "reference": "6bcea3e81ab8b3d0abe5fde5300bbc8a968960c7", "shasum": "" }, "require": { - "doctrine/annotations": "^1.0", + "doctrine/annotations": "^1.0 || ^2.0", "ext-tokenizer": "*", "php": "^7.1 || ^8.0" }, @@ -1899,27 +1911,27 @@ ], "support": { "issues": "https://github.com/doctrine/reflection/issues", - "source": "https://github.com/doctrine/reflection/tree/1.2.3" + "source": "https://github.com/doctrine/reflection/tree/1.2.4" }, "abandoned": "roave/better-reflection", - "time": "2022-05-31T18:46:25+00:00" + "time": "2023-07-27T18:11:59+00:00" }, { "name": "drupal/address", - "version": "1.11.0", + "version": "1.12.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/address.git", - "reference": "8.x-1.11" + "reference": "8.x-1.12" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/address-8.x-1.11.zip", - "reference": "8.x-1.11", - "shasum": "1cb40fb1a43e88041b888ac8fb6aa77a45ac85fb" + "url": "https://ftp.drupal.org/files/projects/address-8.x-1.12.zip", + "reference": "8.x-1.12", + "shasum": "67dd4699040aabf0cd6169e437706fa6a39b0b3a" }, "require": { - "commerceguys/addressing": "^1.4.0", + "commerceguys/addressing": "^1.4.2", "drupal/core": "^9.2 || ^10", "php": "^7.3 || ^8.0" }, @@ -1929,8 +1941,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.11", - "datestamp": "1659989858", + "version": "8.x-1.12", + "datestamp": "1684710176", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -1979,17 +1991,17 @@ }, { "name": "drupal/admin_toolbar", - "version": "3.3.0", + "version": "3.4.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/admin_toolbar.git", - "reference": "3.3.0" + "reference": "3.4.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.3.0.zip", - "reference": "3.3.0", - "shasum": "8e61fba9c9d83a94a844cff96d00871878a7eb98" + "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.4.1.zip", + "reference": "3.4.1", + "shasum": "bcb15ab40016becdb3ac8f21d7d1a721f48f3577" }, "require": { "drupal/core": "^9.2 || ^10" @@ -2000,8 +2012,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "3.3.0", - "datestamp": "1669567837", + "version": "3.4.1", + "datestamp": "1684944156", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2106,6 +2118,58 @@ "source": "https://git.drupalcode.org/project/advanced_text_formatter" } }, + { + "name": "drupal/bartik", + "version": "1.0.2", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/bartik.git", + "reference": "1.0.2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/bartik-1.0.2.zip", + "reference": "1.0.2", + "shasum": "3b1acc601c21fae5584ebc4a3b8c9d7b8a48a431" + }, + "require": { + "drupal/core": "^9 || ^10" + }, + "type": "drupal-theme", + "extra": { + "drupal": { + "version": "1.0.2", + "datestamp": "1660912287", + "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": "jensimmons", + "homepage": "https://www.drupal.org/user/140882" + }, + { + "name": "lauriii", + "homepage": "https://www.drupal.org/user/1078742" + } + ], + "description": "The Bartik theme from Drupal 8/9 moved to contrib.", + "homepage": "https://www.drupal.org/project/bartik", + "support": { + "source": "https://git.drupalcode.org/project/bartik" + } + }, { "name": "drupal/better_exposed_filters", "version": "5.2.0", @@ -2181,24 +2245,24 @@ }, { "name": "drupal/bibcite", - "version": "2.0.0-beta2", + "version": "2.0.0-beta3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/bibcite.git", - "reference": "2.0.0-beta2" + "reference": "2.0.0-beta3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/bibcite-2.0.0-beta2.zip", - "reference": "2.0.0-beta2", - "shasum": "fc2d6850c18479c661df67b11d38c5fe42b83744" + "url": "https://ftp.drupal.org/files/projects/bibcite-2.0.0-beta3.zip", + "reference": "2.0.0-beta3", + "shasum": "2ccb09b8be2d3cc5713c4b41156719808d5eb78e" }, "require": { "academicpuma/citeproc-php": "~1.0", "adci/full-name-parser": "^0.2.4", "audiolabs/bibtexparser": "^1.0", "caseyamcl/php-marc21": "~1.0", - "drupal/core": "^8 || ^9", + "drupal/core": "^8 || ^9 || ^10", "drupal/entity": "^1.0", "drupal/token": "^1.0", "technosophos/libris": "~2.0" @@ -2218,8 +2282,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.0-beta2", - "datestamp": "1642044055", + "version": "2.0.0-beta3", + "datestamp": "1688554407", "security-coverage": { "status": "not-covered", "message": "Project has not opted into security advisory coverage!" @@ -2235,14 +2299,14 @@ "name": "AardWolf", "homepage": "https://www.drupal.org/user/3540355" }, - { - "name": "adci_contributor", - "homepage": "https://www.drupal.org/user/1830536" - }, { "name": "adcillc", "homepage": "https://www.drupal.org/user/366450" }, + { + "name": "adci_contributor", + "homepage": "https://www.drupal.org/user/1830536" + }, { "name": "antongp", "homepage": "https://www.drupal.org/user/1060446" @@ -2335,18 +2399,18 @@ }, { "name": "drupal/bibcite_entity", - "version": "2.0.0-beta2", + "version": "3.0.0-beta3", "require": { "drupal/bibcite": "*", - "drupal/core": "^8 || ^9", + "drupal/core": "^8 || ^9 || ^10", "drupal/entity": "*", "drupal/token": "*" }, "type": "metapackage", "extra": { "drupal": { - "version": "2.0.0-beta2", - "datestamp": "1642044055", + "version": "3.0.0-beta3", + "datestamp": "1689237020", "security-coverage": { "status": "not-covered", "message": "Project has not opted into security advisory coverage!" @@ -2362,14 +2426,14 @@ "name": "AardWolf", "homepage": "https://www.drupal.org/user/3540355" }, - { - "name": "adci_contributor", - "homepage": "https://www.drupal.org/user/1830536" - }, { "name": "adcillc", "homepage": "https://www.drupal.org/user/366450" }, + { + "name": "adci_contributor", + "homepage": "https://www.drupal.org/user/1830536" + }, { "name": "antongp", "homepage": "https://www.drupal.org/user/1060446" @@ -2449,17 +2513,17 @@ }, { "name": "drupal/blazy", - "version": "2.14.0", + "version": "2.17.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/blazy.git", - "reference": "8.x-2.14" + "reference": "8.x-2.17" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/blazy-8.x-2.14.zip", - "reference": "8.x-2.14", - "shasum": "135d3f06efbe05e6bbfa5e9733b65757a0c85c43" + "url": "https://ftp.drupal.org/files/projects/blazy-8.x-2.17.zip", + "reference": "8.x-2.17", + "shasum": "84ab9c7b7dc516890300f252dd64c8404e333d4b" }, "require": { "drupal/core": "^8.8 || ^9 || ^10" @@ -2470,8 +2534,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.14", - "datestamp": "1671083284", + "version": "8.x-2.17", + "datestamp": "1695019671", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2516,31 +2580,31 @@ }, { "name": "drupal/blocktabs", - "version": "1.0.0-beta4", + "version": "1.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/blocktabs.git", - "reference": "8.x-1.0-beta4" + "reference": "8.x-1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/blocktabs-8.x-1.0-beta4.zip", - "reference": "8.x-1.0-beta4", - "shasum": "d20791f12d7ce9a07e08fba8a0075f0932b409bb" + "url": "https://ftp.drupal.org/files/projects/blocktabs-8.x-1.0.zip", + "reference": "8.x-1.0", + "shasum": "bd3069a3bafbe50acab47ca748db2d38ce552003" }, "require": { - "drupal/core": "^8 || ^9", + "drupal/core": "^9.2 || ^10", "drupal/jquery_ui_accordion": "*", "drupal/jquery_ui_tabs": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0-beta4", - "datestamp": "1601724930", + "version": "8.x-1.0", + "datestamp": "1686990324", "security-coverage": { - "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, @@ -2562,17 +2626,17 @@ }, { "name": "drupal/bootstrap_barrio", - "version": "5.5.10", + "version": "5.5.13", "source": { "type": "git", "url": "https://git.drupalcode.org/project/bootstrap_barrio.git", - "reference": "5.5.10" + "reference": "5.5.13" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/bootstrap_barrio-5.5.10.zip", - "reference": "5.5.10", - "shasum": "4015cae184be99d08329878e609b814700a73e60" + "url": "https://ftp.drupal.org/files/projects/bootstrap_barrio-5.5.13.zip", + "reference": "5.5.13", + "shasum": "ddcbd91bf86019e3665197ea6d74d4adb3081ca5" }, "require": { "drupal/core": "^9.4 || ^10", @@ -2581,8 +2645,8 @@ "type": "drupal-theme", "extra": { "drupal": { - "version": "5.5.10", - "datestamp": "1679769012", + "version": "5.5.13", + "datestamp": "1692469355", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2616,17 +2680,17 @@ }, { "name": "drupal/bootstrap_layout_builder", - "version": "2.1.1", + "version": "2.1.2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/bootstrap_layout_builder.git", - "reference": "2.1.1" + "reference": "2.1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/bootstrap_layout_builder-2.1.1.zip", - "reference": "2.1.1", - "shasum": "5b7e18fa8553328b259dff6e8db88ef4fa66dcb7" + "url": "https://ftp.drupal.org/files/projects/bootstrap_layout_builder-2.1.2.zip", + "reference": "2.1.2", + "shasum": "c0000f57f9b218fd43b893f3311de73911020ced" }, "require": { "drupal/bootstrap_styles": "^1.1", @@ -2635,8 +2699,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.1.1", - "datestamp": "1673978910", + "version": "2.1.2", + "datestamp": "1690460409", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2655,6 +2719,10 @@ { "name": "mahmoud-zayed", "homepage": "https://www.drupal.org/user/2947001" + }, + { + "name": "Rajab Natshah", + "homepage": "https://www.drupal.org/user/1414312" } ], "description": "Add Bootstrap Grid support to Layout Builder module.", @@ -2671,17 +2739,17 @@ }, { "name": "drupal/bootstrap_styles", - "version": "1.1.0", + "version": "1.1.3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/bootstrap_styles.git", - "reference": "1.1.0" + "reference": "1.1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/bootstrap_styles-1.1.0.zip", - "reference": "1.1.0", - "shasum": "e064cc4a74678f2d88f01400b6152645f0b9d8d2" + "url": "https://ftp.drupal.org/files/projects/bootstrap_styles-1.1.3.zip", + "reference": "1.1.3", + "shasum": "23e661c171e607047eb856253337081bb7b9c834" }, "require": { "drupal/core": "^9.3 || ^10", @@ -2691,8 +2759,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "1.1.0", - "datestamp": "1673698874", + "version": "1.1.3", + "datestamp": "1695037727", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2711,6 +2779,10 @@ { "name": "mahmoud-zayed", "homepage": "https://www.drupal.org/user/2947001" + }, + { + "name": "Rajab Natshah", + "homepage": "https://www.drupal.org/user/1414312" } ], "description": "Add a plugins builder and a collection of reusable plugins to the Layout Builder module.", @@ -2727,22 +2799,24 @@ }, { "name": "drupal/bricks", - "version": "2.0.3", + "version": "2.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/bricks.git", - "reference": "2.0.3" + "reference": "2.1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/bricks-2.0.3.zip", - "reference": "2.0.3", - "shasum": "50e9b97b0d03c342d22bd219aeb7ceaf42df0742" + "url": "https://ftp.drupal.org/files/projects/bricks-2.1.0.zip", + "reference": "2.1.0", + "shasum": "7c1979261f61fa7bf58259ef21d05873bfa62efa" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/bartik": "^1.0", + "drupal/core": "^9.3 || ^10" }, "require-dev": { + "drupal/bartik": "*", "drupal/bricks_inline": "*", "drupal/bricks_revisions": "*", "drupal/dynamic_entity_reference": "*", @@ -2755,8 +2829,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.3", - "datestamp": "1658177888", + "version": "2.1.0", + "datestamp": "1689839292", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3030,6 +3104,10 @@ "email": "opensource@fabianbircher.com", "role": "Maintainer" }, + { + "name": "joegraduate", + "homepage": "https://www.drupal.org/user/789384" + }, { "name": "nedjo", "homepage": "https://www.drupal.org/user/4481" @@ -3083,6 +3161,10 @@ "name": "bircher", "homepage": "https://www.drupal.org/user/1344166" }, + { + "name": "joegraduate", + "homepage": "https://www.drupal.org/user/789384" + }, { "name": "nedjo", "homepage": "https://www.drupal.org/user/4481" @@ -3219,14 +3301,14 @@ "name": "geek-merlin", "homepage": "https://www.drupal.org/user/229048" }, - { - "name": "jcnventura", - "homepage": "https://www.drupal.org/user/122464" - }, { "name": "joegraduate", "homepage": "https://www.drupal.org/user/789384" }, + { + "name": "lelkneralfaro", + "homepage": "https://www.drupal.org/user/3577260" + }, { "name": "mlncn", "homepage": "https://www.drupal.org/user/64383" @@ -3248,30 +3330,30 @@ }, { "name": "drupal/config_normalizer", - "version": "1.0.0-alpha6", + "version": "1.0.0-beta1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_normalizer.git", - "reference": "8.x-1.0-alpha6" + "reference": "8.x-1.0-beta1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_normalizer-8.x-1.0-alpha6.zip", - "reference": "8.x-1.0-alpha6", - "shasum": "030f2a34319fb7fc86c0263b1d7920aa322eb35b" + "url": "https://ftp.drupal.org/files/projects/config_normalizer-8.x-1.0-beta1.zip", + "reference": "8.x-1.0-beta1", + "shasum": "f69ffbdf947553c717775c94f30272d67a1a2e83" }, "require": { "drupal/config_filter": "*", - "drupal/core": "^8 || ^9" + "drupal/core": "^8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0-alpha6", - "datestamp": "1590768708", + "version": "8.x-1.0-beta1", + "datestamp": "1683148813", "security-coverage": { "status": "not-covered", - "message": "Alpha releases are not covered by Drupal security advisories." + "message": "Beta releases are not covered by Drupal security advisories." } } }, @@ -3293,12 +3375,24 @@ "homepage": "https://www.drupal.org/user/229048" }, { - "name": "jcnventura", - "homepage": "https://www.drupal.org/user/122464" + "name": "joegraduate", + "homepage": "https://www.drupal.org/user/789384" + }, + { + "name": "mlncn", + "homepage": "https://www.drupal.org/user/64383" }, { "name": "nedjo", "homepage": "https://www.drupal.org/user/4481" + }, + { + "name": "tadean", + "homepage": "https://www.drupal.org/user/3608919" + }, + { + "name": "uarizona", + "homepage": "https://www.drupal.org/user/3763238" } ], "description": "Normalizes configuration for comparison.", @@ -3418,8 +3512,8 @@ "homepage": "https://www.drupal.org/user/992990" }, { - "name": "jcnventura", - "homepage": "https://www.drupal.org/user/122464" + "name": "joegraduate", + "homepage": "https://www.drupal.org/user/789384" }, { "name": "mlncn", @@ -3432,6 +3526,10 @@ { "name": "pfrenssen", "homepage": "https://www.drupal.org/user/382067" + }, + { + "name": "tadean", + "homepage": "https://www.drupal.org/user/3608919" } ], "description": "Enables provision of configuration by extensions.", @@ -3485,10 +3583,6 @@ "name": "gnuget", "homepage": "https://www.drupal.org/user/992990" }, - { - "name": "jcnventura", - "homepage": "https://www.drupal.org/user/122464" - }, { "name": "joegraduate", "homepage": "https://www.drupal.org/user/789384" @@ -3651,10 +3745,6 @@ "name": "geek-merlin", "homepage": "https://www.drupal.org/user/229048" }, - { - "name": "jcnventura", - "homepage": "https://www.drupal.org/user/122464" - }, { "name": "joegraduate", "homepage": "https://www.drupal.org/user/789384" @@ -3674,6 +3764,10 @@ { "name": "tadean", "homepage": "https://www.drupal.org/user/3608919" + }, + { + "name": "uarizona", + "homepage": "https://www.drupal.org/user/3763238" } ], "description": "Synchronize your site with updated configuration provided by modules and themes.", @@ -3901,16 +3995,16 @@ }, { "name": "drupal/core", - "version": "9.5.7", + "version": "9.5.11", "source": { "type": "git", "url": "https://github.com/drupal/core.git", - "reference": "bf51aa8ed6ab733fcaf60d0860aefd3918140fe3" + "reference": "8afcb233c2a71501b35fed2713167c37831d5c19" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core/zipball/bf51aa8ed6ab733fcaf60d0860aefd3918140fe3", - "reference": "bf51aa8ed6ab733fcaf60d0860aefd3918140fe3", + "url": "https://api.github.com/repos/drupal/core/zipball/8afcb233c2a71501b35fed2713167c37831d5c19", + "reference": "8afcb233c2a71501b35fed2713167c37831d5c19", "shasum": "" }, "require": { @@ -3933,8 +4027,8 @@ "ext-tokenizer": "*", "ext-xml": "*", "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5", - "laminas/laminas-diactoros": "^2.14", "laminas/laminas-feed": "^2.17", + "longwave/laminas-diactoros": "^2.14", "masterminds/html5": "^2.7", "pear/archive_tar": "^1.4.14", "php": ">=7.3.0", @@ -4062,22 +4156,22 @@ ], "description": "Drupal is an open source content management platform powering millions of websites and applications.", "support": { - "source": "https://github.com/drupal/core/tree/9.5.7" + "source": "https://github.com/drupal/core/tree/9.5.11" }, - "time": "2023-03-24T16:54:38+00:00" + "time": "2023-09-19T17:58:28+00:00" }, { "name": "drupal/core-composer-scaffold", - "version": "9.5.7", + "version": "9.5.11", "source": { "type": "git", "url": "https://github.com/drupal/core-composer-scaffold.git", - "reference": "c78779acff7b39fc0f29ff1edd710361c15ed87b" + "reference": "08da8e59c6f1bd0b1a58d18f8addc0d937bbacc7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/c78779acff7b39fc0f29ff1edd710361c15ed87b", - "reference": "c78779acff7b39fc0f29ff1edd710361c15ed87b", + "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/08da8e59c6f1bd0b1a58d18f8addc0d937bbacc7", + "reference": "08da8e59c6f1bd0b1a58d18f8addc0d937bbacc7", "shasum": "" }, "require": { @@ -4112,23 +4206,23 @@ "drupal" ], "support": { - "source": "https://github.com/drupal/core-composer-scaffold/tree/9.5.7" + "source": "https://github.com/drupal/core-composer-scaffold/tree/9.5.11" }, - "time": "2023-03-09T21:29:23+00:00" + "time": "2023-04-30T16:17:33+00:00" }, { "name": "drupal/ctools", - "version": "3.13.0", + "version": "3.14.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/ctools.git", - "reference": "8.x-3.13" + "reference": "8.x-3.14" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.13.zip", - "reference": "8.x-3.13", - "shasum": "b84176544265d4c6aa17917d66335527c9498c5a" + "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.14.zip", + "reference": "8.x-3.14", + "shasum": "8895a8e47199b458013bc153ceafa0b1495f33c1" }, "require": { "drupal/core": "^9.3 || ^10" @@ -4136,8 +4230,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.13", - "datestamp": "1668631846", + "version": "8.x-3.14", + "datestamp": "1684299793", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4211,20 +4305,21 @@ }, { "name": "drupal/dashboards", - "version": "2.1.4", + "version": "2.1.6", "source": { "type": "git", "url": "https://git.drupalcode.org/project/dashboards.git", - "reference": "2.1.4" + "reference": "2.1.6" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/dashboards-2.1.4.zip", - "reference": "2.1.4", - "shasum": "1dba0b427376d9485697675a5bc813457b0929bb" + "url": "https://ftp.drupal.org/files/projects/dashboards-2.1.6.zip", + "reference": "2.1.6", + "shasum": "e8ba79f31ff32da7b1ee9a57a61c5987014a365f" }, "require": { - "drupal/core": "^9.4 || ^10" + "drupal/core": "^9.4 || ^10", + "laminas/laminas-feed": "^2.17" }, "require-dev": { "drupal/matomo": "*", @@ -4234,8 +4329,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.1.4", - "datestamp": "1679568617", + "version": "2.1.6", + "datestamp": "1681725489", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4363,7 +4458,7 @@ "datestamp": "1591283484", "security-coverage": { "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" + "message": "Beta releases are not covered by Drupal security advisories." } } }, @@ -4380,6 +4475,14 @@ "name": "akalata", "homepage": "https://www.drupal.org/user/498926" }, + { + "name": "amykhailova", + "homepage": "https://www.drupal.org/user/2892725" + }, + { + "name": "Arrow", + "homepage": "https://www.drupal.org/user/423969" + }, { "name": "dpopdan", "homepage": "https://www.drupal.org/user/2759811" @@ -4392,6 +4495,10 @@ "name": "fmizzell", "homepage": "https://www.drupal.org/user/1312210" }, + { + "name": "kelly.m.jacobs", + "homepage": "https://www.drupal.org/user/3397374" + }, { "name": "legolasbo", "homepage": "https://www.drupal.org/user/2480548" @@ -4896,17 +5003,17 @@ }, { "name": "drupal/geocoder", - "version": "3.32.0", + "version": "3.34.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/geocoder.git", - "reference": "8.x-3.32" + "reference": "8.x-3.34" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/geocoder-8.x-3.32.zip", - "reference": "8.x-3.32", - "shasum": "4fa70657d9c703a5a2ca9492514455b9f4e2d67e" + "url": "https://ftp.drupal.org/files/projects/geocoder-8.x-3.34.zip", + "reference": "8.x-3.34", + "shasum": "6eb44d0b055f4239a4bd65f3fedef5829a761fce" }, "require": { "davedevelopment/stiphle": "^0.9.2", @@ -4949,8 +5056,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.32", - "datestamp": "1679999900", + "version": "8.x-3.34", + "datestamp": "1682585666", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4972,41 +5079,13 @@ "homepage": "https://www.drupal.org/u/itamair", "role": "Co-maintainer" }, - { - "name": "Dean Reilly", - "homepage": "https://www.drupal.org/user/336031" - }, - { - "name": "gregseb", - "homepage": "https://www.drupal.org/user/847848" - }, - { - "name": "indytechcook", - "homepage": "https://www.drupal.org/user/245817" - }, - { - "name": "itamair", - "homepage": "https://www.drupal.org/user/1179076" - }, { "name": "michaelfavia", "homepage": "https://www.drupal.org/user/49137" }, { - "name": "phayes", - "homepage": "https://www.drupal.org/user/47098" - }, - { - "name": "Pol", - "homepage": "https://www.drupal.org/user/47194" - }, - { - "name": "Simon Georges", - "homepage": "https://www.drupal.org/user/172312" - }, - { - "name": "vidhatanand", - "homepage": "https://www.drupal.org/user/585764" + "name": "poker10", + "homepage": "https://www.drupal.org/user/272316" } ], "description": "Module and services based API to perform Geocode & Reverse Geocode operations among GIS data and addresses types & formats.", @@ -5019,17 +5098,17 @@ }, { "name": "drupal/geofield", - "version": "1.52.0", + "version": "1.55.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/geofield.git", - "reference": "8.x-1.52" + "reference": "8.x-1.55" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/geofield-8.x-1.52.zip", - "reference": "8.x-1.52", - "shasum": "e53392cc8f5eecc32ee7bf1215225a7aeba0f0a6" + "url": "https://ftp.drupal.org/files/projects/geofield-8.x-1.55.zip", + "reference": "8.x-1.55", + "shasum": "88403ad29424e3b5aba454534fcdcd53565b11f7" }, "require": { "drupal/core": "^8.8 || ^9 || ^10", @@ -5038,8 +5117,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.52", - "datestamp": "1674235694", + "version": "8.x-1.55", + "datestamp": "1692829747", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5065,14 +5144,6 @@ "name": "Pablo López", "homepage": "https://www.drupal.org/u/plopesc", "role": "Drupal 7 Maintainer" - }, - { - "name": "phayes", - "homepage": "https://www.drupal.org/user/47098" - }, - { - "name": "plopesc", - "homepage": "https://www.drupal.org/user/282415" } ], "description": "Stores geographic and location data (points, lines, and polygons).", @@ -5152,17 +5223,17 @@ }, { "name": "drupal/gin", - "version": "3.0.0-rc2", + "version": "3.0.0-rc6", "source": { "type": "git", "url": "https://git.drupalcode.org/project/gin.git", - "reference": "8.x-3.0-rc2" + "reference": "8.x-3.0-rc6" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/gin-8.x-3.0-rc2.zip", - "reference": "8.x-3.0-rc2", - "shasum": "0c3c664690680af6c3920c8877af431c29e38e00" + "url": "https://ftp.drupal.org/files/projects/gin-8.x-3.0-rc6.zip", + "reference": "8.x-3.0-rc6", + "shasum": "45d1939be11592cff64e0e3fe4e17553e754175a" }, "require": { "drupal/core": "^9 || ^10", @@ -5171,8 +5242,8 @@ "type": "drupal-theme", "extra": { "drupal": { - "version": "8.x-3.0-rc2", - "datestamp": "1678733202", + "version": "8.x-3.0-rc6", + "datestamp": "1693299666", "security-coverage": { "status": "not-covered", "message": "RC releases are not covered by Drupal security advisories." @@ -5214,17 +5285,17 @@ }, { "name": "drupal/gin_login", - "version": "1.4.0", + "version": "1.6.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/gin_login.git", - "reference": "8.x-1.4" + "reference": "8.x-1.6" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/gin_login-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "ec3e71a80544653469c2660bd8549b7d21e1de9f" + "url": "https://ftp.drupal.org/files/projects/gin_login-8.x-1.6.zip", + "reference": "8.x-1.6", + "shasum": "4f328c2533ba9a77c908478dc5298981c1e30aab" }, "require": { "drupal/core": "^8.9 || ^9 || ^10" @@ -5232,8 +5303,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.4", - "datestamp": "1674724507", + "version": "8.x-1.6", + "datestamp": "1683024096", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5273,26 +5344,26 @@ }, { "name": "drupal/gin_toolbar", - "version": "1.0.0-rc1", + "version": "1.0.0-rc3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/gin_toolbar.git", - "reference": "8.x-1.0-rc1" + "reference": "8.x-1.0-rc3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/gin_toolbar-8.x-1.0-rc1.zip", - "reference": "8.x-1.0-rc1", - "shasum": "90516f6aa22f4f60f1853bdceb757940f411ec7e" + "url": "https://ftp.drupal.org/files/projects/gin_toolbar-8.x-1.0-rc3.zip", + "reference": "8.x-1.0-rc3", + "shasum": "f9ae6c1c086f008a2911eb2ced4740ac5c307faf" }, "require": { - "drupal/core": "^8 || ^9 || ^10" + "drupal/core": "^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0-rc1", - "datestamp": "1669666957", + "version": "8.x-1.0-rc3", + "datestamp": "1688477564", "security-coverage": { "status": "not-covered", "message": "RC releases are not covered by Drupal security advisories." @@ -5336,7 +5407,7 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/graphql.git", - "reference": "961eb3aeeaced61c44ec8329a74a710956af16a8" + "reference": "ce2bc1f7103326f2377eb5aa2384e58bf3edd402" }, "require": { "drupal/core": "^9.3 || ^10", @@ -5353,8 +5424,8 @@ "dev-4.x": "4.x-dev" }, "drupal": { - "version": "8.x-4.4+6-dev", - "datestamp": "1679299922", + "version": "8.x-4.5+8-dev", + "datestamp": "1695381571", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -5386,6 +5457,10 @@ "name": "klausi", "homepage": "https://www.drupal.org/user/262198" }, + { + "name": "luigisa", + "homepage": "https://www.drupal.org/user/1022312" + }, { "name": "pmelab", "homepage": "https://www.drupal.org/user/555322" @@ -5458,14 +5533,14 @@ "name": "jsacksick", "homepage": "https://www.drupal.org/user/972218" }, - { - "name": "kaythay", - "homepage": "https://www.drupal.org/user/2182186" - }, { "name": "oknate", "homepage": "https://www.drupal.org/user/471638" }, + { + "name": "podarok", + "homepage": "https://www.drupal.org/user/116002" + }, { "name": "ram4nd", "homepage": "https://www.drupal.org/user/601534" @@ -5743,10 +5818,6 @@ "homepage": "https://www.drupal.org/u/ivnish", "role": "Maintainer" }, - { - "name": "ivnish", - "homepage": "https://www.drupal.org/user/3547706" - }, { "name": "jrockowitz", "homepage": "https://www.drupal.org/user/371407" @@ -6166,17 +6237,17 @@ }, { "name": "drupal/layout_builder_component_attributes", - "version": "2.1.1", + "version": "2.1.3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/layout_builder_component_attributes.git", - "reference": "2.1.1" + "reference": "2.1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/layout_builder_component_attributes-2.1.1.zip", - "reference": "2.1.1", - "shasum": "9432b54c546f873282e958487a8f5dca3e9fb81e" + "url": "https://ftp.drupal.org/files/projects/layout_builder_component_attributes-2.1.3.zip", + "reference": "2.1.3", + "shasum": "7c02269105a2bc0485d474ecfefaa4bd1c5cabca" }, "require": { "drupal/core": "^9.0|^10.0", @@ -6185,8 +6256,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.1.1", - "datestamp": "1677630435", + "version": "2.1.3", + "datestamp": "1695059373", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6639,17 +6710,17 @@ }, { "name": "drupal/matomo", - "version": "1.21.0", + "version": "1.22.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/matomo.git", - "reference": "8.x-1.21" + "reference": "8.x-1.22" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.21.zip", - "reference": "8.x-1.21", - "shasum": "9b1b1da48fae888c586c2cb060a78503039b6e57" + "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.22.zip", + "reference": "8.x-1.22", + "shasum": "b41bb83d9c0c6f8c27f72f6b1b62f691dab65a5d" }, "require": { "drupal/core": "^9.0 || ^10" @@ -6665,8 +6736,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.21", - "datestamp": "1674531082", + "version": "8.x-1.22", + "datestamp": "1691004328", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6991,17 +7062,17 @@ }, { "name": "drupal/metatag", - "version": "1.22.0", + "version": "1.26.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/metatag.git", - "reference": "8.x-1.22" + "reference": "8.x-1.26" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.22.zip", - "reference": "8.x-1.22", - "shasum": "045cd6a4aa5048bfd6d47584eae1210eab9ba1fa" + "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.26.zip", + "reference": "8.x-1.26", + "shasum": "afa4a37422748baa2f0c35b13961438668ef3be8" }, "require": { "drupal/core": "^9.3 || ^10", @@ -7021,8 +7092,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.22", - "datestamp": "1664472988", + "version": "8.x-1.26", + "datestamp": "1687856123", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7215,7 +7286,7 @@ "datestamp": "1671210021", "security-coverage": { "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" + "message": "RC releases are not covered by Drupal security advisories." } }, "branch-alias": { @@ -7236,10 +7307,18 @@ "name": "EclipseGc", "homepage": "https://www.drupal.org/user/61203" }, + { + "name": "ivnish", + "homepage": "https://www.drupal.org/user/3547706" + }, { "name": "japerry", "homepage": "https://www.drupal.org/user/45640" }, + { + "name": "joelpittet", + "homepage": "https://www.drupal.org/user/160302" + }, { "name": "manuel.adan", "homepage": "https://www.drupal.org/user/516420" @@ -7404,17 +7483,17 @@ }, { "name": "drupal/paragraphs", - "version": "1.15.0", + "version": "1.16.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/paragraphs.git", - "reference": "8.x-1.15" + "reference": "8.x-1.16" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.15.zip", - "reference": "8.x-1.15", - "shasum": "2ed2d3199553010fa1c500181bbebe676e9e60c1" + "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.16.zip", + "reference": "8.x-1.16", + "shasum": "48f60810fd8086a52d56e84af8b212cce7a270e8" }, "require": { "drupal/core": "^9.3 || ^10", @@ -7438,8 +7517,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.15", - "datestamp": "1661440897", + "version": "8.x-1.16", + "datestamp": "1694007797", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7552,26 +7631,26 @@ }, { "name": "drupal/pbf", - "version": "1.3.0", + "version": "1.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/pbf.git", - "reference": "8.x-1.3" + "reference": "8.x-1.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/pbf-8.x-1.3.zip", - "reference": "8.x-1.3", - "shasum": "a4fbf5a52b8d03896abc034999a81834e5e993b5" + "url": "https://ftp.drupal.org/files/projects/pbf-8.x-1.4.zip", + "reference": "8.x-1.4", + "shasum": "280dc1690b8e3a8e7ff5dab2efb5d58acae30f55" }, "require": { - "drupal/core": "^8 || ^9" + "drupal/core": "^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.3", - "datestamp": "1615236038", + "version": "8.x-1.4", + "datestamp": "1688679202", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7712,20 +7791,20 @@ }, { "name": "drupal/radix", - "version": "4.12.0", + "version": "4.13.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/radix.git", - "reference": "8.x-4.12" + "reference": "8.x-4.13" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/radix-8.x-4.12.zip", - "reference": "8.x-4.12", - "shasum": "acbb5d9f5aee105b1ba3ff007e1e57ce4d7d1a62" + "url": "https://ftp.drupal.org/files/projects/radix-8.x-4.13.zip", + "reference": "8.x-4.13", + "shasum": "a370b6483f8783eb19199e25364bd6d2a844fc71" }, "require": { - "drupal/core": "^8.7.7 || ^9.0" + "drupal/core": "^8.7.7 || ^9.0 || ^10.0" }, "require-dev": { "consolidation/robo": "^1.1.4 || ^2", @@ -7734,8 +7813,8 @@ "type": "drupal-theme", "extra": { "drupal": { - "version": "8.x-4.12", - "datestamp": "1668674690", + "version": "8.x-4.13", + "datestamp": "1695053609", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7783,17 +7862,17 @@ }, { "name": "drupal/redirect", - "version": "1.8.0", + "version": "1.9.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/redirect.git", - "reference": "8.x-1.8" + "reference": "8.x-1.9" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.8.zip", - "reference": "8.x-1.8", - "shasum": "a7a440423434472ff7115ae69df01553f763f839" + "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.9.zip", + "reference": "8.x-1.9", + "shasum": "2987de20f509e9f7cec8a0f81d3a6774f9b0ba3e" }, "require": { "drupal/core": "^9.2 || ^10" @@ -7801,8 +7880,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.8", - "datestamp": "1661806955", + "version": "8.x-1.9", + "datestamp": "1693393506", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7822,6 +7901,10 @@ "name": "Dave Reid", "homepage": "https://www.drupal.org/user/53892" }, + { + "name": "Kristen Pol", + "homepage": "https://www.drupal.org/user/8389" + }, { "name": "pifagor", "homepage": "https://www.drupal.org/user/2375692" @@ -7835,17 +7918,17 @@ }, { "name": "drupal/rest_password", - "version": "8.1.16", + "version": "8.1.17", "source": { "type": "git", "url": "https://git.drupalcode.org/project/rest_password.git", - "reference": "8.1.16" + "reference": "8.1.17" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/rest_password-8.1.16.zip", - "reference": "8.1.16", - "shasum": "b83e95ea98006be9bdfe2dc6f8c36ae230e45d52" + "url": "https://ftp.drupal.org/files/projects/rest_password-8.1.17.zip", + "reference": "8.1.17", + "shasum": "a62e6960b650cd50dab76e15cc286e9cee72b7c9" }, "require": { "drupal/core": "^8 || ^9 || ^10" @@ -7853,8 +7936,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.1.16", - "datestamp": "1666472965", + "version": "8.1.17", + "datestamp": "1695342437", "security-coverage": { "status": "not-covered", "message": "Project has not opted into security advisory coverage!" @@ -7943,7 +8026,7 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/rules.git", - "reference": "fc079d827514dac19881ddb9b482401adbf5bba3" + "reference": "2d40d10351128a29c037b076c27611808398cc60" }, "require": { "drupal/core": "^9.1 || ^10", @@ -7955,8 +8038,8 @@ "dev-3.x": "3.x-dev" }, "drupal": { - "version": "8.x-3.0-alpha7+46-dev", - "datestamp": "1678409312", + "version": "8.x-3.0-alpha7+50-dev", + "datestamp": "1689032348", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -8136,17 +8219,17 @@ }, { "name": "drupal/single_content_sync", - "version": "1.3.14", + "version": "1.4.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/single_content_sync.git", - "reference": "1.3.14" + "reference": "1.4.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/single_content_sync-1.3.14.zip", - "reference": "1.3.14", - "shasum": "87ea4e90f395746d66a8a02f474793e6e5b8b50f" + "url": "https://ftp.drupal.org/files/projects/single_content_sync-1.4.1.zip", + "reference": "1.4.1", + "shasum": "ee50bd6f45e72af24a175325cf1bae38b68cbc9e" }, "require": { "drupal/core": "^9.3 || ^10", @@ -8157,8 +8240,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "1.3.14", - "datestamp": "1680805556", + "version": "1.4.1", + "datestamp": "1694674006", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8189,27 +8272,27 @@ }, { "name": "drupal/slick", - "version": "2.7.0", + "version": "2.10.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/slick.git", - "reference": "8.x-2.7" + "reference": "8.x-2.10" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/slick-8.x-2.7.zip", - "reference": "8.x-2.7", - "shasum": "bdc5e23e32fa83c085cbc0ce2d3b4f9a1dcd9433" + "url": "https://ftp.drupal.org/files/projects/slick-8.x-2.10.zip", + "reference": "8.x-2.10", + "shasum": "818d4aab661d94c06e2047eaa14bd45df589e14b" }, "require": { - "drupal/blazy": "~2.0", + "drupal/blazy": "^2.17", "drupal/core": "^8.8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.7", - "datestamp": "1671083547", + "version": "8.x-2.10", + "datestamp": "1695019811", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8249,27 +8332,27 @@ }, { "name": "drupal/slick_views", - "version": "2.6.0", + "version": "2.8.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/slick_views.git", - "reference": "8.x-2.6" + "reference": "8.x-2.8" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/slick_views-8.x-2.6.zip", - "reference": "8.x-2.6", - "shasum": "522780d13d6452cdce73e8bca85b088df548dc05" + "url": "https://ftp.drupal.org/files/projects/slick_views-8.x-2.8.zip", + "reference": "8.x-2.8", + "shasum": "870fd15c77340326d5afda1103c64f43023a7122" }, "require": { - "drupal/core": "^8 || ^9 || ^10", - "drupal/slick": "~2.0" + "drupal/core": "^8.8 || ^9 || ^10", + "drupal/slick": "^2.10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.6", - "datestamp": "1640350107", + "version": "8.x-2.8", + "datestamp": "1695019929", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8278,7 +8361,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { @@ -8295,33 +8378,37 @@ "views" ], "support": { - "source": "http://cgit.drupalcode.org/slick_views", + "source": "https://git.drupalcode.org/project/slick_views", "issues": "https://drupal.org/project/issues/slick_views" } }, { "name": "drupal/smart_trim", - "version": "2.0.0", + "version": "2.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/smart_trim.git", - "reference": "2.0.0" + "reference": "2.1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/smart_trim-2.0.0.zip", - "reference": "2.0.0", - "shasum": "d917ad4d78b50cf535f3a292a2e09cc73b87bf4f" + "url": "https://ftp.drupal.org/files/projects/smart_trim-2.1.0.zip", + "reference": "2.1.0", + "shasum": "874b4cbddc4833f1b9adc76a8398377903fd73ee" }, "require": { "drupal/core": "^8 || ^9 || ^10", - "drupal/token": "^1.0" + "drupal/token": "^1.0", + "php": ">=7.4.0" + }, + "require-dev": { + "drupal/token_filter": "^2.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.0", - "datestamp": "1666374010", + "version": "2.1.0", + "datestamp": "1686152417", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8339,12 +8426,14 @@ "role": "Maintainer" }, { - "name": "ultimike", - "homepage": "https://www.drupal.org/user/51132" + "name": "AmyJune Hineline (volkswagenchick)", + "homepage": "https://www.drupal.org/u/volkswagenchick", + "role": "Maintainer" }, { - "name": "volkswagenchick", - "homepage": "https://www.drupal.org/user/3332522" + "name": "Michael Anello (ultimike)", + "homepage": "https://www.drupal.org/u/ultimike", + "role": "Maintainer" } ], "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.", @@ -8356,27 +8445,27 @@ }, { "name": "drupal/splide", - "version": "1.0.5", + "version": "1.0.8", "source": { "type": "git", "url": "https://git.drupalcode.org/project/splide.git", - "reference": "1.0.5" + "reference": "1.0.8" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/splide-1.0.5.zip", - "reference": "1.0.5", - "shasum": "80b709f0b59c9ae856746fe550951d33d503dea8" + "url": "https://ftp.drupal.org/files/projects/splide-1.0.8.zip", + "reference": "1.0.8", + "shasum": "3d7f69aa2da6851fd5f8f56a914c95f3ceb989a7" }, "require": { - "drupal/blazy": "~2.0", + "drupal/blazy": "^2.17", "drupal/core": "^8.8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "1.0.5", - "datestamp": "1653729058", + "version": "1.0.8", + "datestamp": "1695020185", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8413,26 +8502,26 @@ }, { "name": "drupal/tagclouds", - "version": "2.0.5", + "version": "2.0.7", "source": { "type": "git", "url": "https://git.drupalcode.org/project/tagclouds.git", - "reference": "2.0.5" + "reference": "2.0.7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/tagclouds-2.0.5.zip", - "reference": "2.0.5", - "shasum": "7a27a7ef7cf7c119eea5defd91bd8a1d95b1894e" + "url": "https://ftp.drupal.org/files/projects/tagclouds-2.0.7.zip", + "reference": "2.0.7", + "shasum": "4f5942f3a90bf022d7234ca3921baef02c41069c" }, "require": { - "drupal/core": "^8.8 || ^9 || ^10" + "drupal/core": "^9.5 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.5", - "datestamp": "1671206276", + "version": "2.0.7", + "datestamp": "1689963334", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8545,17 +8634,17 @@ }, { "name": "drupal/token", - "version": "1.11.0", + "version": "1.12.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/token.git", - "reference": "8.x-1.11" + "reference": "8.x-1.12" }, "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.12.zip", + "reference": "8.x-1.12", + "shasum": "cefe1b203b793682f74ea43e18d0a814cf768763" }, "require": { "drupal/core": "^9.2 || ^10" @@ -8563,8 +8652,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.11", - "datestamp": "1659471813", + "version": "8.x-1.12", + "datestamp": "1688015262", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8668,17 +8757,17 @@ }, { "name": "drupal/ui_patterns", - "version": "1.5.0", + "version": "1.7.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/ui_patterns.git", - "reference": "8.x-1.5" + "reference": "8.x-1.7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/ui_patterns-8.x-1.5.zip", - "reference": "8.x-1.5", - "shasum": "fbe88f3d70f50a02672cba974275a5b7703be41a" + "url": "https://ftp.drupal.org/files/projects/ui_patterns-8.x-1.7.zip", + "reference": "8.x-1.7", + "shasum": "83b477eb5f668846c0f150ef0a1926f3aba59d14" }, "require": { "drupal/core": "^9 || ^10" @@ -8690,8 +8779,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.5", - "datestamp": "1674137427", + "version": "8.x-1.7", + "datestamp": "1688044506", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8712,6 +8801,14 @@ "name": "bircher", "homepage": "https://www.drupal.org/user/1344166" }, + { + "name": "Christian.wiedemann", + "homepage": "https://www.drupal.org/user/861002" + }, + { + "name": "DuaelFr", + "homepage": "https://www.drupal.org/user/931394" + }, { "name": "G4MBINI", "homepage": "https://www.drupal.org/user/2533498" @@ -9024,17 +9121,17 @@ }, { "name": "drupal/views_infinite_scroll", - "version": "2.0.1", + "version": "2.0.2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/views_infinite_scroll.git", - "reference": "2.0.1" + "reference": "2.0.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/views_infinite_scroll-2.0.1.zip", - "reference": "2.0.1", - "shasum": "c57a2c63f00c53a9ee7e741c7f37df21eb9e76de" + "url": "https://ftp.drupal.org/files/projects/views_infinite_scroll-2.0.2.zip", + "reference": "2.0.2", + "shasum": "8b2b935d1e5d94d7ad068d099512d3b915efb41f" }, "require": { "drupal/core": "^9.2 || ^10" @@ -9042,8 +9139,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.1", - "datestamp": "1664716655", + "version": "2.0.2", + "datestamp": "1689001933", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9055,6 +9152,14 @@ "GPL-2.0-or-later" ], "authors": [ + { + "name": "Anybody", + "homepage": "https://www.drupal.org/user/291091" + }, + { + "name": "Grevil", + "homepage": "https://www.drupal.org/user/3668491" + }, { "name": "Honza Pobořil", "homepage": "https://www.drupal.org/user/123612" @@ -9070,6 +9175,10 @@ { "name": "Sam152", "homepage": "https://www.drupal.org/user/1485048" + }, + { + "name": "thomas.frobieter", + "homepage": "https://www.drupal.org/user/409335" } ], "description": "A pager which allows an infinite scroll effect for views.", @@ -9301,16 +9410,16 @@ }, { "name": "egulias/email-validator", - "version": "3.2.5", + "version": "3.2.6", "source": { "type": "git", "url": "https://github.com/egulias/EmailValidator.git", - "reference": "b531a2311709443320c786feb4519cfaf94af796" + "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/b531a2311709443320c786feb4519cfaf94af796", - "reference": "b531a2311709443320c786feb4519cfaf94af796", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7", + "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7", "shasum": "" }, "require": { @@ -9356,7 +9465,7 @@ ], "support": { "issues": "https://github.com/egulias/EmailValidator/issues", - "source": "https://github.com/egulias/EmailValidator/tree/3.2.5" + "source": "https://github.com/egulias/EmailValidator/tree/3.2.6" }, "funding": [ { @@ -9364,20 +9473,20 @@ "type": "github" } ], - "time": "2023-01-02T17:26:14+00:00" + "time": "2023-06-01T07:04:22+00:00" }, { "name": "elasticsearch/elasticsearch", - "version": "v7.17.1", + "version": "v7.17.2", "source": { "type": "git", "url": "git@github.com:elastic/elasticsearch-php.git", - "reference": "f1b8918f411b837ce5f6325e829a73518fd50367" + "reference": "2d302233f2bb0926812d82823bb820d405e130fc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/elastic/elasticsearch-php/zipball/f1b8918f411b837ce5f6325e829a73518fd50367", - "reference": "f1b8918f411b837ce5f6325e829a73518fd50367", + "url": "https://api.github.com/repos/elastic/elasticsearch-php/zipball/2d302233f2bb0926812d82823bb820d405e130fc", + "reference": "2d302233f2bb0926812d82823bb820d405e130fc", "shasum": "" }, "require": { @@ -9390,7 +9499,7 @@ "ext-yaml": "*", "ext-zip": "*", "mockery/mockery": "^1.2", - "phpstan/phpstan": "^0.12", + "phpstan/phpstan": "^1.10", "phpunit/phpunit": "^9.3", "squizlabs/php_codesniffer": "^3.4", "symfony/finder": "~4.0" @@ -9427,7 +9536,7 @@ "elasticsearch", "search" ], - "time": "2022-09-30T12:28:55+00:00" + "time": "2023-04-21T15:31:12+00:00" }, { "name": "enlightn/security-checker", @@ -9887,16 +9996,16 @@ }, { "name": "guzzlehttp/promises", - "version": "1.5.2", + "version": "1.5.3", "source": { "type": "git", "url": "https://github.com/guzzle/promises.git", - "reference": "b94b2807d85443f9719887892882d0329d1e2598" + "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598", - "reference": "b94b2807d85443f9719887892882d0329d1e2598", + "url": "https://api.github.com/repos/guzzle/promises/zipball/67ab6e18aaa14d753cc148911d273f6e6cb6721e", + "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e", "shasum": "" }, "require": { @@ -9906,11 +10015,6 @@ "symfony/phpunit-bridge": "^4.4 || ^5.1" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.5-dev" - } - }, "autoload": { "files": [ "src/functions_include.php" @@ -9951,7 +10055,7 @@ ], "support": { "issues": "https://github.com/guzzle/promises/issues", - "source": "https://github.com/guzzle/promises/tree/1.5.2" + "source": "https://github.com/guzzle/promises/tree/1.5.3" }, "funding": [ { @@ -9967,20 +10071,20 @@ "type": "tidelift" } ], - "time": "2022-08-28T14:55:35+00:00" + "time": "2023-05-21T12:31:43+00:00" }, { "name": "guzzlehttp/psr7", - "version": "1.9.0", + "version": "1.9.1", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "e98e3e6d4f86621a9b75f623996e6bbdeb4b9318" + "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/e98e3e6d4f86621a9b75f623996e6bbdeb4b9318", - "reference": "e98e3e6d4f86621a9b75f623996e6bbdeb4b9318", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/e4490cabc77465aaee90b20cfc9a770f8c04be6b", + "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b", "shasum": "" }, "require": { @@ -9999,11 +10103,6 @@ "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.9-dev" - } - }, "autoload": { "files": [ "src/functions_include.php" @@ -10061,7 +10160,7 @@ ], "support": { "issues": "https://github.com/guzzle/psr7/issues", - "source": "https://github.com/guzzle/psr7/tree/1.9.0" + "source": "https://github.com/guzzle/psr7/tree/1.9.1" }, "funding": [ { @@ -10077,7 +10176,7 @@ "type": "tidelift" } ], - "time": "2022-06-20T21:43:03+00:00" + "time": "2023-04-17T16:00:37+00:00" }, { "name": "intervention/httpauth", @@ -10142,16 +10241,16 @@ }, { "name": "itamair/geophp", - "version": "1.4", + "version": "1.5", "source": { "type": "git", "url": "https://github.com/itamair/geoPHP.git", - "reference": "ced300d09ddda1b7212ebe1a9a53aa065e5f9585" + "reference": "645f3262ebaa7443d58910207c65f386c733f614" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/itamair/geoPHP/zipball/ced300d09ddda1b7212ebe1a9a53aa065e5f9585", - "reference": "ced300d09ddda1b7212ebe1a9a53aa065e5f9585", + "url": "https://api.github.com/repos/itamair/geoPHP/zipball/645f3262ebaa7443d58910207c65f386c733f614", + "reference": "645f3262ebaa7443d58910207c65f386c733f614", "shasum": "" }, "require-dev": { @@ -10182,9 +10281,9 @@ "description": "GeoPHP is a open-source native PHP library for doing geometry operations. It is written entirely in PHP and can therefore run on shared hosts. It can read and write a wide variety of formats: WKT (including EWKT), WKB (including EWKB), GeoJSON, KML, GPX, GeoRSS). It works with all Simple-Feature geometries (Point, LineString, Polygon, GeometryCollection etc.) and can be used to get centroids, bounding-boxes, area, and a wide variety of other useful information.", "homepage": "https://github.com/itamair/geoPHP", "support": { - "source": "https://github.com/itamair/geoPHP/tree/1.4" + "source": "https://github.com/itamair/geoPHP/tree/1.5" }, - "time": "2023-02-05T00:00:51+00:00" + "time": "2023-04-26T23:16:44+00:00" }, { "name": "kevinrob/guzzle-cache-middleware", @@ -10269,103 +10368,6 @@ }, "time": "2022-01-04T16:40:46+00:00" }, - { - "name": "laminas/laminas-diactoros", - "version": "2.25.1", - "source": { - "type": "git", - "url": "https://github.com/laminas/laminas-diactoros.git", - "reference": "13f45e5ba09c9b27752247d3be186fc49c2ca3a5" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/13f45e5ba09c9b27752247d3be186fc49c2ca3a5", - "reference": "13f45e5ba09c9b27752247d3be186fc49c2ca3a5", - "shasum": "" - }, - "require": { - "php": "~8.0.0 || ~8.1.0 || ~8.2.0", - "psr/http-factory": "^1.0", - "psr/http-message": "^1.1" - }, - "conflict": { - "zendframework/zend-diactoros": "*" - }, - "provide": { - "psr/http-factory-implementation": "1.0", - "psr/http-message-implementation": "1.0" - }, - "require-dev": { - "ext-curl": "*", - "ext-dom": "*", - "ext-gd": "*", - "ext-libxml": "*", - "http-interop/http-factory-tests": "^0.9.0", - "laminas/laminas-coding-standard": "^2.5", - "php-http/psr7-integration-tests": "^1.2", - "phpunit/phpunit": "^9.5.28", - "psalm/plugin-phpunit": "^0.18.4", - "vimeo/psalm": "^5.6" - }, - "type": "library", - "extra": { - "laminas": { - "config-provider": "Laminas\\Diactoros\\ConfigProvider", - "module": "Laminas\\Diactoros" - } - }, - "autoload": { - "files": [ - "src/functions/create_uploaded_file.php", - "src/functions/marshal_headers_from_sapi.php", - "src/functions/marshal_method_from_sapi.php", - "src/functions/marshal_protocol_version_from_sapi.php", - "src/functions/marshal_uri_from_sapi.php", - "src/functions/normalize_server.php", - "src/functions/normalize_uploaded_files.php", - "src/functions/parse_cookie_header.php", - "src/functions/create_uploaded_file.legacy.php", - "src/functions/marshal_headers_from_sapi.legacy.php", - "src/functions/marshal_method_from_sapi.legacy.php", - "src/functions/marshal_protocol_version_from_sapi.legacy.php", - "src/functions/marshal_uri_from_sapi.legacy.php", - "src/functions/normalize_server.legacy.php", - "src/functions/normalize_uploaded_files.legacy.php", - "src/functions/parse_cookie_header.legacy.php" - ], - "psr-4": { - "Laminas\\Diactoros\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "description": "PSR HTTP Message implementations", - "homepage": "https://laminas.dev", - "keywords": [ - "http", - "laminas", - "psr", - "psr-17", - "psr-7" - ], - "support": { - "chat": "https://laminas.dev/chat", - "docs": "https://docs.laminas.dev/laminas-diactoros/", - "forum": "https://discourse.laminas.dev", - "issues": "https://github.com/laminas/laminas-diactoros/issues", - "rss": "https://github.com/laminas/laminas-diactoros/releases.atom", - "source": "https://github.com/laminas/laminas-diactoros" - }, - "funding": [ - { - "url": "https://funding.communitybridge.org/projects/laminas-project", - "type": "community_bridge" - } - ], - "time": "2023-04-08T00:31:34+00:00" - }, { "name": "laminas/laminas-escaper", "version": "2.12.0", @@ -10430,41 +10432,41 @@ }, { "name": "laminas/laminas-feed", - "version": "2.20.0", + "version": "2.21.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-feed.git", - "reference": "508ebef6e622f2f2ce3dd0559739ffd0dfa3b938" + "reference": "52918789a417bc292ccd6fbb4b91bd78a65d50ab" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/508ebef6e622f2f2ce3dd0559739ffd0dfa3b938", - "reference": "508ebef6e622f2f2ce3dd0559739ffd0dfa3b938", + "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/52918789a417bc292ccd6fbb4b91bd78a65d50ab", + "reference": "52918789a417bc292ccd6fbb4b91bd78a65d50ab", "shasum": "" }, "require": { "ext-dom": "*", "ext-libxml": "*", "laminas/laminas-escaper": "^2.9", - "laminas/laminas-servicemanager": "^3.14.0", "laminas/laminas-stdlib": "^3.6", - "php": "~8.0.0 || ~8.1.0 || ~8.2.0" + "php": "~8.1.0 || ~8.2.0" }, "conflict": { "laminas/laminas-servicemanager": "<3.3", "zendframework/zend-feed": "*" }, "require-dev": { - "laminas/laminas-cache": "^2.13.2 || ^3.6", - "laminas/laminas-cache-storage-adapter-memory": "^1.1.0 || ^2.1", - "laminas/laminas-coding-standard": "~2.4.0", - "laminas/laminas-db": "^2.15", - "laminas/laminas-http": "^2.17.0", - "laminas/laminas-validator": "^2.26", - "phpunit/phpunit": "^9.5.25", - "psalm/plugin-phpunit": "^0.18.0", - "psr/http-message": "^1.0.1", - "vimeo/psalm": "^5.1.0" + "laminas/laminas-cache": "^2.13.2 || ^3.10.1", + "laminas/laminas-cache-storage-adapter-memory": "^1.1.0 || ^2.2", + "laminas/laminas-coding-standard": "~2.5.0", + "laminas/laminas-db": "^2.18", + "laminas/laminas-http": "^2.18", + "laminas/laminas-servicemanager": "^3.21.0", + "laminas/laminas-validator": "^2.30.1", + "phpunit/phpunit": "^10.2.6", + "psalm/plugin-phpunit": "^0.18.4", + "psr/http-message": "^2.0", + "vimeo/psalm": "^5.13.1" }, "suggest": { "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests", @@ -10473,122 +10475,32 @@ "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations", "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent", "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator" - }, - "type": "library", - "autoload": { - "psr-4": { - "Laminas\\Feed\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "description": "provides functionality for creating and consuming RSS and Atom feeds", - "homepage": "https://laminas.dev", - "keywords": [ - "atom", - "feed", - "laminas", - "rss" - ], - "support": { - "chat": "https://laminas.dev/chat", - "docs": "https://docs.laminas.dev/laminas-feed/", - "forum": "https://discourse.laminas.dev", - "issues": "https://github.com/laminas/laminas-feed/issues", - "rss": "https://github.com/laminas/laminas-feed/releases.atom", - "source": "https://github.com/laminas/laminas-feed" - }, - "funding": [ - { - "url": "https://funding.communitybridge.org/projects/laminas-project", - "type": "community_bridge" - } - ], - "time": "2022-12-03T19:40:30+00:00" - }, - { - "name": "laminas/laminas-servicemanager", - "version": "3.20.0", - "source": { - "type": "git", - "url": "https://github.com/laminas/laminas-servicemanager.git", - "reference": "bc2c2cbe2dd90db8b9d16b0618f542692b76ab59" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-servicemanager/zipball/bc2c2cbe2dd90db8b9d16b0618f542692b76ab59", - "reference": "bc2c2cbe2dd90db8b9d16b0618f542692b76ab59", - "shasum": "" - }, - "require": { - "laminas/laminas-stdlib": "^3.2.1", - "php": "~8.0.0 || ~8.1.0 || ~8.2.0", - "psr/container": "^1.0" - }, - "conflict": { - "ext-psr": "*", - "laminas/laminas-code": "<3.3.1", - "zendframework/zend-code": "<3.3.1", - "zendframework/zend-servicemanager": "*" - }, - "provide": { - "psr/container-implementation": "^1.0" - }, - "replace": { - "container-interop/container-interop": "^1.2.0" - }, - "require-dev": { - "composer/package-versions-deprecated": "^1.11.99.5", - "laminas/laminas-coding-standard": "~2.4.0", - "laminas/laminas-container-config-test": "^0.8", - "laminas/laminas-dependency-plugin": "^2.2", - "mikey179/vfsstream": "^1.6.11@alpha", - "ocramius/proxy-manager": "^2.14.1", - "phpbench/phpbench": "^1.2.7", - "phpunit/phpunit": "^9.5.26", - "psalm/plugin-phpunit": "^0.18.0", - "vimeo/psalm": "^5.0.0" - }, - "suggest": { - "ocramius/proxy-manager": "ProxyManager ^2.1.1 to handle lazy initialization of services" - }, - "bin": [ - "bin/generate-deps-for-config-factory", - "bin/generate-factory-for-class" - ], + }, "type": "library", "autoload": { - "files": [ - "src/autoload.php" - ], "psr-4": { - "Laminas\\ServiceManager\\": "src/" + "Laminas\\Feed\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "BSD-3-Clause" ], - "description": "Factory-Driven Dependency Injection Container", + "description": "provides functionality for creating and consuming RSS and Atom feeds", "homepage": "https://laminas.dev", "keywords": [ - "PSR-11", - "dependency-injection", - "di", - "dic", + "atom", + "feed", "laminas", - "service-manager", - "servicemanager" + "rss" ], "support": { "chat": "https://laminas.dev/chat", - "docs": "https://docs.laminas.dev/laminas-servicemanager/", + "docs": "https://docs.laminas.dev/laminas-feed/", "forum": "https://discourse.laminas.dev", - "issues": "https://github.com/laminas/laminas-servicemanager/issues", - "rss": "https://github.com/laminas/laminas-servicemanager/releases.atom", - "source": "https://github.com/laminas/laminas-servicemanager" + "issues": "https://github.com/laminas/laminas-feed/issues", + "rss": "https://github.com/laminas/laminas-feed/releases.atom", + "source": "https://github.com/laminas/laminas-feed" }, "funding": [ { @@ -10596,34 +10508,34 @@ "type": "community_bridge" } ], - "time": "2022-12-01T17:03:38+00:00" + "time": "2023-07-24T09:21:16+00:00" }, { "name": "laminas/laminas-stdlib", - "version": "3.17.0", + "version": "3.18.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-stdlib.git", - "reference": "dd35c868075bad80b6718959740913e178eb4274" + "reference": "e85b29076c6216e7fc98e72b42dbe1bbc3b95ecf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/dd35c868075bad80b6718959740913e178eb4274", - "reference": "dd35c868075bad80b6718959740913e178eb4274", + "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/e85b29076c6216e7fc98e72b42dbe1bbc3b95ecf", + "reference": "e85b29076c6216e7fc98e72b42dbe1bbc3b95ecf", "shasum": "" }, "require": { - "php": "~8.1.0 || ~8.2.0" + "php": "~8.1.0 || ~8.2.0 || ~8.3.0" }, "conflict": { "zendframework/zend-stdlib": "*" }, "require-dev": { "laminas/laminas-coding-standard": "^2.5", - "phpbench/phpbench": "^1.2.9", - "phpunit/phpunit": "^10.0.16", + "phpbench/phpbench": "^1.2.14", + "phpunit/phpunit": "^10.3.3", "psalm/plugin-phpunit": "^0.18.4", - "vimeo/psalm": "^5.8" + "vimeo/psalm": "^5.15.0" }, "type": "library", "autoload": { @@ -10655,7 +10567,7 @@ "type": "community_bridge" } ], - "time": "2023-03-20T13:51:37+00:00" + "time": "2023-09-19T10:15:21+00:00" }, { "name": "lcobucci/clock", @@ -10930,35 +10842,34 @@ }, { "name": "league/oauth2-server", - "version": "8.5.1", + "version": "8.5.4", "source": { "type": "git", "url": "https://github.com/thephpleague/oauth2-server.git", - "reference": "43cd4d406906c6be5c8de2cee9bd3ad3753544ef" + "reference": "ab7714d073844497fd222d5d0a217629089936bc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/oauth2-server/zipball/43cd4d406906c6be5c8de2cee9bd3ad3753544ef", - "reference": "43cd4d406906c6be5c8de2cee9bd3ad3753544ef", + "url": "https://api.github.com/repos/thephpleague/oauth2-server/zipball/ab7714d073844497fd222d5d0a217629089936bc", + "reference": "ab7714d073844497fd222d5d0a217629089936bc", "shasum": "" }, "require": { "defuse/php-encryption": "^2.3", - "ext-json": "*", "ext-openssl": "*", "lcobucci/clock": "^2.2 || ^3.0", "lcobucci/jwt": "^4.3 || ^5.0", "league/event": "^2.2", - "league/uri": "^6.7", + "league/uri": "^6.7 || ^7.0", "php": "^8.0", - "psr/http-message": "^1.0.1" + "psr/http-message": "^1.0.1 || ^2.0" }, "replace": { "league/oauth2server": "*", "lncd/oauth2": "*" }, "require-dev": { - "laminas/laminas-diactoros": "^2.24.0", + "laminas/laminas-diactoros": "^3.0.0", "phpstan/phpstan": "^0.12.57", "phpstan/phpstan-phpunit": "^0.12.16", "phpunit/phpunit": "^9.6.6", @@ -11007,7 +10918,7 @@ ], "support": { "issues": "https://github.com/thephpleague/oauth2-server/issues", - "source": "https://github.com/thephpleague/oauth2-server/tree/8.5.1" + "source": "https://github.com/thephpleague/oauth2-server/tree/8.5.4" }, "funding": [ { @@ -11015,58 +10926,48 @@ "type": "github" } ], - "time": "2023-04-04T10:20:16+00:00" + "time": "2023-08-25T22:35:12+00:00" }, { "name": "league/uri", - "version": "6.8.0", + "version": "7.3.0", "source": { "type": "git", "url": "https://github.com/thephpleague/uri.git", - "reference": "a700b4656e4c54371b799ac61e300ab25a2d1d39" + "reference": "36743c3961bb82bf93da91917b6bced0358a8d45" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/uri/zipball/a700b4656e4c54371b799ac61e300ab25a2d1d39", - "reference": "a700b4656e4c54371b799ac61e300ab25a2d1d39", + "url": "https://api.github.com/repos/thephpleague/uri/zipball/36743c3961bb82bf93da91917b6bced0358a8d45", + "reference": "36743c3961bb82bf93da91917b6bced0358a8d45", "shasum": "" }, "require": { - "ext-json": "*", - "league/uri-interfaces": "^2.3", - "php": "^8.1", - "psr/http-message": "^1.0.1" + "league/uri-interfaces": "^7.3", + "php": "^8.1" }, "conflict": { "league/uri-schemes": "^1.0" }, - "require-dev": { - "friendsofphp/php-cs-fixer": "^v3.9.5", - "nyholm/psr7": "^1.5.1", - "php-http/psr7-integration-tests": "^1.1.1", - "phpbench/phpbench": "^1.2.6", - "phpstan/phpstan": "^1.8.5", - "phpstan/phpstan-deprecation-rules": "^1.0", - "phpstan/phpstan-phpunit": "^1.1.1", - "phpstan/phpstan-strict-rules": "^1.4.3", - "phpunit/phpunit": "^9.5.24", - "psr/http-factory": "^1.0.1" - }, "suggest": { - "ext-fileinfo": "Needed to create Data URI from a filepath", - "ext-intl": "Needed to improve host validation", - "league/uri-components": "Needed to easily manipulate URI objects", - "psr/http-factory": "Needed to use the URI factory" + "ext-bcmath": "to improve IPV4 host parsing", + "ext-fileinfo": "to create Data URI from file contennts", + "ext-gmp": "to improve IPV4 host parsing", + "ext-intl": "to handle IDN host with the best performance", + "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain", + "league/uri-components": "Needed to easily manipulate URI objects components", + "php-64bit": "to improve IPV4 host parsing", + "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "6.x-dev" + "dev-master": "7.x-dev" } }, "autoload": { "psr-4": { - "League\\Uri\\": "src" + "League\\Uri\\": "" } }, "notification-url": "https://packagist.org/downloads/", @@ -11106,8 +11007,8 @@ "support": { "docs": "https://uri.thephpleague.com", "forum": "https://thephpleague.slack.com", - "issues": "https://github.com/thephpleague/uri/issues", - "source": "https://github.com/thephpleague/uri/tree/6.8.0" + "issues": "https://github.com/thephpleague/uri-src/issues", + "source": "https://github.com/thephpleague/uri/tree/7.3.0" }, "funding": [ { @@ -11115,46 +11016,44 @@ "type": "github" } ], - "time": "2022-09-13T19:58:47+00:00" + "time": "2023-09-09T17:21:43+00:00" }, { "name": "league/uri-interfaces", - "version": "2.3.0", + "version": "7.3.0", "source": { "type": "git", "url": "https://github.com/thephpleague/uri-interfaces.git", - "reference": "00e7e2943f76d8cb50c7dfdc2f6dee356e15e383" + "reference": "c409b60ed2245ff94c965a8c798a60166db53361" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/00e7e2943f76d8cb50c7dfdc2f6dee356e15e383", - "reference": "00e7e2943f76d8cb50c7dfdc2f6dee356e15e383", + "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/c409b60ed2245ff94c965a8c798a60166db53361", + "reference": "c409b60ed2245ff94c965a8c798a60166db53361", "shasum": "" }, "require": { - "ext-json": "*", - "php": "^7.2 || ^8.0" - }, - "require-dev": { - "friendsofphp/php-cs-fixer": "^2.19", - "phpstan/phpstan": "^0.12.90", - "phpstan/phpstan-phpunit": "^0.12.19", - "phpstan/phpstan-strict-rules": "^0.12.9", - "phpunit/phpunit": "^8.5.15 || ^9.5" + "ext-filter": "*", + "php": "^8.1", + "psr/http-factory": "^1", + "psr/http-message": "^1.1 || ^2.0" }, "suggest": { - "ext-intl": "to use the IDNA feature", - "symfony/intl": "to use the IDNA feature via Symfony Polyfill" + "ext-bcmath": "to improve IPV4 host parsing", + "ext-gmp": "to improve IPV4 host parsing", + "ext-intl": "to handle IDN host with the best performance", + "php-64bit": "to improve IPV4 host parsing", + "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.x-dev" + "dev-master": "7.x-dev" } }, "autoload": { "psr-4": { - "League\\Uri\\": "src/" + "League\\Uri\\": "" } }, "notification-url": "https://packagist.org/downloads/", @@ -11168,17 +11067,32 @@ "homepage": "https://nyamsprod.com" } ], - "description": "Common interface for URI representation", - "homepage": "http://github.com/thephpleague/uri-interfaces", + "description": "Common interfaces and classes for URI representation and interaction", + "homepage": "https://uri.thephpleague.com", "keywords": [ + "data-uri", + "file-uri", + "ftp", + "hostname", + "http", + "https", + "parse_str", + "parse_url", + "psr-7", + "query-string", + "querystring", "rfc3986", "rfc3987", + "rfc6570", "uri", - "url" + "url", + "ws" ], "support": { - "issues": "https://github.com/thephpleague/uri-interfaces/issues", - "source": "https://github.com/thephpleague/uri-interfaces/tree/2.3.0" + "docs": "https://uri.thephpleague.com", + "forum": "https://thephpleague.slack.com", + "issues": "https://github.com/thephpleague/uri-src/issues", + "source": "https://github.com/thephpleague/uri-interfaces/tree/7.3.0" }, "funding": [ { @@ -11186,7 +11100,103 @@ "type": "github" } ], - "time": "2021-06-28T04:27:21+00:00" + "time": "2023-09-09T17:21:43+00:00" + }, + { + "name": "longwave/laminas-diactoros", + "version": "2.14.2", + "source": { + "type": "git", + "url": "https://github.com/longwave/laminas-diactoros.git", + "reference": "ae4f0becf249ae8eea8f2f8f9fb927104e55a885" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/longwave/laminas-diactoros/zipball/ae4f0becf249ae8eea8f2f8f9fb927104e55a885", + "reference": "ae4f0becf249ae8eea8f2f8f9fb927104e55a885", + "shasum": "" + }, + "require": { + "php": "^7.3 || ~8.0.0 || ~8.1.0 || ~8.2.0", + "psr/http-factory": "^1.0", + "psr/http-message": "^1.0" + }, + "conflict": { + "phpspec/prophecy": "<1.9.0", + "zendframework/zend-diactoros": "*" + }, + "provide": { + "psr/http-factory-implementation": "1.0", + "psr/http-message-implementation": "1.0" + }, + "replace": { + "laminas/laminas-diactoros": "2.18.1" + }, + "require-dev": { + "ext-curl": "*", + "ext-dom": "*", + "ext-gd": "*", + "ext-libxml": "*", + "http-interop/http-factory-tests": "^0.9.0", + "laminas/laminas-coding-standard": "~2.3.0", + "php-http/psr7-integration-tests": "^1.1.1", + "phpspec/prophecy-phpunit": "^2.0", + "phpunit/phpunit": "^9.5", + "psalm/plugin-phpunit": "^0.17.0", + "vimeo/psalm": "^4.24.0" + }, + "type": "library", + "extra": { + "laminas": { + "config-provider": "Laminas\\Diactoros\\ConfigProvider", + "module": "Laminas\\Diactoros" + } + }, + "autoload": { + "files": [ + "src/functions/create_uploaded_file.php", + "src/functions/marshal_headers_from_sapi.php", + "src/functions/marshal_method_from_sapi.php", + "src/functions/marshal_protocol_version_from_sapi.php", + "src/functions/marshal_uri_from_sapi.php", + "src/functions/normalize_server.php", + "src/functions/normalize_uploaded_files.php", + "src/functions/parse_cookie_header.php", + "src/functions/create_uploaded_file.legacy.php", + "src/functions/marshal_headers_from_sapi.legacy.php", + "src/functions/marshal_method_from_sapi.legacy.php", + "src/functions/marshal_protocol_version_from_sapi.legacy.php", + "src/functions/marshal_uri_from_sapi.legacy.php", + "src/functions/normalize_server.legacy.php", + "src/functions/normalize_uploaded_files.legacy.php", + "src/functions/parse_cookie_header.legacy.php" + ], + "psr-4": { + "Laminas\\Diactoros\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "PSR HTTP Message implementations", + "homepage": "https://laminas.dev", + "keywords": [ + "http", + "laminas", + "psr", + "psr-17", + "psr-7" + ], + "support": { + "chat": "https://laminas.dev/chat", + "docs": "https://docs.laminas.dev/laminas-diactoros/", + "forum": "https://discourse.laminas.dev", + "issues": "https://github.com/laminas/laminas-diactoros/issues", + "rss": "https://github.com/laminas/laminas-diactoros/releases.atom", + "source": "https://github.com/laminas/laminas-diactoros" + }, + "time": "2023-04-26T21:27:14+00:00" }, { "name": "makinacorpus/php-lucene", @@ -11299,26 +11309,24 @@ }, { "name": "masterminds/html5", - "version": "2.7.6", + "version": "2.8.1", "source": { "type": "git", "url": "https://github.com/Masterminds/html5-php.git", - "reference": "897eb517a343a2281f11bc5556d6548db7d93947" + "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/897eb517a343a2281f11bc5556d6548db7d93947", - "reference": "897eb517a343a2281f11bc5556d6548db7d93947", + "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f47dcf3c70c584de14f21143c55d9939631bc6cf", + "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf", "shasum": "" }, "require": { - "ext-ctype": "*", "ext-dom": "*", - "ext-libxml": "*", "php": ">=5.3.0" }, "require-dev": { - "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7" + "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8" }, "type": "library", "extra": { @@ -11362,9 +11370,9 @@ ], "support": { "issues": "https://github.com/Masterminds/html5-php/issues", - "source": "https://github.com/Masterminds/html5-php/tree/2.7.6" + "source": "https://github.com/Masterminds/html5-php/tree/2.8.1" }, - "time": "2022-08-18T16:18:26+00:00" + "time": "2023-05-10T11:58:31+00:00" }, { "name": "monolog/monolog", @@ -11527,23 +11535,23 @@ }, { "name": "mrclay/minify", - "version": "3.0.13", + "version": "3.0.14", "source": { "type": "git", "url": "https://github.com/mrclay/minify.git", - "reference": "ae5b9f0bfb5f2ab0bcba45289268328be27a7ae6" + "reference": "dc02cdfba70737828c947fde33bc3f8235a742f5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mrclay/minify/zipball/ae5b9f0bfb5f2ab0bcba45289268328be27a7ae6", - "reference": "ae5b9f0bfb5f2ab0bcba45289268328be27a7ae6", + "url": "https://api.github.com/repos/mrclay/minify/zipball/dc02cdfba70737828c947fde33bc3f8235a742f5", + "reference": "dc02cdfba70737828c947fde33bc3f8235a742f5", "shasum": "" }, "require": { "ext-pcre": "*", "intervention/httpauth": "^2.0|^3.0", "marcusschwarz/lesserphp": "^0.5.5", - "monolog/monolog": "~1.1|~2.0", + "monolog/monolog": "~1.1|~2.0|~3.0", "mrclay/jsmin-php": "~2", "mrclay/props-dic": "^2.2|^3.0", "php": "^5.3.0 || ^7.0 || ^8.0", @@ -11587,10 +11595,10 @@ "support": { "email": "minify@googlegroups.com", "issues": "https://github.com/mrclay/minify/issues", - "source": "https://github.com/mrclay/minify/tree/3.0.13", + "source": "https://github.com/mrclay/minify/tree/3.0.14", "wiki": "https://github.com/mrclay/minify/blob/master/docs" }, - "time": "2022-10-02T21:12:43+00:00" + "time": "2023-05-05T12:03:06+00:00" }, { "name": "mrclay/props-dic", @@ -11649,28 +11657,29 @@ }, { "name": "neilime/php-css-lint", - "version": "v3.1.3", + "version": "v3.2.0", "source": { "type": "git", "url": "https://github.com/neilime/php-css-lint.git", - "reference": "16f9e3465bb9cf61d4087e0b34a583ecb587d1b9" + "reference": "08adc7b55af6ae5bf671ac5b105620dc6e6c55c0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/neilime/php-css-lint/zipball/16f9e3465bb9cf61d4087e0b34a583ecb587d1b9", - "reference": "16f9e3465bb9cf61d4087e0b34a583ecb587d1b9", + "url": "https://api.github.com/repos/neilime/php-css-lint/zipball/08adc7b55af6ae5bf671ac5b105620dc6e6c55c0", + "reference": "08adc7b55af6ae5bf671ac5b105620dc6e6c55c0", "shasum": "" }, "require": { "ext-json": "*", - "php": "^7.4 || ^8" + "php": ">=8.0" }, "require-dev": { + "mikey179/vfsstream": "^1.6", "pcov/clobber": "^2.0", "phpstan/extension-installer": "^1.1", "phpstan/phpstan": "^0.12", "phpstan/phpstan-phpunit": "^0.12", - "phpunit/phpunit": "^9.5.24", + "phpunit/phpunit": "^9.5.27", "slam/phpstan-laminas-framework": "^0.12", "squizlabs/php_codesniffer": "^3.7" }, @@ -11710,7 +11719,7 @@ ], "support": { "issues": "https://github.com/neilime/php-css-lint/issues", - "source": "https://github.com/neilime/php-css-lint/tree/v3.1.3" + "source": "https://github.com/neilime/php-css-lint/tree/v3.2.0" }, "funding": [ { @@ -11718,20 +11727,20 @@ "type": "github" } ], - "time": "2022-09-23T06:44:02+00:00" + "time": "2023-06-19T16:35:21+00:00" }, { "name": "nikic/php-parser", - "version": "v4.15.4", + "version": "v4.17.1", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290" + "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6bb5176bc4af8bcb7d926f88718db9b96a2d4290", - "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d", + "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d", "shasum": "" }, "require": { @@ -11772,9 +11781,9 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.4" + "source": "https://github.com/nikic/PHP-Parser/tree/v4.17.1" }, - "time": "2023-03-05T19:49:14+00:00" + "time": "2023-08-13T19:53:39+00:00" }, { "name": "nodespark/des-connector", @@ -12149,16 +12158,16 @@ }, { "name": "pear/pear-core-minimal", - "version": "v1.10.11", + "version": "v1.10.13", "source": { "type": "git", "url": "https://github.com/pear/pear-core-minimal.git", - "reference": "68d0d32ada737153b7e93b8d3c710ebe70ac867d" + "reference": "aed862e95fd286c53cc546734868dc38ff4b5b1d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/68d0d32ada737153b7e93b8d3c710ebe70ac867d", - "reference": "68d0d32ada737153b7e93b8d3c710ebe70ac867d", + "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/aed862e95fd286c53cc546734868dc38ff4b5b1d", + "reference": "aed862e95fd286c53cc546734868dc38ff4b5b1d", "shasum": "" }, "require": { @@ -12193,7 +12202,7 @@ "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR", "source": "https://github.com/pear/pear-core-minimal" }, - "time": "2021-08-10T22:31:03+00:00" + "time": "2023-04-19T19:15:47+00:00" }, { "name": "pear/pear_exception", @@ -12323,34 +12332,29 @@ }, { "name": "php-http/httplug", - "version": "2.3.0", + "version": "2.4.0", "source": { "type": "git", "url": "https://github.com/php-http/httplug.git", - "reference": "f640739f80dfa1152533976e3c112477f69274eb" + "reference": "625ad742c360c8ac580fcc647a1541d29e257f67" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-http/httplug/zipball/f640739f80dfa1152533976e3c112477f69274eb", - "reference": "f640739f80dfa1152533976e3c112477f69274eb", + "url": "https://api.github.com/repos/php-http/httplug/zipball/625ad742c360c8ac580fcc647a1541d29e257f67", + "reference": "625ad742c360c8ac580fcc647a1541d29e257f67", "shasum": "" }, "require": { "php": "^7.1 || ^8.0", "php-http/promise": "^1.1", "psr/http-client": "^1.0", - "psr/http-message": "^1.0" + "psr/http-message": "^1.0 || ^2.0" }, "require-dev": { - "friends-of-phpspec/phpspec-code-coverage": "^4.1", - "phpspec/phpspec": "^5.1 || ^6.0" + "friends-of-phpspec/phpspec-code-coverage": "^4.1 || ^5.0 || ^6.0", + "phpspec/phpspec": "^5.1 || ^6.0 || ^7.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.x-dev" - } - }, "autoload": { "psr-4": { "Http\\Client\\": "src/" @@ -12379,29 +12383,28 @@ ], "support": { "issues": "https://github.com/php-http/httplug/issues", - "source": "https://github.com/php-http/httplug/tree/2.3.0" + "source": "https://github.com/php-http/httplug/tree/2.4.0" }, - "time": "2022-02-21T09:52:22+00:00" + "time": "2023-04-14T15:10:03+00:00" }, { "name": "php-http/message", - "version": "1.13.0", + "version": "1.16.0", "source": { "type": "git", "url": "https://github.com/php-http/message.git", - "reference": "7886e647a30a966a1a8d1dad1845b71ca8678361" + "reference": "47a14338bf4ebd67d317bf1144253d7db4ab55fd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-http/message/zipball/7886e647a30a966a1a8d1dad1845b71ca8678361", - "reference": "7886e647a30a966a1a8d1dad1845b71ca8678361", + "url": "https://api.github.com/repos/php-http/message/zipball/47a14338bf4ebd67d317bf1144253d7db4ab55fd", + "reference": "47a14338bf4ebd67d317bf1144253d7db4ab55fd", "shasum": "" }, "require": { "clue/stream-filter": "^1.5", - "php": "^7.1 || ^8.0", - "php-http/message-factory": "^1.0.2", - "psr/http-message": "^1.0" + "php": "^7.2 || ^8.0", + "psr/http-message": "^1.1 || ^2.0" }, "provide": { "php-http/message-factory-implementation": "1.0" @@ -12409,8 +12412,9 @@ "require-dev": { "ergebnis/composer-normalize": "^2.6", "ext-zlib": "*", - "guzzlehttp/psr7": "^1.0", - "laminas/laminas-diactoros": "^2.0", + "guzzlehttp/psr7": "^1.0 || ^2.0", + "laminas/laminas-diactoros": "^2.0 || ^3.0", + "php-http/message-factory": "^1.0.2", "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1", "slim/slim": "^3.0" }, @@ -12421,11 +12425,6 @@ "slim/slim": "Used with Slim Framework PSR-7 implementation" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.10-dev" - } - }, "autoload": { "files": [ "src/filters.php" @@ -12453,63 +12452,9 @@ ], "support": { "issues": "https://github.com/php-http/message/issues", - "source": "https://github.com/php-http/message/tree/1.13.0" - }, - "time": "2022-02-11T13:41:14+00:00" - }, - { - "name": "php-http/message-factory", - "version": "v1.0.2", - "source": { - "type": "git", - "url": "https://github.com/php-http/message-factory.git", - "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-http/message-factory/zipball/a478cb11f66a6ac48d8954216cfed9aa06a501a1", - "reference": "a478cb11f66a6ac48d8954216cfed9aa06a501a1", - "shasum": "" - }, - "require": { - "php": ">=5.4", - "psr/http-message": "^1.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0-dev" - } - }, - "autoload": { - "psr-4": { - "Http\\Message\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Márk Sági-Kazár", - "email": "mark.sagikazar@gmail.com" - } - ], - "description": "Factory interfaces for PSR-7 HTTP Message", - "homepage": "http://php-http.org", - "keywords": [ - "factory", - "http", - "message", - "stream", - "uri" - ], - "support": { - "issues": "https://github.com/php-http/message-factory/issues", - "source": "https://github.com/php-http/message-factory/tree/master" + "source": "https://github.com/php-http/message/tree/1.16.0" }, - "time": "2015-12-19T14:08:53+00:00" + "time": "2023-05-17T06:43:38+00:00" }, { "name": "php-http/promise", @@ -12881,21 +12826,21 @@ }, { "name": "psr/http-client", - "version": "1.0.1", + "version": "1.0.2", "source": { "type": "git", "url": "https://github.com/php-fig/http-client.git", - "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621" + "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621", - "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621", + "url": "https://api.github.com/repos/php-fig/http-client/zipball/0955afe48220520692d2d09f7ab7e0f93ffd6a31", + "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31", "shasum": "" }, "require": { "php": "^7.0 || ^8.0", - "psr/http-message": "^1.0" + "psr/http-message": "^1.0 || ^2.0" }, "type": "library", "extra": { @@ -12915,7 +12860,7 @@ "authors": [ { "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "homepage": "https://www.php-fig.org/" } ], "description": "Common interface for HTTP clients", @@ -12927,27 +12872,27 @@ "psr-18" ], "support": { - "source": "https://github.com/php-fig/http-client/tree/master" + "source": "https://github.com/php-fig/http-client/tree/1.0.2" }, - "time": "2020-06-29T06:28:15+00:00" + "time": "2023-04-10T20:12:12+00:00" }, { "name": "psr/http-factory", - "version": "1.0.1", + "version": "1.0.2", "source": { "type": "git", "url": "https://github.com/php-fig/http-factory.git", - "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be" + "reference": "e616d01114759c4c489f93b099585439f795fe35" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be", - "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be", + "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35", + "reference": "e616d01114759c4c489f93b099585439f795fe35", "shasum": "" }, "require": { "php": ">=7.0.0", - "psr/http-message": "^1.0" + "psr/http-message": "^1.0 || ^2.0" }, "type": "library", "extra": { @@ -12967,7 +12912,7 @@ "authors": [ { "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "homepage": "https://www.php-fig.org/" } ], "description": "Common interfaces for PSR-7 HTTP message factories", @@ -12982,9 +12927,9 @@ "response" ], "support": { - "source": "https://github.com/php-fig/http-factory/tree/master" + "source": "https://github.com/php-fig/http-factory/tree/1.0.2" }, - "time": "2019-04-30T12:38:16+00:00" + "time": "2023-04-10T20:10:41+00:00" }, { "name": "psr/http-message", @@ -13261,23 +13206,23 @@ }, { "name": "react/promise", - "version": "v2.9.0", + "version": "v2.10.0", "source": { "type": "git", "url": "https://github.com/reactphp/promise.git", - "reference": "234f8fd1023c9158e2314fa9d7d0e6a83db42910" + "reference": "f913fb8cceba1e6644b7b90c4bfb678ed8a3ef38" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/reactphp/promise/zipball/234f8fd1023c9158e2314fa9d7d0e6a83db42910", - "reference": "234f8fd1023c9158e2314fa9d7d0e6a83db42910", + "url": "https://api.github.com/repos/reactphp/promise/zipball/f913fb8cceba1e6644b7b90c4bfb678ed8a3ef38", + "reference": "f913fb8cceba1e6644b7b90c4bfb678ed8a3ef38", "shasum": "" }, "require": { "php": ">=5.4.0" }, "require-dev": { - "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.36" + "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.36" }, "type": "library", "autoload": { @@ -13321,19 +13266,15 @@ ], "support": { "issues": "https://github.com/reactphp/promise/issues", - "source": "https://github.com/reactphp/promise/tree/v2.9.0" + "source": "https://github.com/reactphp/promise/tree/v2.10.0" }, "funding": [ { - "url": "https://github.com/WyriHaximus", - "type": "github" - }, - { - "url": "https://github.com/clue", - "type": "github" + "url": "https://opencollective.com/reactphp", + "type": "open_collective" } ], - "time": "2022-02-11T10:27:51+00:00" + "time": "2023-05-02T15:15:43+00:00" }, { "name": "renanbr/crossref-client", @@ -13410,16 +13351,16 @@ }, { "name": "ruflin/elastica", - "version": "7.3.0", + "version": "7.3.1", "source": { "type": "git", "url": "https://github.com/ruflin/Elastica.git", - "reference": "75fca5bf2b6792d35dae6c5efeda2322bce914e4" + "reference": "7c61a630c3d456b00a5610960ae3a9bd29987469" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ruflin/Elastica/zipball/75fca5bf2b6792d35dae6c5efeda2322bce914e4", - "reference": "75fca5bf2b6792d35dae6c5efeda2322bce914e4", + "url": "https://api.github.com/repos/ruflin/Elastica/zipball/7c61a630c3d456b00a5610960ae3a9bd29987469", + "reference": "7c61a630c3d456b00a5610960ae3a9bd29987469", "shasum": "" }, "require": { @@ -13473,9 +13414,9 @@ ], "support": { "issues": "https://github.com/ruflin/Elastica/issues", - "source": "https://github.com/ruflin/Elastica/tree/7.3.0" + "source": "https://github.com/ruflin/Elastica/tree/7.3.1" }, - "time": "2022-11-30T14:21:43+00:00" + "time": "2023-04-21T09:04:46+00:00" }, { "name": "stack/builder", @@ -13533,20 +13474,20 @@ }, { "name": "steverhoades/oauth2-openid-connect-server", - "version": "v2.5.0", + "version": "v2.6.1", "source": { "type": "git", "url": "https://github.com/steverhoades/oauth2-openid-connect-server.git", - "reference": "23381585ebb410ffa11ca9eb0fdba3895fb23119" + "reference": "269c4dc071519e8220e249cbdee9b0723e95215e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/steverhoades/oauth2-openid-connect-server/zipball/23381585ebb410ffa11ca9eb0fdba3895fb23119", - "reference": "23381585ebb410ffa11ca9eb0fdba3895fb23119", + "url": "https://api.github.com/repos/steverhoades/oauth2-openid-connect-server/zipball/269c4dc071519e8220e249cbdee9b0723e95215e", + "reference": "269c4dc071519e8220e249cbdee9b0723e95215e", "shasum": "" }, "require": { - "lcobucci/jwt": "4.1.5|^4.2", + "lcobucci/jwt": "4.1.5|^4.2|^4.3|^5.0", "league/oauth2-server": "^5.1|^6.0|^7.0|^8.0" }, "require-dev": { @@ -13572,9 +13513,9 @@ "description": "An OpenID Connect Server that sites on The PHP League's OAuth2 Server", "support": { "issues": "https://github.com/steverhoades/oauth2-openid-connect-server/issues", - "source": "https://github.com/steverhoades/oauth2-openid-connect-server/tree/v2.5.0" + "source": "https://github.com/steverhoades/oauth2-openid-connect-server/tree/v2.6.1" }, - "time": "2023-01-19T16:49:09+00:00" + "time": "2023-09-08T16:15:47+00:00" }, { "name": "symfony-cmf/routing", @@ -13886,16 +13827,16 @@ }, { "name": "symfony/deprecation-contracts", - "version": "v3.2.1", + "version": "v3.3.0", "source": { "type": "git", "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e" + "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e", - "reference": "e2d1534420bd723d0ef5aec58a22c5fe60ce6f5e", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf", + "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf", "shasum": "" }, "require": { @@ -13904,7 +13845,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "3.3-dev" + "dev-main": "3.4-dev" }, "thanks": { "name": "symfony/contracts", @@ -13933,7 +13874,7 @@ "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/deprecation-contracts/tree/v3.2.1" + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.3.0" }, "funding": [ { @@ -13949,7 +13890,7 @@ "type": "tidelift" } ], - "time": "2023-03-01T10:25:55+00:00" + "time": "2023-05-23T14:45:45+00:00" }, { "name": "symfony/error-handler", @@ -14642,16 +14583,16 @@ }, { "name": "symfony/polyfill-ctype", - "version": "v1.27.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "5bbc823adecdae860bb64756d639ecfec17b050a" + "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a", - "reference": "5bbc823adecdae860bb64756d639ecfec17b050a", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb", + "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb", "shasum": "" }, "require": { @@ -14666,7 +14607,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.27-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -14704,7 +14645,7 @@ "portable" ], "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0" + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0" }, "funding": [ { @@ -14720,20 +14661,20 @@ "type": "tidelift" } ], - "time": "2022-11-03T14:55:06+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { "name": "symfony/polyfill-iconv", - "version": "v1.27.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-iconv.git", - "reference": "927013f3aac555983a5059aada98e1907d842695" + "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695", - "reference": "927013f3aac555983a5059aada98e1907d842695", + "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6de50471469b8c9afc38164452ab2b6170ee71c1", + "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1", "shasum": "" }, "require": { @@ -14748,7 +14689,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.27-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -14787,7 +14728,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-iconv/tree/v1.27.0" + "source": "https://github.com/symfony/polyfill-iconv/tree/v1.28.0" }, "funding": [ { @@ -14803,20 +14744,20 @@ "type": "tidelift" } ], - "time": "2022-11-03T14:55:06+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.27.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "639084e360537a19f9ee352433b84ce831f3d2da" + "reference": "ecaafce9f77234a6a449d29e49267ba10499116d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da", - "reference": "639084e360537a19f9ee352433b84ce831f3d2da", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d", + "reference": "ecaafce9f77234a6a449d29e49267ba10499116d", "shasum": "" }, "require": { @@ -14830,7 +14771,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.27-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -14874,7 +14815,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0" + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.28.0" }, "funding": [ { @@ -14890,20 +14831,20 @@ "type": "tidelift" } ], - "time": "2022-11-03T14:55:06+00:00" + "time": "2023-01-26T09:30:37+00:00" }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.27.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6" + "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6", - "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92", + "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92", "shasum": "" }, "require": { @@ -14915,7 +14856,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.27-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -14958,7 +14899,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0" + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0" }, "funding": [ { @@ -14974,20 +14915,20 @@ "type": "tidelift" } ], - "time": "2022-11-03T14:55:06+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.27.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534" + "reference": "42292d99c55abe617799667f454222c54c60e229" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534", - "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229", + "reference": "42292d99c55abe617799667f454222c54c60e229", "shasum": "" }, "require": { @@ -15002,7 +14943,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.27-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -15041,7 +14982,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0" }, "funding": [ { @@ -15057,20 +14998,20 @@ "type": "tidelift" } ], - "time": "2022-11-03T14:55:06+00:00" + "time": "2023-07-28T09:04:16+00:00" }, { "name": "symfony/polyfill-php72", - "version": "v1.27.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php72.git", - "reference": "869329b1e9894268a8a61dabb69153029b7a8c97" + "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97", - "reference": "869329b1e9894268a8a61dabb69153029b7a8c97", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179", + "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179", "shasum": "" }, "require": { @@ -15079,7 +15020,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.27-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -15117,7 +15058,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0" + "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.0" }, "funding": [ { @@ -15133,20 +15074,20 @@ "type": "tidelift" } ], - "time": "2022-11-03T14:55:06+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { "name": "symfony/polyfill-php73", - "version": "v1.27.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php73.git", - "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9" + "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/9e8ecb5f92152187c4799efd3c96b78ccab18ff9", - "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9", + "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fe2f306d1d9d346a7fee353d0d5012e401e984b5", + "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5", "shasum": "" }, "require": { @@ -15155,7 +15096,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.27-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -15196,7 +15137,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php73/tree/v1.27.0" + "source": "https://github.com/symfony/polyfill-php73/tree/v1.28.0" }, "funding": [ { @@ -15212,20 +15153,20 @@ "type": "tidelift" } ], - "time": "2022-11-03T14:55:06+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { "name": "symfony/polyfill-php80", - "version": "v1.27.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936" + "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936", - "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5", + "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5", "shasum": "" }, "require": { @@ -15234,7 +15175,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.27-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -15279,7 +15220,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0" + "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0" }, "funding": [ { @@ -15295,7 +15236,7 @@ "type": "tidelift" } ], - "time": "2022-11-03T14:55:06+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { "name": "symfony/process", @@ -15988,16 +15929,16 @@ }, { "name": "symfony/var-dumper", - "version": "v5.4.22", + "version": "v5.4.28", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "e2edac9ce47e6df07e38143c7cfa6bdbc1a6dcc4" + "reference": "684b36ff415e1381d4a943c3ca2502cd2debad73" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/e2edac9ce47e6df07e38143c7cfa6bdbc1a6dcc4", - "reference": "e2edac9ce47e6df07e38143c7cfa6bdbc1a6dcc4", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/684b36ff415e1381d4a943c3ca2502cd2debad73", + "reference": "684b36ff415e1381d4a943c3ca2502cd2debad73", "shasum": "" }, "require": { @@ -16006,12 +15947,12 @@ "symfony/polyfill-php80": "^1.16" }, "conflict": { - "phpunit/phpunit": "<5.4.3", "symfony/console": "<4.4" }, "require-dev": { "ext-iconv": "*", "symfony/console": "^4.4|^5.0|^6.0", + "symfony/http-kernel": "^4.4|^5.0|^6.0", "symfony/process": "^4.4|^5.0|^6.0", "symfony/uid": "^5.1|^6.0", "twig/twig": "^2.13|^3.0.4" @@ -16057,7 +15998,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v5.4.22" + "source": "https://github.com/symfony/var-dumper/tree/v5.4.28" }, "funding": [ { @@ -16073,7 +16014,7 @@ "type": "tidelift" } ], - "time": "2023-03-25T09:27:28+00:00" + "time": "2023-08-24T13:38:36+00:00" }, { "name": "symfony/yaml", @@ -16253,16 +16194,16 @@ }, { "name": "twbs/bootstrap", - "version": "v5.2.3", + "version": "v5.3.2", "source": { "type": "git", "url": "https://github.com/twbs/bootstrap.git", - "reference": "cb021439c683d9805e2864c58095b92d405e9b11" + "reference": "344e912d04b5b6a04482113eff20ab416ff01048" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/twbs/bootstrap/zipball/cb021439c683d9805e2864c58095b92d405e9b11", - "reference": "cb021439c683d9805e2864c58095b92d405e9b11", + "url": "https://api.github.com/repos/twbs/bootstrap/zipball/344e912d04b5b6a04482113eff20ab416ff01048", + "reference": "344e912d04b5b6a04482113eff20ab416ff01048", "shasum": "" }, "replace": { @@ -16297,22 +16238,22 @@ ], "support": { "issues": "https://github.com/twbs/bootstrap/issues", - "source": "https://github.com/twbs/bootstrap/tree/v5.2.3" + "source": "https://github.com/twbs/bootstrap/tree/v5.3.2" }, - "time": "2022-11-21T18:19:01+00:00" + "time": "2023-09-14T14:19:27+00:00" }, { "name": "twig/twig", - "version": "v2.15.4", + "version": "v2.15.5", "source": { "type": "git", "url": "https://github.com/twigphp/Twig.git", - "reference": "3e059001d6d597dd50ea7c74dd2464b4adea48d3" + "reference": "fc02a6af3eeb97c4bf5650debc76c2eda85ac22e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/twigphp/Twig/zipball/3e059001d6d597dd50ea7c74dd2464b4adea48d3", - "reference": "3e059001d6d597dd50ea7c74dd2464b4adea48d3", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/fc02a6af3eeb97c4bf5650debc76c2eda85ac22e", + "reference": "fc02a6af3eeb97c4bf5650debc76c2eda85ac22e", "shasum": "" }, "require": { @@ -16367,7 +16308,7 @@ ], "support": { "issues": "https://github.com/twigphp/Twig/issues", - "source": "https://github.com/twigphp/Twig/tree/v2.15.4" + "source": "https://github.com/twigphp/Twig/tree/v2.15.5" }, "funding": [ { @@ -16379,7 +16320,7 @@ "type": "tidelift" } ], - "time": "2022-12-27T12:26:20+00:00" + "time": "2023-05-03T17:49:41+00:00" }, { "name": "typo3/phar-stream-wrapper", @@ -16675,16 +16616,16 @@ }, { "name": "webonyx/graphql-php", - "version": "v14.11.9", + "version": "v14.11.10", "source": { "type": "git", "url": "https://github.com/webonyx/graphql-php.git", - "reference": "ff91c9f3cf241db702e30b2c42bcc0920e70ac70" + "reference": "d9c2fdebc6aa01d831bc2969da00e8588cffef19" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webonyx/graphql-php/zipball/ff91c9f3cf241db702e30b2c42bcc0920e70ac70", - "reference": "ff91c9f3cf241db702e30b2c42bcc0920e70ac70", + "url": "https://api.github.com/repos/webonyx/graphql-php/zipball/d9c2fdebc6aa01d831bc2969da00e8588cffef19", + "reference": "d9c2fdebc6aa01d831bc2969da00e8588cffef19", "shasum": "" }, "require": { @@ -16704,8 +16645,7 @@ "phpunit/phpunit": "^7.2 || ^8.5", "psr/http-message": "^1.0", "react/promise": "2.*", - "simpod/php-coveralls-mirror": "^3.0", - "squizlabs/php_codesniffer": "3.5.4" + "simpod/php-coveralls-mirror": "^3.0" }, "suggest": { "psr/http-message": "To use standard GraphQL server", @@ -16729,7 +16669,7 @@ ], "support": { "issues": "https://github.com/webonyx/graphql-php/issues", - "source": "https://github.com/webonyx/graphql-php/tree/v14.11.9" + "source": "https://github.com/webonyx/graphql-php/tree/v14.11.10" }, "funding": [ { @@ -16737,7 +16677,7 @@ "type": "open_collective" } ], - "time": "2023-01-06T12:12:50+00:00" + "time": "2023-07-05T14:23:37+00:00" }, { "name": "willdurand/geocoder", @@ -16805,16 +16745,16 @@ "packages-dev": [ { "name": "behat/behat", - "version": "v3.12.0", + "version": "v3.13.0", "source": { "type": "git", "url": "https://github.com/Behat/Behat.git", - "reference": "2f059c9172764ba1f1759b3679aca499b665330a" + "reference": "9dd7cdb309e464ddeab095cd1a5151c2dccba4ab" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Behat/Behat/zipball/2f059c9172764ba1f1759b3679aca499b665330a", - "reference": "2f059c9172764ba1f1759b3679aca499b665330a", + "url": "https://api.github.com/repos/Behat/Behat/zipball/9dd7cdb309e464ddeab095cd1a5151c2dccba4ab", + "reference": "9dd7cdb309e464ddeab095cd1a5151c2dccba4ab", "shasum": "" }, "require": { @@ -16886,9 +16826,9 @@ ], "support": { "issues": "https://github.com/Behat/Behat/issues", - "source": "https://github.com/Behat/Behat/tree/v3.12.0" + "source": "https://github.com/Behat/Behat/tree/v3.13.0" }, - "time": "2022-11-29T15:30:11+00:00" + "time": "2023-04-18T15:40:53+00:00" }, { "name": "behat/gherkin", @@ -17616,16 +17556,16 @@ }, { "name": "composer/ca-bundle", - "version": "1.3.5", + "version": "1.3.7", "source": { "type": "git", "url": "https://github.com/composer/ca-bundle.git", - "reference": "74780ccf8c19d6acb8d65c5f39cd72110e132bbd" + "reference": "76e46335014860eec1aa5a724799a00a2e47cc85" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/ca-bundle/zipball/74780ccf8c19d6acb8d65c5f39cd72110e132bbd", - "reference": "74780ccf8c19d6acb8d65c5f39cd72110e132bbd", + "url": "https://api.github.com/repos/composer/ca-bundle/zipball/76e46335014860eec1aa5a724799a00a2e47cc85", + "reference": "76e46335014860eec1aa5a724799a00a2e47cc85", "shasum": "" }, "require": { @@ -17672,7 +17612,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.5" + "source": "https://github.com/composer/ca-bundle/tree/1.3.7" }, "funding": [ { @@ -17688,7 +17628,7 @@ "type": "tidelift" } ], - "time": "2023-01-11T08:27:00+00:00" + "time": "2023-08-30T09:31:38+00:00" }, { "name": "composer/composer", @@ -18407,16 +18347,16 @@ }, { "name": "doctrine/persistence", - "version": "3.1.4", + "version": "3.2.0", "source": { "type": "git", "url": "https://github.com/doctrine/persistence.git", - "reference": "8bf8ab15960787f1a49d405f6eb8c787b4841119" + "reference": "63fee8c33bef740db6730eb2a750cd3da6495603" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/persistence/zipball/8bf8ab15960787f1a49d405f6eb8c787b4841119", - "reference": "8bf8ab15960787f1a49d405f6eb8c787b4841119", + "url": "https://api.github.com/repos/doctrine/persistence/zipball/63fee8c33bef740db6730eb2a750cd3da6495603", + "reference": "63fee8c33bef740db6730eb2a750cd3da6495603", "shasum": "" }, "require": { @@ -18485,7 +18425,7 @@ ], "support": { "issues": "https://github.com/doctrine/persistence/issues", - "source": "https://github.com/doctrine/persistence/tree/3.1.4" + "source": "https://github.com/doctrine/persistence/tree/3.2.0" }, "funding": [ { @@ -18501,34 +18441,34 @@ "type": "tidelift" } ], - "time": "2023-02-03T11:13:07+00:00" + "time": "2023-05-17T18:32:04+00:00" }, { "name": "drupal/coder", - "version": "8.3.17", + "version": "8.3.21", "source": { "type": "git", "url": "https://github.com/pfrenssen/coder.git", - "reference": "1c4662337418ab88c9ddf40348f0638e35d49182" + "reference": "a0b76c6c8ea277b07d58fa75dcacf102a203ad51" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pfrenssen/coder/zipball/1c4662337418ab88c9ddf40348f0638e35d49182", - "reference": "1c4662337418ab88c9ddf40348f0638e35d49182", + "url": "https://api.github.com/repos/pfrenssen/coder/zipball/a0b76c6c8ea277b07d58fa75dcacf102a203ad51", + "reference": "a0b76c6c8ea277b07d58fa75dcacf102a203ad51", "shasum": "" }, "require": { "dealerdirect/phpcodesniffer-composer-installer": "^0.7.1 || ^1.0.0", "ext-mbstring": "*", - "php": ">=7.1", + "php": ">=7.2", "sirbrillig/phpcs-variable-analysis": "^2.11.7", - "slevomat/coding-standard": "^7.0 || ^8.0", + "slevomat/coding-standard": "^8.11", "squizlabs/php_codesniffer": "^3.7.1", "symfony/yaml": ">=3.4.0" }, "require-dev": { "phpstan/phpstan": "^1.7.12", - "phpunit/phpunit": "^7.0 || ^8.0" + "phpunit/phpunit": "^8.0" }, "type": "phpcodesniffer-standard", "autoload": { @@ -18552,7 +18492,7 @@ "issues": "https://www.drupal.org/project/issues/coder", "source": "https://www.drupal.org/project/coder" }, - "time": "2023-02-19T21:05:01+00:00" + "time": "2023-07-17T15:36:49+00:00" }, { "name": "drupal/config_devel", @@ -18620,7 +18560,7 @@ }, { "name": "drupal/core-dev", - "version": "9.5.7", + "version": "9.5.11", "source": { "type": "git", "url": "https://github.com/drupal/core-dev.git", @@ -18664,23 +18604,23 @@ ], "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.7" + "source": "https://github.com/drupal/core-dev/tree/9.5.11" }, "time": "2022-07-27T00:23:55+00:00" }, { "name": "drupal/devel", - "version": "5.1.1", + "version": "5.1.2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/devel.git", - "reference": "5.1.1" + "reference": "5.1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/devel-5.1.1.zip", - "reference": "5.1.1", - "shasum": "d7423dfe9c2333508618975c37f3b63026adca50" + "url": "https://ftp.drupal.org/files/projects/devel-5.1.2.zip", + "reference": "5.1.2", + "shasum": "9b35e38bf2043bf87f88585b3d9100f38da8f07f" }, "require": { "doctrine/common": "^2.7 || ^3.4", @@ -18700,8 +18640,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "5.1.1", - "datestamp": "1671644739", + "version": "5.1.2", + "datestamp": "1686161028", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -18883,10 +18823,6 @@ "name": "anshuljain2k8", "homepage": "https://www.drupal.org/user/463858" }, - { - "name": "DamienMcKenna", - "homepage": "https://www.drupal.org/user/108450" - }, { "name": "dstol", "homepage": "https://www.drupal.org/user/329570" @@ -18923,10 +18859,6 @@ "name": "phenaproxima", "homepage": "https://www.drupal.org/user/205645" }, - { - "name": "tim.plunkett", - "homepage": "https://www.drupal.org/user/241634" - }, { "name": "webchick", "homepage": "https://www.drupal.org/user/24967" @@ -18996,10 +18928,6 @@ "GPL-2.0-or-later" ], "authors": [ - { - "name": "Derimagia", - "homepage": "https://www.drupal.org/user/819640" - }, { "name": "aczietlow", "homepage": "https://www.drupal.org/user/1616656" @@ -19007,6 +18935,18 @@ { "name": "andrewmacpherson", "homepage": "https://www.drupal.org/user/265648" + }, + { + "name": "batigolix", + "homepage": "https://www.drupal.org/user/22175" + }, + { + "name": "Derimagia", + "homepage": "https://www.drupal.org/user/819640" + }, + { + "name": "fabianderijk", + "homepage": "https://www.drupal.org/user/278745" } ], "description": "Migrate Development Tools", @@ -19374,12 +19314,12 @@ "source": { "type": "git", "url": "https://github.com/jcnventura/pharborist.git", - "reference": "9771db708a7a8c15ca5e28bcd59ff1b1d9d638eb" + "reference": "1ce72492ac6dacd056389b1ab3a71dbf2fa3da11" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/jcnventura/pharborist/zipball/9771db708a7a8c15ca5e28bcd59ff1b1d9d638eb", - "reference": "9771db708a7a8c15ca5e28bcd59ff1b1d9d638eb", + "url": "https://api.github.com/repos/jcnventura/pharborist/zipball/1ce72492ac6dacd056389b1ab3a71dbf2fa3da11", + "reference": "1ce72492ac6dacd056389b1ab3a71dbf2fa3da11", "shasum": "" }, "require": { @@ -19415,7 +19355,7 @@ "support": { "source": "https://github.com/jcnventura/pharborist/tree/master" }, - "time": "2022-09-23T09:16:28+00:00" + "time": "2023-05-04T07:21:11+00:00" }, { "name": "justinrainbow/json-schema", @@ -19489,21 +19429,22 @@ }, { "name": "mglaman/phpstan-drupal", - "version": "1.1.29", + "version": "1.2.0", "source": { "type": "git", "url": "https://github.com/mglaman/phpstan-drupal.git", - "reference": "e6f6191c53b159013fcbd186d7f85511f3f96ff8" + "reference": "d721420086f146640acecebb7a678661a66e97d5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/e6f6191c53b159013fcbd186d7f85511f3f96ff8", - "reference": "e6f6191c53b159013fcbd186d7f85511f3f96ff8", + "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/d721420086f146640acecebb7a678661a66e97d5", + "reference": "d721420086f146640acecebb7a678661a66e97d5", "shasum": "" }, "require": { "php": "^7.4 || ^8.0", - "phpstan/phpstan": "^1.9.0", + "phpstan/phpstan": "^1.10.1", + "phpstan/phpstan-deprecation-rules": "^1.1.4", "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" @@ -19512,9 +19453,8 @@ "behat/mink": "^1.8", "composer/installers": "^1.9", "drupal/core-recommended": "^8.8@alpha || ^9.0", - "drush/drush": "^9.6 || ^10.0", + "drush/drush": "^9.6 || ^10.0 || ^11", "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", "slevomat/coding-standard": "^7.1", @@ -19573,7 +19513,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.29" + "source": "https://github.com/mglaman/phpstan-drupal/tree/1.2.0" }, "funding": [ { @@ -19589,7 +19529,7 @@ "type": "tidelift" } ], - "time": "2023-02-08T21:44:03+00:00" + "time": "2023-08-24T20:32:56+00:00" }, { "name": "mikey179/vfsstream", @@ -19703,16 +19643,16 @@ }, { "name": "pdepend/pdepend", - "version": "2.13.0", + "version": "2.14.0", "source": { "type": "git", "url": "https://github.com/pdepend/pdepend.git", - "reference": "31be7cd4f305f3f7b52af99c1cb13fc938d1cfad" + "reference": "1121d4b04af06e33e9659bac3a6741b91cab1de1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pdepend/pdepend/zipball/31be7cd4f305f3f7b52af99c1cb13fc938d1cfad", - "reference": "31be7cd4f305f3f7b52af99c1cb13fc938d1cfad", + "url": "https://api.github.com/repos/pdepend/pdepend/zipball/1121d4b04af06e33e9659bac3a6741b91cab1de1", + "reference": "1121d4b04af06e33e9659bac3a6741b91cab1de1", "shasum": "" }, "require": { @@ -19746,9 +19686,15 @@ "BSD-3-Clause" ], "description": "Official version of pdepend to be handled with Composer", + "keywords": [ + "PHP Depend", + "PHP_Depend", + "dev", + "pdepend" + ], "support": { "issues": "https://github.com/pdepend/pdepend/issues", - "source": "https://github.com/pdepend/pdepend/tree/2.13.0" + "source": "https://github.com/pdepend/pdepend/tree/2.14.0" }, "funding": [ { @@ -19756,7 +19702,7 @@ "type": "tidelift" } ], - "time": "2023-02-28T20:56:15+00:00" + "time": "2023-05-26T13:15:18+00:00" }, { "name": "phar-io/manifest", @@ -20100,16 +20046,16 @@ }, { "name": "phpdocumentor/type-resolver", - "version": "1.7.1", + "version": "1.7.3", "source": { "type": "git", "url": "https://github.com/phpDocumentor/TypeResolver.git", - "reference": "dfc078e8af9c99210337325ff5aa152872c98714" + "reference": "3219c6ee25c9ea71e3d9bbaf39c67c9ebd499419" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/dfc078e8af9c99210337325ff5aa152872c98714", - "reference": "dfc078e8af9c99210337325ff5aa152872c98714", + "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/3219c6ee25c9ea71e3d9bbaf39c67c9ebd499419", + "reference": "3219c6ee25c9ea71e3d9bbaf39c67c9ebd499419", "shasum": "" }, "require": { @@ -20152,9 +20098,9 @@ "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", "support": { "issues": "https://github.com/phpDocumentor/TypeResolver/issues", - "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.7.1" + "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.7.3" }, - "time": "2023-03-27T19:02:04+00:00" + "time": "2023-08-12T11:01:26+00:00" }, { "name": "phpmd/phpmd", @@ -20309,16 +20255,16 @@ }, { "name": "phpspec/prophecy-phpunit", - "version": "v2.0.1", + "version": "v2.0.2", "source": { "type": "git", "url": "https://github.com/phpspec/prophecy-phpunit.git", - "reference": "2d7a9df55f257d2cba9b1d0c0963a54960657177" + "reference": "9f26c224a2fa335f33e6666cc078fbf388255e87" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpspec/prophecy-phpunit/zipball/2d7a9df55f257d2cba9b1d0c0963a54960657177", - "reference": "2d7a9df55f257d2cba9b1d0c0963a54960657177", + "url": "https://api.github.com/repos/phpspec/prophecy-phpunit/zipball/9f26c224a2fa335f33e6666cc078fbf388255e87", + "reference": "9f26c224a2fa335f33e6666cc078fbf388255e87", "shasum": "" }, "require": { @@ -20355,28 +20301,28 @@ ], "support": { "issues": "https://github.com/phpspec/prophecy-phpunit/issues", - "source": "https://github.com/phpspec/prophecy-phpunit/tree/v2.0.1" + "source": "https://github.com/phpspec/prophecy-phpunit/tree/v2.0.2" }, - "time": "2020-07-09T08:33:42+00:00" + "time": "2023-04-18T11:58:05+00:00" }, { "name": "phpstan/extension-installer", - "version": "1.2.0", + "version": "1.3.1", "source": { "type": "git", "url": "https://github.com/phpstan/extension-installer.git", - "reference": "f06dbb052ddc394e7896fcd1cfcd533f9f6ace40" + "reference": "f45734bfb9984c6c56c4486b71230355f066a58a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/extension-installer/zipball/f06dbb052ddc394e7896fcd1cfcd533f9f6ace40", - "reference": "f06dbb052ddc394e7896fcd1cfcd533f9f6ace40", + "url": "https://api.github.com/repos/phpstan/extension-installer/zipball/f45734bfb9984c6c56c4486b71230355f066a58a", + "reference": "f45734bfb9984c6c56c4486b71230355f066a58a", "shasum": "" }, "require": { "composer-plugin-api": "^2.0", "php": "^7.2 || ^8.0", - "phpstan/phpstan": "^1.8.0" + "phpstan/phpstan": "^1.9.0" }, "require-dev": { "composer/composer": "^2.0", @@ -20399,28 +20345,30 @@ "description": "Composer plugin for automatic installation of PHPStan extensions", "support": { "issues": "https://github.com/phpstan/extension-installer/issues", - "source": "https://github.com/phpstan/extension-installer/tree/1.2.0" + "source": "https://github.com/phpstan/extension-installer/tree/1.3.1" }, - "time": "2022-10-17T12:59:16+00:00" + "time": "2023-05-24T08:59:17+00:00" }, { "name": "phpstan/phpdoc-parser", - "version": "1.18.1", + "version": "1.24.1", "source": { "type": "git", "url": "https://github.com/phpstan/phpdoc-parser.git", - "reference": "22dcdfd725ddf99583bfe398fc624ad6c5004a0f" + "reference": "9f854d275c2dbf84915a5c0ec9a2d17d2cd86b01" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/22dcdfd725ddf99583bfe398fc624ad6c5004a0f", - "reference": "22dcdfd725ddf99583bfe398fc624ad6c5004a0f", + "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/9f854d275c2dbf84915a5c0ec9a2d17d2cd86b01", + "reference": "9f854d275c2dbf84915a5c0ec9a2d17d2cd86b01", "shasum": "" }, "require": { "php": "^7.2 || ^8.0" }, "require-dev": { + "doctrine/annotations": "^2.0", + "nikic/php-parser": "^4.15", "php-parallel-lint/php-parallel-lint": "^1.2", "phpstan/extension-installer": "^1.0", "phpstan/phpstan": "^1.5", @@ -20444,22 +20392,22 @@ "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.18.1" + "source": "https://github.com/phpstan/phpdoc-parser/tree/1.24.1" }, - "time": "2023-04-07T11:51:11+00:00" + "time": "2023-09-18T12:18:02+00:00" }, { "name": "phpstan/phpstan", - "version": "1.10.11", + "version": "1.10.35", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "8aa62e6ea8b58ffb650e02940e55a788cbc3fe21" + "reference": "e730e5facb75ffe09dfb229795e8c01a459f26c3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/8aa62e6ea8b58ffb650e02940e55a788cbc3fe21", - "reference": "8aa62e6ea8b58ffb650e02940e55a788cbc3fe21", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/e730e5facb75ffe09dfb229795e8c01a459f26c3", + "reference": "e730e5facb75ffe09dfb229795e8c01a459f26c3", "shasum": "" }, "require": { @@ -20508,25 +20456,25 @@ "type": "tidelift" } ], - "time": "2023-04-04T19:17:42+00:00" + "time": "2023-09-19T15:27:56+00:00" }, { "name": "phpstan/phpstan-deprecation-rules", - "version": "1.1.3", + "version": "1.1.4", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan-deprecation-rules.git", - "reference": "a22b36b955a2e9a3d39fe533b6c1bb5359f9c319" + "reference": "089d8a8258ed0aeefdc7b68b6c3d25572ebfdbaa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/a22b36b955a2e9a3d39fe533b6c1bb5359f9c319", - "reference": "a22b36b955a2e9a3d39fe533b6c1bb5359f9c319", + "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/089d8a8258ed0aeefdc7b68b6c3d25572ebfdbaa", + "reference": "089d8a8258ed0aeefdc7b68b6c3d25572ebfdbaa", "shasum": "" }, "require": { "php": "^7.2 || ^8.0", - "phpstan/phpstan": "^1.10" + "phpstan/phpstan": "^1.10.3" }, "require-dev": { "php-parallel-lint/php-parallel-lint": "^1.2", @@ -20554,22 +20502,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.3" + "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.1.4" }, - "time": "2023-03-17T07:50:08+00:00" + "time": "2023-08-05T09:02:04+00:00" }, { "name": "phpunit/php-code-coverage", - "version": "9.2.26", + "version": "9.2.29", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1" + "reference": "6a3a87ac2bbe33b25042753df8195ba4aa534c76" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/443bc6912c9bd5b409254a40f4b0f4ced7c80ea1", - "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/6a3a87ac2bbe33b25042753df8195ba4aa534c76", + "reference": "6a3a87ac2bbe33b25042753df8195ba4aa534c76", "shasum": "" }, "require": { @@ -20625,7 +20573,8 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", - "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.26" + "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.29" }, "funding": [ { @@ -20633,7 +20582,7 @@ "type": "github" } ], - "time": "2023-03-06T12:58:08+00:00" + "time": "2023-09-19T04:57:46+00:00" }, { "name": "phpunit/php-file-iterator", @@ -20878,16 +20827,16 @@ }, { "name": "phpunit/phpunit", - "version": "9.6.6", + "version": "9.6.13", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "b65d59a059d3004a040c16a82e07bbdf6cfdd115" + "reference": "f3d767f7f9e191eab4189abe41ab37797e30b1be" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b65d59a059d3004a040c16a82e07bbdf6cfdd115", - "reference": "b65d59a059d3004a040c16a82e07bbdf6cfdd115", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/f3d767f7f9e191eab4189abe41ab37797e30b1be", + "reference": "f3d767f7f9e191eab4189abe41ab37797e30b1be", "shasum": "" }, "require": { @@ -20902,7 +20851,7 @@ "phar-io/manifest": "^2.0.3", "phar-io/version": "^3.0.2", "php": ">=7.3", - "phpunit/php-code-coverage": "^9.2.13", + "phpunit/php-code-coverage": "^9.2.28", "phpunit/php-file-iterator": "^3.0.5", "phpunit/php-invoker": "^3.1.1", "phpunit/php-text-template": "^2.0.3", @@ -20961,7 +20910,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.6" + "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.13" }, "funding": [ { @@ -20977,7 +20926,7 @@ "type": "tidelift" } ], - "time": "2023-03-27T11:43:46+00:00" + "time": "2023-09-19T05:39:22+00:00" }, { "name": "sebastian/cli-parser", @@ -21279,16 +21228,16 @@ }, { "name": "sebastian/diff", - "version": "4.0.4", + "version": "4.0.5", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/diff.git", - "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d" + "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d", - "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131", + "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131", "shasum": "" }, "require": { @@ -21333,7 +21282,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/diff/issues", - "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4" + "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5" }, "funding": [ { @@ -21341,7 +21290,7 @@ "type": "github" } ], - "time": "2020-10-26T13:10:38+00:00" + "time": "2023-05-07T05:35:17+00:00" }, { "name": "sebastian/environment", @@ -21485,16 +21434,16 @@ }, { "name": "sebastian/global-state", - "version": "5.0.5", + "version": "5.0.6", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/global-state.git", - "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2" + "reference": "bde739e7565280bda77be70044ac1047bc007e34" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2", - "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bde739e7565280bda77be70044ac1047bc007e34", + "reference": "bde739e7565280bda77be70044ac1047bc007e34", "shasum": "" }, "require": { @@ -21537,7 +21486,7 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/global-state/issues", - "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5" + "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.6" }, "funding": [ { @@ -21545,7 +21494,7 @@ "type": "github" } ], - "time": "2022-02-14T08:28:10+00:00" + "time": "2023-08-02T09:26:13+00:00" }, { "name": "sebastian/lines-of-code", @@ -21945,16 +21894,16 @@ }, { "name": "seld/jsonlint", - "version": "1.9.0", + "version": "1.10.0", "source": { "type": "git", "url": "https://github.com/Seldaek/jsonlint.git", - "reference": "4211420d25eba80712bff236a98960ef68b866b7" + "reference": "594fd6462aad8ecee0b45ca5045acea4776667f1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/4211420d25eba80712bff236a98960ef68b866b7", - "reference": "4211420d25eba80712bff236a98960ef68b866b7", + "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/594fd6462aad8ecee0b45ca5045acea4776667f1", + "reference": "594fd6462aad8ecee0b45ca5045acea4776667f1", "shasum": "" }, "require": { @@ -21993,7 +21942,7 @@ ], "support": { "issues": "https://github.com/Seldaek/jsonlint/issues", - "source": "https://github.com/Seldaek/jsonlint/tree/1.9.0" + "source": "https://github.com/Seldaek/jsonlint/tree/1.10.0" }, "funding": [ { @@ -22005,7 +21954,7 @@ "type": "tidelift" } ], - "time": "2022-04-01T13:37:23+00:00" + "time": "2023-05-11T13:16:46+00:00" }, { "name": "seld/phar-utils", @@ -22057,16 +22006,16 @@ }, { "name": "sirbrillig/phpcs-variable-analysis", - "version": "v2.11.16", + "version": "v2.11.17", "source": { "type": "git", "url": "https://github.com/sirbrillig/phpcs-variable-analysis.git", - "reference": "dc5582dc5a93a235557af73e523c389aac9a8e88" + "reference": "3b71162a6bf0cde2bff1752e40a1788d8273d049" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sirbrillig/phpcs-variable-analysis/zipball/dc5582dc5a93a235557af73e523c389aac9a8e88", - "reference": "dc5582dc5a93a235557af73e523c389aac9a8e88", + "url": "https://api.github.com/repos/sirbrillig/phpcs-variable-analysis/zipball/3b71162a6bf0cde2bff1752e40a1788d8273d049", + "reference": "3b71162a6bf0cde2bff1752e40a1788d8273d049", "shasum": "" }, "require": { @@ -22111,38 +22060,37 @@ "source": "https://github.com/sirbrillig/phpcs-variable-analysis", "wiki": "https://github.com/sirbrillig/phpcs-variable-analysis/wiki" }, - "time": "2023-03-31T16:46:32+00:00" + "time": "2023-08-05T23:46:11+00:00" }, { "name": "slevomat/coding-standard", - "version": "dev-master", + "version": "8.13.4", "source": { "type": "git", "url": "https://github.com/slevomat/coding-standard.git", - "reference": "b3c64a3c7f544c7bde9176655e474533251943e2" + "reference": "4b2af2fb17773656d02fbfb5d18024ebd19fe322" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/b3c64a3c7f544c7bde9176655e474533251943e2", - "reference": "b3c64a3c7f544c7bde9176655e474533251943e2", + "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/4b2af2fb17773656d02fbfb5d18024ebd19fe322", + "reference": "4b2af2fb17773656d02fbfb5d18024ebd19fe322", "shasum": "" }, "require": { "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7 || ^1.0", "php": "^7.2 || ^8.0", - "phpstan/phpdoc-parser": ">=1.18.0 <1.19.0", + "phpstan/phpdoc-parser": "^1.23.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.10.11", + "phpstan/phpstan": "1.10.26", "phpstan/phpstan-deprecation-rules": "1.1.3", - "phpstan/phpstan-phpunit": "1.0.0|1.3.11", + "phpstan/phpstan-phpunit": "1.3.13", "phpstan/phpstan-strict-rules": "1.5.1", - "phpunit/phpunit": "7.5.20|8.5.21|9.6.6" + "phpunit/phpunit": "7.5.20|8.5.21|9.6.8|10.2.6" }, - "default-branch": true, "type": "phpcodesniffer-standard", "extra": { "branch-alias": { @@ -22165,7 +22113,7 @@ ], "support": { "issues": "https://github.com/slevomat/coding-standard/issues", - "source": "https://github.com/slevomat/coding-standard/tree/master" + "source": "https://github.com/slevomat/coding-standard/tree/8.13.4" }, "funding": [ { @@ -22177,7 +22125,7 @@ "type": "tidelift" } ], - "time": "2023-04-07T11:21:08+00:00" + "time": "2023-07-25T10:28:55+00:00" }, { "name": "squizlabs/php_codesniffer", @@ -22606,16 +22554,16 @@ }, { "name": "symfony/phpunit-bridge", - "version": "v5.4.21", + "version": "v5.4.26", "source": { "type": "git", "url": "https://github.com/symfony/phpunit-bridge.git", - "reference": "28d8a15a0b4c7186042fa4e0ddea94d561e7ea9e" + "reference": "d04639b395e25efa4260fc5b12a9fa1eafb38a64" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/28d8a15a0b4c7186042fa4e0ddea94d561e7ea9e", - "reference": "28d8a15a0b4c7186042fa4e0ddea94d561e7ea9e", + "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/d04639b395e25efa4260fc5b12a9fa1eafb38a64", + "reference": "d04639b395e25efa4260fc5b12a9fa1eafb38a64", "shasum": "" }, "require": { @@ -22669,7 +22617,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.21" + "source": "https://github.com/symfony/phpunit-bridge/tree/v5.4.26" }, "funding": [ { @@ -22685,20 +22633,20 @@ "type": "tidelift" } ], - "time": "2023-02-16T09:33:00+00:00" + "time": "2023-07-12T15:44:31+00:00" }, { "name": "symfony/polyfill-php81", - "version": "v1.27.0", + "version": "v1.28.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php81.git", - "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a" + "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/707403074c8ea6e2edaf8794b0157a0bfa52157a", - "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a", + "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/7581cd600fa9fd681b797d00b02f068e2f13263b", + "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b", "shasum": "" }, "require": { @@ -22707,7 +22655,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.27-dev" + "dev-main": "1.28-dev" }, "thanks": { "name": "symfony/polyfill", @@ -22748,7 +22696,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php81/tree/v1.27.0" + "source": "https://github.com/symfony/polyfill-php81/tree/v1.28.0" }, "funding": [ { @@ -22764,7 +22712,7 @@ "type": "tidelift" } ], - "time": "2022-11-03T14:55:06+00:00" + "time": "2023-01-26T09:26:14+00:00" }, { "name": "theseer/tokenizer", @@ -22845,5 +22793,5 @@ "php": ">=7.3" }, "platform-dev": [], - "plugin-api-version": "2.3.0" + "plugin-api-version": "2.6.0" } diff --git a/docker-compose.yml b/docker-compose.yml index a26cfa6b1..4e2df8fbc 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -272,28 +272,6 @@ services: - $FRONT_DIR:/home/node/app command: bash -c "npm install && npm run build && npm run start" - n8n: - build: - context: docker/n8n -# image: n8nio/n8n:0.62.1-ubuntu - container_name: "${PROJECT_NAME}_n8n" - networks: - pece: - environment: - N8N_CLIENT_ID: $N8N_CLIENT_ID - N8N_CLIENT_SECRET: $N8N_CLIENT_SECRET - SITE_N8N_USERNAME: $SITE_N8N_USERNAME - SITE_N8N_PASSWORD: $SITE_N8N_PASSWORD - labels: - - "traefik.http.routers.${PROJECT_NAME}_n8n.rule=Host(`n8n.${PROJECT_BASE_URL}`)" - - "traefik.http.middlewares.auth.basicauth.users=${N8N_HTTP_ACCESS}" - - "traefik.http.routers.${PROJECT_NAME}_n8n.middlewares=auth" - ports: - - 5678:5678 - volumes: - - ~/.n8n:/root/.n8n - - ./n8n-automations:/root/.pece/automations - # blackfire: # image: blackfire/blackfire # container_name: "${PROJECT_NAME}_blackfire"