diff --git a/.ddev/.gitignore b/.ddev/.gitignore index 4efff32..ec03723 100644 --- a/.ddev/.gitignore +++ b/.ddev/.gitignore @@ -4,29 +4,37 @@ /**/*.example /.dbimageBuild +/.dbimageExtra /.ddev-docker-*.yaml /.*downloads /.homeadditions /.importdb* /.sshimageBuild +/.venv /.webimageBuild +/.webimageExtra /apache/apache-site.conf /commands/.gitattributes +/commands/db/mysql +/commands/host/launch +/commands/web/xdebug +/commands/web/live /config.local.y*ml -/config.*.local.y*ml /db_snapshots +/import-db +/import.yaml /mutagen/mutagen.yml /mutagen/.start-synced /nginx_full/nginx-site.conf /postgres/postgresql.conf /providers/acquia.yaml /providers/lagoon.yaml -/providers/pantheon.yaml /providers/platform.yaml /providers/upsun.yaml /sequelpro.spf -/traefik/config/geo-coop.yaml -/traefik/certs/geo-coop.crt -/traefik/certs/geo-coop.key +/settings/settings.ddev.py +/traefik/config/geo.yaml +/traefik/certs/geo.crt +/traefik/certs/geo.key /xhprof/xhprof_prepend.php /**/README.* diff --git a/.ddev/config.yaml b/.ddev/config.yaml index e7af573..b68660a 100644 --- a/.ddev/config.yaml +++ b/.ddev/config.yaml @@ -1,95 +1,83 @@ -name: geo-coop -type: drupal11 +name: geo +type: drupal9 docroot: web php_version: "8.1" webserver_type: apache-fpm +router_http_port: "80" +router_https_port: "443" xdebug_enabled: false additional_hostnames: [] additional_fqdns: [] database: - type: mariadb - version: "10.5" -use_dns_when_possible: true + type: mariadb + version: "10.5" +nfs_mount_enabled: false +mutagen_enabled: false +use_dns_when_possible: false composer_version: "2" web_environment: [] nodejs_version: "16" -corepack_enable: false -default_container_timeout: "240" -# Key features of DDEV's config.yaml: +# Key features of ddev's config.yaml: # name: # Name of the project, automatically provides # http://projectname.ddev.site and https://projectname.ddev.site -# type: # backdrop, cakephp, craftcms, drupal, drupal6, drupal7, drupal8, drupal9, drupal10, drupal11, laravel, magento, magento2, php, shopware6, silverstripe, symfony, typo3, wordpress -# See https://ddev.readthedocs.io/en/stable/users/quickstart/ for more -# information on the different project types +# type: # drupal6/7/8, backdrop, typo3, wordpress, php # docroot: # Relative path to the directory containing index.php. -# php_version: "8.3" # PHP version to use, "5.6" through "8.4" +# php_version: "7.4" # PHP version to use, "5.6", "7.0", "7.1", "7.2", "7.3", "7.4", "8.0", "8.1" # You can explicitly specify the webimage but this -# is not recommended, as the images are often closely tied to DDEV's' behavior, +# 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.11" or "8.0" -# MariaDB versions can be 5.5-10.8, 10.11, and 11.4. -# MySQL versions can be 5.5-8.0. -# PostgreSQL versions can be 9-17. +# type: # mysql, mariadb +# version: # database version, like "10.3" or "8.0" +# Note that mariadb_version or mysql_version from v1.18 and earlier +# will automatically be converted to this notation with just a "ddev config --auto" -# 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) +# router_http_port: # Port to be used for http (defaults to port 80) +# router_https_port: # Port for https (defaults to 443) -# xdebug_enabled: false # Set to true to enable Xdebug and "ddev start" or "ddev restart" +# 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. +# "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" +# 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. +# "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 or apache-fpm +# webserver_type: nginx-fpm # or apache-fpm # timezone: Europe/Berlin -# If timezone is unset, DDEV will attempt to derive it from the host system timezone -# using the $TZ environment variable or the /etc/localtime symlink. # 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 +# 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 rebuild". +# if composer_version:"2" it will use the most recent composer v2 +# It can also be set to "1", to get most recent composer v1 +# or "" for the default v2 created at release time. +# It can be set to any existing specific composer version. +# After first project 'ddev start' this will not be updated until it changes -# nodejs_version: "22" -# change from the default system Node.js version to any other version. -# See https://ddev.readthedocs.io/en/stable/users/configuration/config/#nodejs_version for more information -# and https://www.npmjs.com/package/n#specifying-nodejs-versions for the full documentation, -# Note that using of 'ddev nvm' is discouraged because "nodejs_version" is much easier to use, -# can specify any version, and is more robust than using 'nvm'. - -# corepack_enable: false -# Change to 'true' to 'corepack enable' and gain access to latest versions of yarn/pnpm +# nodejs_version: "16" +# change from the default system Node.js version to another supported version, like 12, 14, 17. +# 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 @@ -103,26 +91,8 @@ default_container_timeout: "240" # 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" - -# ddev_version_constraint: "" -# Example: -# ddev_version_constraint: ">= 1.22.4" -# This will enforce that the running ddev version is within this constraint. -# See https://github.com/Masterminds/semver#checking-version-constraints for -# supported constraint formats +# upload_dir: custom/upload/dir +# would set the destination path for ddev import-files to /custom/upload/dir # working_dir: # web: /var/www/html @@ -131,25 +101,20 @@ default_container_timeout: "240" # 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] +# omit_containers: [db, dba, 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 +# 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/stable/users/install/performance/#nfs -# See https://ddev.readthedocs.io/en/stable/users/install/performance/#mutagen +# nfs_mount_enabled: false +# Great performance improvement but requires host configuration first. +# See https://ddev.readthedocs.io/en/stable/users/performance/#using-nfs-to-mount-the-project-into-the-container + +# mutagen_enabled: false +# Experimental performance improvement using mutagen asynchronous updates. +# See https://ddev.readthedocs.io/en/latest/users/performance/#using-mutagen # fail_on_hook_fail: False # Decide whether 'ddev start' should be interrupted by a failing hook @@ -170,12 +135,20 @@ default_container_timeout: "240" # 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 +# phpmyadmin_port: "8036" +# phpmyadmin_https_port: "8037" +# The PHPMyAdmin ports can be changed from the default 8036 and 8037 -# host_mailpit_port: "8025" -# The mailpit port is not normally bound on the host at all, instead being routed +# host_phpmyadmin_port: "8036" +# The phpmyadmin (dba) port is not normally bound on the host at all, instead being routed +# through ddev-router, but it can be specified and bound. + +# mailhog_port: "8025" +# mailhog_https_port: "8026" +# The MailHog ports can be changed from the default 8025 and 8026 + +# host_mailhog_port: "8025" +# The mailhog 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] @@ -196,91 +169,39 @@ default_container_timeout: "240" # If you prefer you can change this to "ddev.local" to preserve # pre-v1.9 behavior. -# ngrok_args: --basic-auth username:pass1234 +# ngrok_args: --subdomain mysite --auth username:pass # Provide extra flags to the "ngrok http" command, see -# https://ngrok.com/docs/ngrok-agent/config or run "ngrok http -h" +# https://ngrok.com/docs#http 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 additional.php +# 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 +# - SOMEENV=somevalue +# - SOMEOTHERENV=someothervalue # no_project_mount: false -# (Experimental) If true, DDEV will not mount the project into the web container; +# (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 +# not just the localhost interface. 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 'use_dns_when_possible: 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, -# 'use_dns_when_possible: 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", +# 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 +# See https://ddev.readthedocs.io/en/stable/users/extending-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 sql:sanitize -# - exec: drush updatedb -# - exec: drush cache:rebuild +# - exec: drush cr +# - exec: drush updb diff --git a/.ddev/php/xdebug.ini b/.ddev/php/xdebug.ini new file mode 100644 index 0000000..700931f --- /dev/null +++ b/.ddev/php/xdebug.ini @@ -0,0 +1,2 @@ +[XDebug] +xdebug.idekey = PHPSTORM diff --git a/.ddev/traefik/certs/geo.crt b/.ddev/traefik/certs/geo.crt deleted file mode 100644 index 82cf1e4..0000000 --- a/.ddev/traefik/certs/geo.crt +++ /dev/null @@ -1,27 +0,0 @@ -#ddev-generated ------BEGIN CERTIFICATE----- -MIIEZjCCAs6gAwIBAgIRAK3U6VQeR8o6nUc7H7ksR+4wDQYJKoZIhvcNAQELBQAw -UzEeMBwGA1UEChMVbWtjZXJ0IGRldmVsb3BtZW50IENBMRQwEgYDVQQLDAttbG5j -bkBuaXhvczEbMBkGA1UEAwwSbWtjZXJ0IG1sbmNuQG5peG9zMB4XDTI1MDEyNTAz -MjEyM1oXDTI3MDQyNTAyMjEyM1owPzEnMCUGA1UEChMebWtjZXJ0IGRldmVsb3Bt -ZW50IGNlcnRpZmljYXRlMRQwEgYDVQQLDAttbG5jbkBuaXhvczCCASIwDQYJKoZI -hvcNAQEBBQADggEPADCCAQoCggEBALcfIXjuIeyEIrS3ieJNMiyQi0908vdwRRPm -JyF3pi3y59wkD/354M3qkCeciElXaFwocZLLc5aPDaeqe5RxP0MndQ0nX7HbQYyB -9dgoThvrCKbE2hc/75AlpBa/2kVEoefVF7hqMVz1K/TU2fbUTUK0vpU73m4Aqdfa -fN6XVUO4VvGcw1LcxkoIxPqNOU3TqVKyoRdfzchTqkhZv18lqa3IMhQCjAYhjt0q -LIp8n1kSJP46ypubzdIUf6ZxSMlf1A1RYMItbV5nj6DWkCcl3oarpzBVA/aw+WSq -OrhCgHBSKTluFJrQ6y1vUEFgcF6Hldekg2DIg4/uUUUztYz0ExECAwEAAaOByDCB -xTAOBgNVHQ8BAf8EBAMCBaAwEwYDVR0lBAwwCgYIKwYBBQUHAwEwHwYDVR0jBBgw -FoAUR3Cycv34IqivU0o5oFchbxNKLNswfQYDVR0RBHYwdIILKi5kZGV2LnNpdGWC -CWxvY2FsaG9zdIIMKi5kZGV2LmxvY2FsggtkZGV2LXJvdXRlcoIQZGRldi1yb3V0 -ZXIuZGRldoIYZGRldi1yb3V0ZXIuZGRldl9kZWZhdWx0gg1nZW8uZGRldi5zaXRl -hwR/AAABMA0GCSqGSIb3DQEBCwUAA4IBgQBDkTBQ9ky52hOYo/N4q4wVpZlCM/4k -5pmPeeMz6Qjjq2IvniU8ts1gd+FrVjclY5jaoqlK7ke8fLF/y6Pc4/MMYgCk/l7d -xCGCz6FzaN390M/qg4U4fDhAiauize/89nLd6+Su9cpwgyg8ZedeT4rDbdf0YM+U -zuNN/3xz0r+k+Tno0KJZuggoyfWKWZpsFyQneKqVzO5O92pUIRKwhL04GEaK+rOe -i3umlICWAZ2ENVOY/pc8Z760imO11pXTRnR8C80byk9yM0c6WmzVeMMybNxg3Bx8 -0v3h21/MeZRYcwkDO5pVI6VcJsCh2U60sZghCe1Zrj/lgJ9n1YZYRxLwEcll/2Bi -w/pDIm5LiyBwwa7tYY8bWVaJ/dGKmVY0TbN5Qy1zSSnmwbLa/z6wmDJT6b3mqdU4 -4XYE0Yi2SGXYWyCBoipi6felZmyNJRcZgUAQm28kk2kUgdxQsLVVxL3/IAfZA4mZ -HAUnA3Mpd6z3opjEnYZxx47tHXFRXs3+rWQ= ------END CERTIFICATE----- diff --git a/.ddev/traefik/certs/geo.key b/.ddev/traefik/certs/geo.key deleted file mode 100644 index 24695b8..0000000 --- a/.ddev/traefik/certs/geo.key +++ /dev/null @@ -1,29 +0,0 @@ -#ddev-generated ------BEGIN PRIVATE KEY----- -MIIEvwIBADANBgkqhkiG9w0BAQEFAASCBKkwggSlAgEAAoIBAQC3HyF47iHshCK0 -t4niTTIskItPdPL3cEUT5ichd6Yt8ufcJA/9+eDN6pAnnIhJV2hcKHGSy3OWjw2n -qnuUcT9DJ3UNJ1+x20GMgfXYKE4b6wimxNoXP++QJaQWv9pFRKHn1Re4ajFc9Sv0 -1Nn21E1CtL6VO95uAKnX2nzel1VDuFbxnMNS3MZKCMT6jTlN06lSsqEXX83IU6pI -Wb9fJamtyDIUAowGIY7dKiyKfJ9ZEiT+Osqbm83SFH+mcUjJX9QNUWDCLW1eZ4+g -1pAnJd6Gq6cwVQP2sPlkqjq4QoBwUik5bhSa0Ostb1BBYHBeh5XXpINgyIOP7lFF -M7WM9BMRAgMBAAECggEBAIfRryHifYbO+m7PMpWGbBBhpPHp68tameGIcr1/4OFz -qES++p2FGBeiQgkfMHY1PlIcLSCThcfFknspFz+iPymvukFnUrK3zIZKXe1U95n9 -WQ1YM+nKogRn5qx434tAvFUW1+EP4kzwCwosVP2duTAgnrpRDUjJdS+D/dmapML0 -VAE9nlSZmSKd+pwKaOnxP0e+6rWm3/C7dGV7/kjsiE5odbSaYvIIFVaYwbRaDNa+ -5N+Omir2HFGABs9P1T6Pi4muCpTsNY6KbVeurOmYG5juN415B9jb1APuY+LtHCSf -ecbv8KNk7ApFaz7BK1IZJ3lVIPnz4teGm7u2bmhIgAECgYEAxZHb6AexKzP4rbb2 -JycMwQUrsA9AIQ24lfsNq2izsN22BIFxOPvodM7nURV5v7NMlw/CzD2v6MpTbw/J -axK1SigjROGLn1QHIuGhq1ykSX+fKVztzPXyAxpjvnZOrsVMM9BYRv/FtejSQnLF -dKuxwxdg5GqizY4QKDwvgZp1EtECgYEA7UdkVbhr6aRZwQHWE2R9jCccgCzwimSC -nXtje+vFTfKzRdtJ6U4VVY3vIy7BehpVgPZ0p/GjYzh6qLEqHgRVi53Botsedpmg -/oQSqFQrmn/Vob7saUy8B3tOMll1FoEU92YrQEYonrBhyTFMuzfIiwcQwRgUtMR4 -8JCWxbvwjEECgYEAjRHP7oaHh6ytVQR+EIi+f5g8kJLjHHbapSTEpu6014YHsIHo -oWKloboWyvvFmg7hkj9rvUASueq11mh0TmLmVZQBUu6lLlfmXI61TFFy8RQSRouX -NLEsY/DU5as+FWbFOX37en6o4nHiqBWhTeRGomGwCojlxFY6zS/kT+tEyvECgYBJ -ik72omoPx/hpcYBAEm02+whCUatbuTsiRBPZXIGSXx5hEE4gGStTkOIFLYCZr3/A -sKIHS0Uwg1jA3+gF1aIN258gMnmGmKblO1ntAelhwS0dLGdpW3cLepQJ1uALUYaG -Bwxwp03/oPstuDHn9KobLN1se2IvhJVXOfkA3/b2AQKBgQCqkZxAPnfOrN2ethtV -w/jsYzBNfhqTk9/B4G4j/I3GTfltk64JFBZud8ci4e1DJEkchWQZlIbiX9Fnx4+M -CFFmDo2Tn40tQdi50m8BgbMoes9vlXCtSFFgoJUQBLTJ/n8N0y7nN2Gw40/jLmag -mkFdV/iE29uEMgFLDLgcrH6/jw== ------END PRIVATE KEY----- diff --git a/.ddev/traefik/config/geo.yaml b/.ddev/traefik/config/geo.yaml deleted file mode 100644 index b628029..0000000 --- a/.ddev/traefik/config/geo.yaml +++ /dev/null @@ -1,77 +0,0 @@ -#ddev-generated -# If you remove the ddev-generated line above you -# are responsible for maintaining this file. DDEV will not then -# update it, for example if you add `additional_hostnames`, etc. - -http: - routers: - geo-web-80-http: - entrypoints: - - http-80 - rule: HostRegexp(`^geo\.ddev\.site$`) - - service: "geo-web-80" - ruleSyntax: v3 - tls: false - # middlewares: - # - "geo-redirectHttps" - geo-web-8025-http: - entrypoints: - - http-8025 - rule: HostRegexp(`^geo\.ddev\.site$`) - - service: "geo-web-8025" - ruleSyntax: v3 - tls: false - # middlewares: - # - "geo-redirectHttps" - - - - geo-web-80-https: - entrypoints: - - http-443 - rule: HostRegexp(`^geo\.ddev\.site$`) - - service: "geo-web-80" - ruleSyntax: v3 - - tls: true - - geo-web-8025-https: - entrypoints: - - http-8026 - rule: HostRegexp(`^geo\.ddev\.site$`) - - service: "geo-web-8025" - ruleSyntax: v3 - - tls: true - - - - middlewares: - geo-redirectHttps: - redirectScheme: - scheme: https - permanent: true - - services: - geo-web-80: - loadbalancer: - servers: - - url: http://ddev-geo-web:80 - - geo-web-8025: - loadbalancer: - servers: - - url: http://ddev-geo-web:8025 - - - - - -tls: - certificates: - - certFile: /mnt/ddev-global-cache/traefik/certs/geo.crt - keyFile: /mnt/ddev-global-cache/traefik/certs/geo.key \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 8c45cc4..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "configurations": [ - { - "name": "Listen for Xdebug", - "type": "php", - "request": "launch", - "hostname": "0.0.0.0", - "port": 9003, - "pathMappings": { - "/var/www/html": "${workspaceFolder}" - }, - "preLaunchTask": "DDEV: Enable Xdebug", - "postDebugTask": "DDEV: Disable Xdebug" - } - ] -} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index f8df0f8..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "intelephense.environment.phpVersion": "8.1" -} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index 128c7cf..0000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "DDEV: Enable Xdebug", - "type": "shell", - "command": "ddev xdebug on", - "presentation": { - "reveal": "silent", - "close": true - } - }, - { - "label": "DDEV: Disable Xdebug", - "type": "shell", - "command": "ddev xdebug off", - "presentation": { - "reveal": "silent", - "close": true - } - } - ] -} \ No newline at end of file diff --git a/DEPLOYMENT.md b/DEPLOYMENT.md index b7d76c5..6e089c6 100644 --- a/DEPLOYMENT.md +++ b/DEPLOYMENT.md @@ -1,23 +1,18 @@ -Set up +Set up Make sure all your code is pushed, including an updated composer.lock file if you've made any changes to modules, themes, or libraries brought in that way. -NOTE: What 1000 is depends on what your user or group or something is. - -```shell +``` cd ~/Projects/drutopia-platform/drutopia_host/hosting_private/ -just git-pull-all -just docker-build 1000 -just docker -cd hosting_private/ -just deploy-build test news -just deploy-site test geo_test +ahoy git-pull-all +ahoy deploy-build news +ahoy deploy-site geo_test ``` When you're absolutely certain and ready to do a force override quickly: ``` -just deploy-build-and-site-force test news geo_test +ahoy deploy-build news && ahoy deploy-site-force geo_test ``` And same for `_live` of course. diff --git a/README.md b/README.md index fb39d37..e28c16d 100644 --- a/README.md +++ b/README.md @@ -4,16 +4,18 @@ This project is based on Drutopia, which means it is compatible with existing and future Drutopia features. We will be diverging from Drutopia for special functionality, however. -See [DEPLOYMENT.md](DEPLOYMENT.md) for easy deploy instructions with Just. +See [DEPLOYMENT.md](DEPLOYMENT.md) for easy deploy instructions with Ahoy. + +## Temporary upgrade notes + +There's an error in the update hooks about url alias table not found, but confirmed that all the entries in `old_5ebc14_url_alias` also exist in the new `path_alias` table, so whatever happened there, nothing is lost in the upgrade. ## Getting started One time: -```shell -mkdir -p ~/Projects/geo -cd ~/Projects/geo -git clone git@git.agaric.com:geo/geo-coop.git +``` +git clone git@gitlab.com:agaric/sites/geo.git cd geo ``` @@ -22,30 +24,84 @@ the following steps to work. Whenever you want a fresh start: -```shell + +``` git pull ddev start ddev composer update -ddev drush -y site:install minimal --existing-config +ddev . drush -y site:install minimal --existing-config ``` Note: If you receive a `Permission denied (publickey).` error it means you need to copy your key into the DDEV container by running `ddev auth ssh`. ## Pull live content down for development -```shell -ddev drush sql-sync @live @self -ddev drush -y rsync --exclude-paths=css:js:php --verbose @live:%files/ @self:%files +``` +drush sql-sync @live @self +drush -y rsync --exclude-paths=css:js:php --verbose @live:%files/ @self:%files ``` -## Compile CSS -```shell -ddev npm run sass-dev +## Running the migration in development + +Download the D7 files via the Backup and Migrate module. + +Put the D7 files in the following location: ``` +/d7/sites/default/files/ +``` +There is a reference to the `sites/default/files` in the database so that structure is mandatory for the migration. -Or when ready to commit for production deploy: +The path in the `upgrade_d7_file.yml` migration file is different because this is executed inside the docker container so in the docker container the is: `/var/www/html/` but no need to re-create those folders in the host machine. + +Download a database dump of the D7 site via the Backup and Migrate module. + +Create a database called `drupal7`: + +Use `ddev describe` to see what the host and port are for your local environment, and use that in the first line here: ``` -ddev npm run sass-prod +mysql --host=127.0.0.1 --port=32779 --user=root --password=root --database=db +CREATE DATABASE drupal7; +GRANT ALL ON drupal7.* to 'db'@'%' IDENTIFIED BY 'db'; ``` + +Now `ctrl+c` out of there, and, again substituting the host and port for your own, import your file from whereever you placed and named your db SQL dump: + +``` +mysql --host=127.0.0.1 --port=32779 --user=root --password=root --database=drupal7 < data/db.mysql +``` + +(Above per [instructions for creating another database in ddev](https://stackoverflow.com/a/49785024/1943924).) + +Once the files are in the correct place and the database has been created we can run the following to run all the migrations: + +``` +ddev . drush mim --group="migrate_drupal_7_geo" +``` +Note: The migration will partially fail because of missing files. For now, re-run the migration command and it will complete the migration. + +## Running the migration on the hosted instance + +1. Refresh files and database from live. + - Obtain the latest from the prior site via [Migrate and Backup](http://geo.coop/admin/config/system/backup_migrate): database, and public files, as two separate downloads. The following commands assume the files saved as `files.tar.gz` and `database.sql.gz` + - Upload these to the server: `scp *.gz geo_live@drutopia.org:` + - SSH to server: `ssh geo_live@drutopia.org` + - Unzip the uploaded database file: `gunzip database.sql.gz` + - Drop the existing tables: `drop-tables.sh geo_legacy` + - Reload the uploaded database: `mysql geo_legacy < database.sql` + - Change to the files folder and untar them: `cd site/d7/sites/default/files/` and then: `tar xzf ~/files.tar.gz` (this will take a couple minutes). + - The server side is ready! Log off by typing `ctrl+d` +1. Now perform a deployment with drutopia_hosting. This will install the site using the minimal profile and existing config. Set the vars accordingly (drupal_install and drupal_forceinstall must be True), if needed: `ahoy vault-edit` + - Deploy a new build, as needed: `ahoy deploy-build news` + - Deploy the site. With a forced re-install, a migration will be performed automatically: `ahoy deploy-site geo_live` + +## Post go-live tasks + +1. Remove all d7 files: `rm -rf site/d7` and `rm geo_legacy.sql`, etc. +1. Change the site settings in hosting: + - config_import -> True + - php_settings_code -> blank +1. Change the news build settings in hosting: + - remove custom build commands (i.e. sed) +1. At this point, the deploy should be typical (deploy-build/deploy-site as normal) diff --git a/composer.json b/composer.json index 2a0b684..38f1124 100644 --- a/composer.json +++ b/composer.json @@ -1,11 +1,11 @@ { "name": "agaric-sites/geo", "description": "Drutopia-based site for the Grassroots Economic Organizing collective and potentially other news sites.", - "homepage": "https://geo.coop", "type": "project", "license": "GPL-2.0-or-later", "minimum-stability": "dev", "prefer-stable": true, + "homepage": "https://drutopia.org", "support": { "docs": "http://docs.drutopia.org/en/latest", "issues": "https://gitlab.com/drutopia/drutopia/-/issues" @@ -15,6 +15,10 @@ "type": "git", "url": "git@git.drupal.org:issue/empty_page-3287186.git" }, + "drupal/google_analytics": { + "type": "git", + "url": "git@git.drupal.org:issue/google_analytics-3357831.git" + }, "drupal": { "type": "composer", "url": "https://packages.drupal.org/8" @@ -24,15 +28,12 @@ "composer/installers": "^2", "cweagans/composer-patches": "^1.7", "drupal/admin_toolbar": "^3", + "drupal/allowed_formats": "^2", "drupal/antibot": "^2", "drupal/asset_injector": "^2", - "drupal/auto_entitylabel": "^3", + "drupal/auto_entitylabel": "^3.0@beta", "drupal/backup_migrate": "^5", - "drupal/better_exposed_filters": "^6", - "drupal/block_class": "^4", - "drupal/bpmn_io": "^1", - "drupal/cancel_button": "^1", - "drupal/ckeditor_iframe": "^3.0@beta", + "drupal/block_class": "^2", "drupal/ckeditorheight": "^1", "drupal/classitup": "^1", "drupal/comment_notify": "^1", @@ -47,11 +48,9 @@ "drupal/date_popup": "^2", "drupal/datetimehideseconds": "^1", "drupal/diff": "^1", - "drupal/disclosure_menu": "^2.1", "drupal/drd_agent": "^4", "drupal/drutopia_collection": "2.0.x-dev@dev", "drupal/drutopia_core": "2.0.x-dev@dev", - "drupal/drutopia_organization": "2.0.x-dev@dev", "drupal/drutopia_paragraph_title": "^1", "drupal/drutopia_site": "2.0.x-dev@dev", "drupal/easy_breadcrumb": "^2", @@ -65,31 +64,32 @@ "drupal/environment_indicator": "^4", "drupal/eva": "^3", "drupal/exif_orientation": "^1", - "drupal/facet_bot_blocker": "^1.0", "drupal/facets": "dev-3.0.x as 2.0.x-dev", - "drupal/fakeobjects": "^2", "drupal/field_defaults": "^2", "drupal/field_formatter_class": "^1", "drupal/field_token_value": "^3", "drupal/filter_perms": "^1", "drupal/fitvids": "^2", "drupal/fixed_block_content": "^1", - "drupal/footnotes": "^4", + "drupal/footnotes": "^3", "drupal/geolocation": "^3", + "drupal/gin": "^3", "drupal/gin_gutenberg": "^1", "drupal/gin_login": "^2", - "drupal/givebutter": "1.0.x-dev@dev", - "drupal/google_analytics": "^4", + "drupal/gin_toolbar": "^1", + "drupal/google_analytics": "dev-3357831-php-8.2-compatibility", "drupal/gutenberg": "^2", "drupal/http_cache_control": "^2", "drupal/http_client_error_status": "^3", + "drupal/honeypot": "~2.1.0", "drupal/ief_complex_open": "^1", "drupal/indieweb": "^1", + "drupal/inline_entity_form": "^1.0@RC", "drupal/inotherwords": "^3", "drupal/insert": "^3", "drupal/key": "^1.14", "drupal/link_attributes": "^1.9", - "drupal/linkit": "^7", + "drupal/linkit": "^6", "drupal/mailchimp": "^2", "drupal/markdown": "^3", "drupal/menu_link_config": "^1.0@alpha", @@ -111,25 +111,19 @@ "drupal/plausible": "^2.0@beta", "drupal/prepopulate": "^2", "drupal/preview_link": "^2", - "drupal/printable": "^3", "drupal/r4032login": "^2", "drupal/rabbit_hole": "^1.0@beta", - "drupal/regionincontent": "^1", - "drupal/registration_role": "^2", - "drupal/require_on_publish": "^1", "drupal/role_delegation": "^1", - "drupal/scheduler": "^1", - "drupal/schema_metatag": "^3", + "drupal/schema_metatag": "^2", "drupal/scn": "^2", "drupal/search404": "^2", "drupal/search_api_autocomplete": "^1.6", "drupal/search_api_saved_searches": "^1", - "drupal/seckit": "^2", + "drupal/seckit": "^2.0", "drupal/select_or_other": "^4.0", "drupal/shield": "^1.4", - "drupal/simple_sitemap": "^4.1", - "drupal/smart_date": "^4", - "drupal/sms": "^2", + "drupal/smart_date": "^4.0", + "drupal/sms": "^2.0", "drupal/social_post_facebook": "3.0.x-dev@dev", "drupal/social_post_twitter": "3.x-dev@dev", "drupal/stable": "^2.0", @@ -140,18 +134,16 @@ "drupal/textarea_widget_for_text": "^1.1", "drupal/tomselect": "1.0.x-dev@dev", "drupal/trim": "^2", - "drupal/twig_tweak": "^3", - "drupal/ui_patterns": "^1", - "drupal/unique_content_field_validation": "^1.1", + "drupal/twig_tweak": "^3.2", + "drupal/twigsuggest": "^1", "drupal/view_password": "^6", "drupal/view_unpublished": "^1.0", "drupal/viewsreference": "^1", "drupal/visitors": "^2.17", "drupal/webform": "^6.0", "drupal/weight": "^3.3", - "drupal/workflow_buttons": "1.x-dev", "drupal/wysiwyg_linebreaks": "^2", - "drush/drush": "*", + "drush/drush": "^12", "drutopia/drutopia": "2.0.x-dev", "league/commonmark": "^1.0", "vlucas/phpdotenv": "^5.1", @@ -203,18 +195,13 @@ "patches": { "drupal/core": { "Adding attributes to views-view-list.html.twig doesn't work if Views List class Style option is empty": "https://www.drupal.org/files/issues/2023-03-16/2845400-24.patch", - "Use form element of type date instead textfield when selecting a date in an exposed filter": "https://www.drupal.org/files/issues/2025-06-24/2648950-293.patch", - "Views Date Filter Datetime Granularity Option": "https://www.drupal.org/files/issues/2021-04-27/2868014-110-after-2648950-247-applied.patch" - }, - "drupal/ckeditor_iframe": { - "Support CKEditor5 45.2.0": "https://www.drupal.org/files/issues/2025-07-21/3529626-support-ckeditor5-45.2.0.patch" + "Use form element of type date instead textfield when selecting a date in an exposed filter": "https://www.drupal.org/files/issues/2024-08-21/2648950-284.patch", + "Views Date Filter Datetime Granularity Option": "https://www.drupal.org/files/issues/2021-04-27/2868014-110-after-2648950-247-applied.patch", + "Entity reference filter for all entity reference fields 3347343": "https://git.drupalcode.org/project/drupal/-/merge_requests/9226.diff" }, "drupal/ds": { "Parent theme template inheritance bug": "https://www.drupal.org/files/issues/2021-02-22/2895316-12.patch" }, - "drupal/fitvids": { - "Missing FitVids.js library causes error in file_get_contents": "https://www.drupal.org/files/issues/2025-06-27/fitvids-issue-3501317-comment-15991650-missing-fitbitjs-lib-patch-for-v210.patch" - }, "drupal/unique_content_field_validation": { "Overriden title field" : "https://www.drupal.org/files/issues/2023-01-05/unique-validation-title-override.patch" } diff --git a/composer.lock b/composer.lock index fb9f928..f0a2a0a 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "0fe7c0ce243d5a348ac274a74f8a8392", + "content-hash": "aee41b23039355cdda317310a8d3655d", "packages": [ { "name": "abraham/twitteroauth", @@ -179,16 +179,16 @@ }, { "name": "asm89/stack-cors", - "version": "v2.3.0", + "version": "v2.2.0", "source": { "type": "git", "url": "https://github.com/asm89/stack-cors.git", - "reference": "acf3142e6c5eafa378dc8ef3c069ab4558993f70" + "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/asm89/stack-cors/zipball/acf3142e6c5eafa378dc8ef3c069ab4558993f70", - "reference": "acf3142e6c5eafa378dc8ef3c069ab4558993f70", + "url": "https://api.github.com/repos/asm89/stack-cors/zipball/50f57105bad3d97a43ec4a485eb57daf347eafea", + "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea", "shasum": "" }, "require": { @@ -229,9 +229,9 @@ ], "support": { "issues": "https://github.com/asm89/stack-cors/issues", - "source": "https://github.com/asm89/stack-cors/tree/v2.3.0" + "source": "https://github.com/asm89/stack-cors/tree/v2.2.0" }, - "time": "2025-03-13T08:50:04+00:00" + "time": "2023-11-14T13:51:46+00:00" }, { "name": "barnabywalters/mf-cleaner", @@ -279,16 +279,16 @@ }, { "name": "caxy/php-htmldiff", - "version": "v0.1.17", + "version": "v0.1.15", "source": { "type": "git", "url": "https://github.com/caxy/php-htmldiff.git", - "reference": "194feb154e32f585dd2ca8ae6929a53abfcebf9e" + "reference": "6342b02ddb86fd36093ad7e2db2efc21f01ab7cd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/caxy/php-htmldiff/zipball/194feb154e32f585dd2ca8ae6929a53abfcebf9e", - "reference": "194feb154e32f585dd2ca8ae6929a53abfcebf9e", + "url": "https://api.github.com/repos/caxy/php-htmldiff/zipball/6342b02ddb86fd36093ad7e2db2efc21f01ab7cd", + "reference": "6342b02ddb86fd36093ad7e2db2efc21f01ab7cd", "shasum": "" }, "require": { @@ -334,9 +334,9 @@ ], "support": { "issues": "https://github.com/caxy/php-htmldiff/issues", - "source": "https://github.com/caxy/php-htmldiff/tree/v0.1.17" + "source": "https://github.com/caxy/php-htmldiff/tree/v0.1.15" }, - "time": "2025-05-16T17:04:33+00:00" + "time": "2023-11-05T23:49:04+00:00" }, { "name": "cebe/markdown", @@ -464,28 +464,28 @@ }, { "name": "commerceguys/addressing", - "version": "v2.2.4", + "version": "v1.4.2", "source": { "type": "git", "url": "https://github.com/commerceguys/addressing.git", - "reference": "ea826dbe5b3fe76960073a2167d5cf996c811cda" + "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/commerceguys/addressing/zipball/ea826dbe5b3fe76960073a2167d5cf996c811cda", - "reference": "ea826dbe5b3fe76960073a2167d5cf996c811cda", + "url": "https://api.github.com/repos/commerceguys/addressing/zipball/406c7b5f0fbe4f6a64155c0fe03b1adb34d01308", + "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308", "shasum": "" }, "require": { - "doctrine/collections": "^1.6 || ^2.0", - "php": ">=8.0" + "doctrine/collections": "^1.2 || ^2.0", + "php": ">=7.3" }, "require-dev": { "ext-json": "*", - "mikey179/vfsstream": "^1.6.11", - "phpunit/phpunit": "^9.6", - "squizlabs/php_codesniffer": "^3.7", - "symfony/validator": "^5.4 || ^6.3 || ^7.0" + "mikey179/vfsstream": "^1.6.10", + "phpunit/phpunit": "^9.5", + "squizlabs/php_codesniffer": "^3.6", + "symfony/validator": "^4.4 || ^5.4 || ^6.0" }, "suggest": { "symfony/validator": "to validate addresses" @@ -493,7 +493,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { @@ -522,22 +522,22 @@ ], "support": { "issues": "https://github.com/commerceguys/addressing/issues", - "source": "https://github.com/commerceguys/addressing/tree/v2.2.4" + "source": "https://github.com/commerceguys/addressing/tree/v1.4.2" }, - "time": "2025-01-13T16:03:24+00:00" + "time": "2023-02-15T10:11:14+00:00" }, { "name": "composer/ca-bundle", - "version": "1.5.7", + "version": "1.5.3", "source": { "type": "git", "url": "https://github.com/composer/ca-bundle.git", - "reference": "d665d22c417056996c59019579f1967dfe5c1e82" + "reference": "3b1fc3f0be055baa7c6258b1467849c3e8204eb2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/ca-bundle/zipball/d665d22c417056996c59019579f1967dfe5c1e82", - "reference": "d665d22c417056996c59019579f1967dfe5c1e82", + "url": "https://api.github.com/repos/composer/ca-bundle/zipball/3b1fc3f0be055baa7c6258b1467849c3e8204eb2", + "reference": "3b1fc3f0be055baa7c6258b1467849c3e8204eb2", "shasum": "" }, "require": { @@ -584,7 +584,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.5.7" + "source": "https://github.com/composer/ca-bundle/tree/1.5.3" }, "funding": [ { @@ -600,7 +600,7 @@ "type": "tidelift" } ], - "time": "2025-05-26T15:08:54+00:00" + "time": "2024-11-04T10:15:26+00:00" }, { "name": "composer/installers", @@ -831,16 +831,16 @@ }, { "name": "consolidation/annotated-command", - "version": "4.10.2", + "version": "4.10.0", "source": { "type": "git", "url": "https://github.com/consolidation/annotated-command.git", - "reference": "e550ea4f177f199e0e9451168342bf3f321d92b0" + "reference": "1e830ba908c9ffb1ba7ca056203531b27188812c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/e550ea4f177f199e0e9451168342bf3f321d92b0", - "reference": "e550ea4f177f199e0e9451168342bf3f321d92b0", + "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/1e830ba908c9ffb1ba7ca056203531b27188812c", + "reference": "1e830ba908c9ffb1ba7ca056203531b27188812c", "shasum": "" }, "require": { @@ -881,9 +881,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.10.2" + "source": "https://github.com/consolidation/annotated-command/tree/4.10.0" }, - "time": "2025-07-16T20:54:09+00:00" + "time": "2024-04-05T21:05:39+00:00" }, { "name": "consolidation/config", @@ -1231,16 +1231,16 @@ }, { "name": "consolidation/site-alias", - "version": "4.1.1", + "version": "4.1.0", "source": { "type": "git", "url": "https://github.com/consolidation/site-alias.git", - "reference": "aff6189aae17da813d23249cb2fc0fff33f26d40" + "reference": "1056ceb93f6aafe6f7600d7bbe1b62b8488abccf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/site-alias/zipball/aff6189aae17da813d23249cb2fc0fff33f26d40", - "reference": "aff6189aae17da813d23249cb2fc0fff33f26d40", + "url": "https://api.github.com/repos/consolidation/site-alias/zipball/1056ceb93f6aafe6f7600d7bbe1b62b8488abccf", + "reference": "1056ceb93f6aafe6f7600d7bbe1b62b8488abccf", "shasum": "" }, "require": { @@ -1284,22 +1284,22 @@ "description": "Manage alias records for local and remote sites.", "support": { "issues": "https://github.com/consolidation/site-alias/issues", - "source": "https://github.com/consolidation/site-alias/tree/4.1.1" + "source": "https://github.com/consolidation/site-alias/tree/4.1.0" }, - "time": "2024-12-13T19:05:11+00:00" + "time": "2024-04-05T15:58:04+00:00" }, { "name": "consolidation/site-process", - "version": "5.4.2", + "version": "5.4.0", "source": { "type": "git", "url": "https://github.com/consolidation/site-process.git", - "reference": "e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da" + "reference": "7ab3ffe4195a89b8dc334ea22e7881abe79ffd9a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/site-process/zipball/e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da", - "reference": "e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da", + "url": "https://api.github.com/repos/consolidation/site-process/zipball/7ab3ffe4195a89b8dc334ea22e7881abe79ffd9a", + "reference": "7ab3ffe4195a89b8dc334ea22e7881abe79ffd9a", "shasum": "" }, "require": { @@ -1341,9 +1341,9 @@ "description": "A thin wrapper around the Symfony Process Component that allows applications to use the Site Alias library to specify the target for a remote call.", "support": { "issues": "https://github.com/consolidation/site-process/issues", - "source": "https://github.com/consolidation/site-process/tree/5.4.2" + "source": "https://github.com/consolidation/site-process/tree/5.4.0" }, - "time": "2024-12-13T19:25:56+00:00" + "time": "2024-04-06T00:00:28+00:00" }, { "name": "cweagans/composer-patches", @@ -1546,29 +1546,29 @@ }, { "name": "doctrine/collections", - "version": "2.3.0", + "version": "2.2.2", "source": { "type": "git", "url": "https://github.com/doctrine/collections.git", - "reference": "2eb07e5953eed811ce1b309a7478a3b236f2273d" + "reference": "d8af7f248c74f195f7347424600fd9e17b57af59" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/collections/zipball/2eb07e5953eed811ce1b309a7478a3b236f2273d", - "reference": "2eb07e5953eed811ce1b309a7478a3b236f2273d", + "url": "https://api.github.com/repos/doctrine/collections/zipball/d8af7f248c74f195f7347424600fd9e17b57af59", + "reference": "d8af7f248c74f195f7347424600fd9e17b57af59", "shasum": "" }, "require": { "doctrine/deprecations": "^1", - "php": "^8.1", - "symfony/polyfill-php84": "^1.30" + "php": "^8.1" }, "require-dev": { "doctrine/coding-standard": "^12", "ext-json": "*", "phpstan/phpstan": "^1.8", "phpstan/phpstan-phpunit": "^1.0", - "phpunit/phpunit": "^10.5" + "phpunit/phpunit": "^10.5", + "vimeo/psalm": "^5.11" }, "type": "library", "autoload": { @@ -1612,7 +1612,7 @@ ], "support": { "issues": "https://github.com/doctrine/collections/issues", - "source": "https://github.com/doctrine/collections/tree/2.3.0" + "source": "https://github.com/doctrine/collections/tree/2.2.2" }, "funding": [ { @@ -1628,34 +1628,33 @@ "type": "tidelift" } ], - "time": "2025-03-22T10:17:19+00:00" + "time": "2024-04-18T06:56:21+00:00" }, { "name": "doctrine/deprecations", - "version": "1.1.5", + "version": "1.1.3", "source": { "type": "git", "url": "https://github.com/doctrine/deprecations.git", - "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38" + "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/deprecations/zipball/459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38", - "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38", + "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab", + "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab", "shasum": "" }, "require": { "php": "^7.1 || ^8.0" }, - "conflict": { - "phpunit/phpunit": "<=7.5 || >=13" - }, "require-dev": { - "doctrine/coding-standard": "^9 || ^12 || ^13", - "phpstan/phpstan": "1.4.10 || 2.1.11", - "phpstan/phpstan-phpunit": "^1.0 || ^2", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12", - "psr/log": "^1 || ^2 || ^3" + "doctrine/coding-standard": "^9", + "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" @@ -1663,7 +1662,7 @@ "type": "library", "autoload": { "psr-4": { - "Doctrine\\Deprecations\\": "src" + "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations" } }, "notification-url": "https://packagist.org/downloads/", @@ -1674,9 +1673,9 @@ "homepage": "https://www.doctrine-project.org/", "support": { "issues": "https://github.com/doctrine/deprecations/issues", - "source": "https://github.com/doctrine/deprecations/tree/1.1.5" + "source": "https://github.com/doctrine/deprecations/tree/1.1.3" }, - "time": "2025-04-07T20:06:18+00:00" + "time": "2024-01-30T19:34:25+00:00" }, { "name": "doctrine/lexer", @@ -1756,161 +1755,6 @@ ], "time": "2024-02-05T11:35:39+00:00" }, - { - "name": "dompdf/dompdf", - "version": "v3.1.0", - "source": { - "type": "git", - "url": "https://github.com/dompdf/dompdf.git", - "reference": "a51bd7a063a65499446919286fb18b518177155a" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/dompdf/dompdf/zipball/a51bd7a063a65499446919286fb18b518177155a", - "reference": "a51bd7a063a65499446919286fb18b518177155a", - "shasum": "" - }, - "require": { - "dompdf/php-font-lib": "^1.0.0", - "dompdf/php-svg-lib": "^1.0.0", - "ext-dom": "*", - "ext-mbstring": "*", - "masterminds/html5": "^2.0", - "php": "^7.1 || ^8.0" - }, - "require-dev": { - "ext-gd": "*", - "ext-json": "*", - "ext-zip": "*", - "mockery/mockery": "^1.3", - "phpunit/phpunit": "^7.5 || ^8 || ^9 || ^10 || ^11", - "squizlabs/php_codesniffer": "^3.5", - "symfony/process": "^4.4 || ^5.4 || ^6.2 || ^7.0" - }, - "suggest": { - "ext-gd": "Needed to process images", - "ext-gmagick": "Improves image processing performance", - "ext-imagick": "Improves image processing performance", - "ext-zlib": "Needed for pdf stream compression" - }, - "type": "library", - "autoload": { - "psr-4": { - "Dompdf\\": "src/" - }, - "classmap": [ - "lib/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "LGPL-2.1" - ], - "authors": [ - { - "name": "The Dompdf Community", - "homepage": "https://github.com/dompdf/dompdf/blob/master/AUTHORS.md" - } - ], - "description": "DOMPDF is a CSS 2.1 compliant HTML to PDF converter", - "homepage": "https://github.com/dompdf/dompdf", - "support": { - "issues": "https://github.com/dompdf/dompdf/issues", - "source": "https://github.com/dompdf/dompdf/tree/v3.1.0" - }, - "time": "2025-01-15T14:09:04+00:00" - }, - { - "name": "dompdf/php-font-lib", - "version": "1.0.1", - "source": { - "type": "git", - "url": "https://github.com/dompdf/php-font-lib.git", - "reference": "6137b7d4232b7f16c882c75e4ca3991dbcf6fe2d" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/6137b7d4232b7f16c882c75e4ca3991dbcf6fe2d", - "reference": "6137b7d4232b7f16c882c75e4ca3991dbcf6fe2d", - "shasum": "" - }, - "require": { - "ext-mbstring": "*", - "php": "^7.1 || ^8.0" - }, - "require-dev": { - "symfony/phpunit-bridge": "^3 || ^4 || ^5 || ^6" - }, - "type": "library", - "autoload": { - "psr-4": { - "FontLib\\": "src/FontLib" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "LGPL-2.1-or-later" - ], - "authors": [ - { - "name": "The FontLib Community", - "homepage": "https://github.com/dompdf/php-font-lib/blob/master/AUTHORS.md" - } - ], - "description": "A library to read, parse, export and make subsets of different types of font files.", - "homepage": "https://github.com/dompdf/php-font-lib", - "support": { - "issues": "https://github.com/dompdf/php-font-lib/issues", - "source": "https://github.com/dompdf/php-font-lib/tree/1.0.1" - }, - "time": "2024-12-02T14:37:59+00:00" - }, - { - "name": "dompdf/php-svg-lib", - "version": "1.0.0", - "source": { - "type": "git", - "url": "https://github.com/dompdf/php-svg-lib.git", - "reference": "eb045e518185298eb6ff8d80d0d0c6b17aecd9af" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/dompdf/php-svg-lib/zipball/eb045e518185298eb6ff8d80d0d0c6b17aecd9af", - "reference": "eb045e518185298eb6ff8d80d0d0c6b17aecd9af", - "shasum": "" - }, - "require": { - "ext-mbstring": "*", - "php": "^7.1 || ^8.0", - "sabberworm/php-css-parser": "^8.4" - }, - "require-dev": { - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5" - }, - "type": "library", - "autoload": { - "psr-4": { - "Svg\\": "src/Svg" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "LGPL-3.0-or-later" - ], - "authors": [ - { - "name": "The SvgLib Community", - "homepage": "https://github.com/dompdf/php-svg-lib/blob/master/AUTHORS.md" - } - ], - "description": "A library to read, parse and export to PDF SVG files.", - "homepage": "https://github.com/dompdf/php-svg-lib", - "support": { - "issues": "https://github.com/dompdf/php-svg-lib/issues", - "source": "https://github.com/dompdf/php-svg-lib/tree/1.0.0" - }, - "time": "2024-04-29T13:26:35+00:00" - }, { "name": "dragonmantank/cron-expression", "version": "v3.4.0", @@ -1976,69 +1820,33 @@ ], "time": "2024-10-09T13:47:03+00:00" }, - { - "name": "drupal-ckeditor-libraries-group/fakeobjects", - "version": "4.22.1", - "source": { - "type": "git", - "url": "https://github.com/drupal-ckeditor-libraries-group/fakeobjects.git", - "reference": "a1de732aa3dbc63349f8b4653b1c7788c93ae25c" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/drupal-ckeditor-libraries-group/fakeobjects/zipball/a1de732aa3dbc63349f8b4653b1c7788c93ae25c", - "reference": "a1de732aa3dbc63349f8b4653b1c7788c93ae25c", - "shasum": "" - }, - "type": "drupal-library", - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later", - "LGPL-2.1-or-later", - "MPL-1.1" - ], - "description": "CKEditor 4 fakeobjects plugin", - "homepage": "https://ckeditor.com/cke4/addon/fakeobjects", - "keywords": [ - "CKEditor", - "fakeobjects", - "plugin" - ], - "support": { - "issues": "https://github.com/ckeditor/ckeditor4/issues", - "source": "https://github.com/ckeditor/ckeditor4/tree/master/plugins/fakeobjects" - }, - "time": "2023-02-08T14:53:49+00:00" - }, { "name": "drupal/address", - "version": "2.0.4", + "version": "1.12.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/address.git", - "reference": "2.0.4" + "reference": "8.x-1.12" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/address-2.0.4.zip", - "reference": "2.0.4", - "shasum": "5a86f7abc028f3d9833784dbf0791a6e4463da8e" + "url": "https://ftp.drupal.org/files/projects/address-8.x-1.12.zip", + "reference": "8.x-1.12", + "shasum": "67dd4699040aabf0cd6169e437706fa6a39b0b3a" }, "require": { - "commerceguys/addressing": "^2.1.1", - "drupal/core": "^9.5 || ^10 || ^11", - "php": "^8.0" + "commerceguys/addressing": "^1.4.2", + "drupal/core": "^9.2 || ^10", + "php": "^7.3 || ^8.0" }, "require-dev": { - "drupal/diff": "^1", - "drupal/feeds": "^3", - "drupal/token": "^1" + "drupal/token": "^1.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.4", - "datestamp": "1746462054", + "version": "8.x-1.12", + "datestamp": "1684710176", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2055,7 +1863,7 @@ "homepage": "https://www.drupal.org/user/86106" }, { - "name": "centarro", + "name": "Centarro", "homepage": "https://www.drupal.org/user/3661446" }, { @@ -2079,17 +1887,17 @@ }, { "name": "drupal/admin_toolbar", - "version": "3.6.1", + "version": "3.5.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/admin_toolbar.git", - "reference": "3.6.1" + "reference": "3.5.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.6.1.zip", - "reference": "3.6.1", - "shasum": "40e8874bdf100de90e0eec6984be14f0ec7765b0" + "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.5.1.zip", + "reference": "3.5.1", + "shasum": "b5215109836f7fade374fef531231e36c1c9b945" }, "require": { "drupal/core": "^9.5 || ^10 || ^11" @@ -2100,8 +1908,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "3.6.1", - "datestamp": "1749079734", + "version": "3.5.1", + "datestamp": "1730409973", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2134,10 +1942,6 @@ "homepage": "https://www.drupal.org/u/matio89", "role": "Maintainer" }, - { - "name": "fethi.krout", - "homepage": "https://www.drupal.org/user/3206765" - }, { "name": "japerry", "homepage": "https://www.drupal.org/user/45640" @@ -2168,7 +1972,7 @@ }, { "name": "drupal/admin_toolbar-admin_toolbar_search", - "version": "3.6.1", + "version": "3.5.1", "require": { "drupal/admin_toolbar": "^3", "drupal/core": "^9.5 || ^10 || ^11" @@ -2179,8 +1983,8 @@ "type": "metapackage", "extra": { "drupal": { - "version": "3.6.1", - "datestamp": "1749079734", + "version": "3.5.1", + "datestamp": "1730409973", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2200,10 +2004,6 @@ "name": "bolbol", "homepage": "https://www.drupal.org/user/3400070" }, - { - "name": "dydave", - "homepage": "https://www.drupal.org/user/467284" - }, { "name": "eme", "homepage": "https://www.drupal.org/user/542492" @@ -2236,7 +2036,7 @@ }, { "name": "drupal/admin_toolbar_tools", - "version": "3.6.1", + "version": "3.5.1", "require": { "drupal/admin_toolbar": "*", "drupal/core": "^9.5 || ^10 || ^11" @@ -2244,8 +2044,8 @@ "type": "metapackage", "extra": { "drupal": { - "version": "3.6.1", - "datestamp": "1749079734", + "version": "3.5.1", + "datestamp": "1730409973", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2265,10 +2065,6 @@ "name": "bolbol", "homepage": "https://www.drupal.org/user/3400070" }, - { - "name": "dydave", - "homepage": "https://www.drupal.org/user/467284" - }, { "name": "eme", "homepage": "https://www.drupal.org/user/542492" @@ -2302,29 +2098,26 @@ }, { "name": "drupal/allowed_formats", - "version": "3.0.1", + "version": "2.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/allowed_formats.git", - "reference": "3.0.1" + "reference": "2.0.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/allowed_formats-3.0.1.zip", - "reference": "3.0.1", - "shasum": "9dfaed3ab8425ee94146914fdb492cefc6c6bb4d" + "url": "https://ftp.drupal.org/files/projects/allowed_formats-2.0.0.zip", + "reference": "2.0.0", + "shasum": "ac6c6d398f303608ced7e9cd9d4556a728dc41f0" }, "require": { - "drupal/core": "^10.1 || ^11" - }, - "conflict": { - "drupal/core": "<10.1.0" + "drupal/core": "^9.2 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "3.0.1", - "datestamp": "1723158950", + "version": "2.0.0", + "datestamp": "1669170410", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2357,7 +2150,7 @@ "role": "Maintainer" } ], - "description": "Hides info about the selected text format. The 'allowed formats' functionality has been moved to core since Drupal 10.1.0.", + "description": "Limit which text formats are available for each field instance.", "homepage": "https://www.drupal.org/project/allowed_formats", "support": { "source": "http://cgit.drupalcode.org/allowed_formats", @@ -2467,30 +2260,29 @@ }, { "name": "drupal/auto_entitylabel", - "version": "3.4.0", + "version": "3.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/auto_entitylabel.git", - "reference": "8.x-3.4" + "reference": "8.x-3.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/auto_entitylabel-8.x-3.4.zip", - "reference": "8.x-3.4", - "shasum": "9b3d7bc8e450ae008b3f48fed0dd9dace03ddbb5" + "url": "https://ftp.drupal.org/files/projects/auto_entitylabel-8.x-3.3.zip", + "reference": "8.x-3.3", + "shasum": "38fd79973a7b49441bf622a1429a7c6623b93035" }, "require": { "drupal/core": "^10.1 || ^11" }, "require-dev": { - "drupal/book": "^1.0", "drupal/token": "^1.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.4", - "datestamp": "1736308389", + "version": "8.x-3.3", + "datestamp": "1723462798", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2548,27 +2340,27 @@ }, { "name": "drupal/automated_crop", - "version": "4.0.2", + "version": "3.0.3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/automated_crop.git", - "reference": "4.0.2" + "reference": "3.0.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/automated_crop-4.0.2.zip", - "reference": "4.0.2", - "shasum": "9126a9965c4159fc05c4c473aa311cf7f88a1418" + "url": "https://ftp.drupal.org/files/projects/automated_crop-3.0.3.zip", + "reference": "3.0.3", + "shasum": "36bad203747db7b94f8e334a6e44e06231bce5b7" }, "require": { - "drupal/core": "^10.1 || ^11", + "drupal/core": "^9 || ^10", "drupal/crop": "^2.2" }, "type": "drupal-module", "extra": { "drupal": { - "version": "4.0.2", - "datestamp": "1738584452", + "version": "3.0.3", + "datestamp": "1711631660", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2602,29 +2394,26 @@ }, { "name": "drupal/autosave_form", - "version": "1.10.0", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/autosave_form.git", - "reference": "8.x-1.10" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/autosave_form-8.x-1.10.zip", - "reference": "8.x-1.10", - "shasum": "99e270c30bf09a2688a5b23814beced13f8f7ba4" + "reference": "00dbe013e8d71db3df7c1c27cc30eadc41aa3226" }, "require": { "drupal/core": "^9.5 || ^10 || ^11" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.10", - "datestamp": "1738605622", + "version": "8.x-1.6+3-dev", + "datestamp": "1730727970", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." } } }, @@ -2710,96 +2499,19 @@ "slack": "https://drupal.slack.com/messages/C7C4M4QJV/details/" } }, - { - "name": "drupal/better_exposed_filters", - "version": "6.0.6", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/better_exposed_filters.git", - "reference": "6.0.6" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-6.0.6.zip", - "reference": "6.0.6", - "shasum": "558ca591d450fc64512cae7f98cb4b0241e15ba3" - }, - "require": { - "drupal/core": "^9 || ^10", - "drupal/jquery_ui": "*", - "drupal/jquery_ui_datepicker": "*", - "drupal/jquery_ui_slider": "*", - "drupal/jquery_ui_touch_punch": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "6.0.6", - "datestamp": "1716397541", - "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": "Mike Keran", - "homepage": "https://www.drupal.org/u/mikeker" - }, - { - "name": "Martin Keereman", - "homepage": "https://www.drupal.org/u/etroid" - }, - { - "name": "Neslee Canil Pinto", - "homepage": "https://www.drupal.org/u/neslee-canil-pinto" - }, - { - "name": "mikeker", - "homepage": "https://www.drupal.org/user/192273" - }, - { - "name": "neslee canil pinto", - "homepage": "https://www.drupal.org/user/3580850" - }, - { - "name": "podarok", - "homepage": "https://www.drupal.org/user/116002" - }, - { - "name": "rlhawk", - "homepage": "https://www.drupal.org/user/352283" - }, - { - "name": "smustgrave", - "homepage": "https://www.drupal.org/user/3252890" - } - ], - "description": "Replaces the Views default single- or multi-select boxes with more advanced options.", - "homepage": "https://www.drupal.org/project/better_exposed_filters", - "support": { - "source": "https://git.drupalcode.org/project/better_exposed_filters", - "issues": "https://www.drupal.org/project/issues/better_exposed_filters" - } - }, { "name": "drupal/block_class", - "version": "4.0.1", + "version": "2.0.12", "source": { "type": "git", "url": "https://git.drupalcode.org/project/block_class.git", - "reference": "4.0.1" + "reference": "2.0.12" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/block_class-4.0.1.zip", - "reference": "4.0.1", - "shasum": "46fa2437a8bd272a1f757a7cd957eb2747e28cdb" + "url": "https://ftp.drupal.org/files/projects/block_class-2.0.12.zip", + "reference": "2.0.12", + "shasum": "cc3945f8038bcc9bb48eff897df332aa952d62e6" }, "require": { "drupal/core": "^9 || ^10 || ^11" @@ -2807,8 +2519,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "4.0.1", - "datestamp": "1745427425", + "version": "2.0.12", + "datestamp": "1723243074", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2889,17 +2601,17 @@ }, { "name": "drupal/block_visibility_groups", - "version": "2.0.4", + "version": "2.0.3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/block_visibility_groups.git", - "reference": "2.0.4" + "reference": "2.0.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/block_visibility_groups-2.0.4.zip", - "reference": "2.0.4", - "shasum": "40ad2b557d610ea9aff3b81be6d6867287b6f34d" + "url": "https://ftp.drupal.org/files/projects/block_visibility_groups-2.0.3.zip", + "reference": "2.0.3", + "shasum": "92645ab16d38a53227480309fff566a740a6db5c" }, "require": { "drupal/core": "^9 || ^10 || ^11" @@ -2907,8 +2619,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.4", - "datestamp": "1737112821", + "version": "2.0.3", + "datestamp": "1728988746", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2947,58 +2659,6 @@ "issues": "https://www.drupal.org/project/issues/block_visibility_groups" } }, - { - "name": "drupal/bpmn_io", - "version": "1.1.5", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/bpmn_io.git", - "reference": "1.1.5" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/bpmn_io-1.1.5.zip", - "reference": "1.1.5", - "shasum": "02dc10526d1e83195bd2a93b1fb28835755c7527" - }, - "require": { - "drupal/core": "^9 || ^10", - "drupal/eca": "^1.0", - "drupal/eca_modeller_bpmn": "*", - "php": ">=7.4" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "1.1.5", - "datestamp": "1744192147", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "name": "boromino", - "homepage": "https://www.drupal.org/user/859722" - }, - { - "name": "jurgenhaas", - "homepage": "https://www.drupal.org/user/168924" - } - ], - "description": "BPMN modeller for ECA, integrated into Drupal's admin UI.", - "homepage": "https://www.drupal.org/project/bpmn_io", - "support": { - "source": "https://drupal.org/project/bpmn_io", - "issues": "https://drupal.org/project/issues/bpmn_io" - } - }, { "name": "drupal/bulma", "version": "dev-1.x", @@ -3029,14 +2689,14 @@ "GPL-2.0-or-later" ], "authors": [ - { - "name": "elkaro", - "homepage": "https://www.drupal.org/user/3577260" - }, { "name": "g4mbini", "homepage": "https://www.drupal.org/user/2533498" }, + { + "name": "lelkneralfaro", + "homepage": "https://www.drupal.org/user/3577260" + }, { "name": "megakeegman", "homepage": "https://www.drupal.org/user/3620027" @@ -3119,75 +2779,19 @@ "source": "https://git.drupalcode.org/project/bulma_components" } }, - { - "name": "drupal/cancel_button", - "version": "1.5.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/cancel_button.git", - "reference": "8.x-1.5" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/cancel_button-8.x-1.5.zip", - "reference": "8.x-1.5", - "shasum": "07ce620c57cdd16ac751f78d9c3397ea9350d1f8" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.5", - "datestamp": "1732804482", - "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": "danmuzyka", - "homepage": "https://www.drupal.org/user/48685" - }, - { - "name": "heddn", - "homepage": "https://www.drupal.org/user/1463982" - }, - { - "name": "kevin.dutra", - "homepage": "https://www.drupal.org/user/1312744" - }, - { - "name": "sukanya.ramakrishnan", - "homepage": "https://www.drupal.org/user/3320069" - } - ], - "description": "This small module adds a Cancel button to Entity forms.", - "homepage": "https://www.drupal.org/project/cancel_button", - "support": { - "source": "https://git.drupalcode.org/project/cancel_button" - } - }, { "name": "drupal/captcha", - "version": "2.0.9", + "version": "2.0.7", "source": { "type": "git", "url": "https://git.drupalcode.org/project/captcha.git", - "reference": "2.0.9" + "reference": "2.0.7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/captcha-2.0.9.zip", - "reference": "2.0.9", - "shasum": "15b2ba18fab75ea88bfa8f75fb1be09f7cd52cbb" + "url": "https://ftp.drupal.org/files/projects/captcha-2.0.7.zip", + "reference": "2.0.7", + "shasum": "8e97ba41810811bcd5d7e8b714cdc0b664dd8eec" }, "require": { "drupal/core": "^9.5 || ^10 || ^11" @@ -3195,8 +2799,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.9", - "datestamp": "1753701287", + "version": "2.0.7", + "datestamp": "1732250192", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3257,17 +2861,17 @@ }, { "name": "drupal/charts", - "version": "5.1.6", + "version": "5.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/charts.git", - "reference": "5.1.6" + "reference": "5.1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/charts-5.1.6.zip", - "reference": "5.1.6", - "shasum": "0627d71bb86701dda800f4baf0986d7a81984ef1" + "url": "https://ftp.drupal.org/files/projects/charts-5.1.0.zip", + "reference": "5.1.0", + "shasum": "667086aa01f6af319d8f056ca11d3eedb4536bd7" }, "require": { "drupal/core": "^10.3 || ^11" @@ -3275,8 +2879,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "5.1.6", - "datestamp": "1749676956", + "version": "5.1.0", + "datestamp": "1721677330", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3289,52 +2893,27 @@ ], "authors": [ { - "name": "Daniel Cothran (andileco)", - "homepage": "https://www.drupal.org/u/andileco", - "role": "Maintainer" + "name": "andileco", + "homepage": "https://www.drupal.org/user/2054544" }, { - "name": "Nia Kathoni (nikathone)", - "homepage": "https://www.drupal.org/u/nikathone", - "role": "Maintainer" + "name": "nikathone", + "homepage": "https://www.drupal.org/user/2421800" }, { - "name": "Nate Lampton (quicksketch)", - "homepage": "https://www.drupal.org/u/quicksketch", - "role": "Maintainer" - }, - { - "name": "brmassa", - "homepage": "https://www.drupal.org/u/brmassa", - "role": "Maintainer" - }, - { - "name": "Rafal W (kenorb)", - "homepage": "https://www.drupal.org/u/kenorb", - "role": "Maintainer" - }, - { - "name": "Pierre Vriens (pierrevriens)", - "homepage": "https://www.drupal.org/u/pierrevriens", - "role": "Maintainer" - }, - { - "name": "Majali (rashad612)", - "homepage": "https://www.drupal.org/u/rashad612", - "role": "Maintainer" + "name": "quicksketch", + "homepage": "https://www.drupal.org/user/35821" } ], - "description": "A charting API for Drupal that provides chart elements and integration with Views", - "homepage": "https://drupal.org/project/charts", + "description": "A charting API for Drupal that provides chart elements and integration with Views.", + "homepage": "https://www.drupal.org/project/charts", "support": { - "source": "https://git.drupalcode.org/project/charts", - "issues": "https://www.drupal.org/project/issues/charts?version=all_5.1.*", - "docs": "https://www.drupal.org/docs/contributed-modules/charts" + "source": "https://git.drupalcode.org/project/charts" } }, { "name": "drupal/charts_chartjs", - "version": "5.1.6", + "version": "5.1.0", "require": { "drupal/charts": "*", "drupal/core": "^10.3 || ^11" @@ -3342,8 +2921,8 @@ "type": "metapackage", "extra": { "drupal": { - "version": "5.1.6", - "datestamp": "1749676956", + "version": "5.1.0", + "datestamp": "1721677330", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3464,8 +3043,8 @@ "version": "1.0.2", "datestamp": "1695740655", "security-coverage": { - "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, @@ -3474,6 +3053,10 @@ "GPL-2.0-or-later" ], "authors": [ + { + "name": "dczepierga", + "homepage": "https://www.drupal.org/user/911466" + }, { "name": "hass", "homepage": "https://www.drupal.org/user/85918" @@ -3491,9 +3074,13 @@ "homepage": "https://www.drupal.org/user/1078742" }, { - "name": "magnus", + "name": "Magnus", "homepage": "https://www.drupal.org/user/73919" }, + { + "name": "mkesicki", + "homepage": "https://www.drupal.org/user/922884" + }, { "name": "nod_", "homepage": "https://www.drupal.org/user/598310" @@ -3507,7 +3094,7 @@ "homepage": "https://www.drupal.org/user/2793801" }, { - "name": "wim leers", + "name": "Wim Leers", "homepage": "https://www.drupal.org/user/99777" }, { @@ -3525,60 +3112,6 @@ "source": "https://git.drupalcode.org/project/ckeditor" } }, - { - "name": "drupal/ckeditor_iframe", - "version": "3.0.0-beta3", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/ckeditor_iframe.git", - "reference": "3.0.0-beta3" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/ckeditor_iframe-3.0.0-beta3.zip", - "reference": "3.0.0-beta3", - "shasum": "4df0f006a218c1f40c833a5afa30ee52321ed2e1" - }, - "require": { - "drupal/core": "^9 || ^10.3 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "3.0.0-beta3", - "datestamp": "1743012017", - "security-coverage": { - "status": "not-covered", - "message": "Beta releases are not covered by Drupal security advisories." - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "name": "Kevin Quillen (kevinquillen)", - "homepage": "https://www.drupal.org/u/kevinquillen", - "role": "Maintainer" - }, - { - "name": "Brian Osborne (bkosborne)", - "homepage": "https://www.drupal.org/u/bkosborne", - "role": "Maintainer" - } - ], - "description": "Adds the iFrame dialog plugin to CKEditor.", - "homepage": "http://drupal.org/project/ckeditor_iframe", - "keywords": [ - "Drupal" - ], - "support": { - "source": "https://git.drupalcode.org/project/ckeditor_iframe", - "issues": "https://drupal.org/project/issues/ckeditor_iframe" - } - }, { "name": "drupal/ckeditorheight", "version": "1.9.0", @@ -3729,7 +3262,7 @@ "homepage": "https://www.drupal.org/user/36762" }, { - "name": "stefanos.petrakis", + "name": "stefanos.petrakis@gmail.com", "homepage": "https://www.drupal.org/user/2573064" } ], @@ -3984,21 +3517,21 @@ }, { "name": "drupal/config_distro", - "version": "2.1.0-alpha1", + "version": "2.0.0-alpha2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_distro.git", - "reference": "2.1.0-alpha1" + "reference": "2.0.0-alpha2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_distro-2.1.0-alpha1.zip", - "reference": "2.1.0-alpha1", - "shasum": "913fa76468e19b730bd23955ef3640b3dab56481" + "url": "https://ftp.drupal.org/files/projects/config_distro-2.0.0-alpha2.zip", + "reference": "2.0.0-alpha2", + "shasum": "8341305e0eb86208fb71a351e8c922300141a804" }, "require": { "drupal/config_filter": "*", - "drupal/core": "^10.3 || ^11" + "drupal/core": "^9.3 || ^10" }, "require-dev": { "drupal/config_distro_filter": "*", @@ -4011,8 +3544,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.1.0-alpha1", - "datestamp": "1743102880", + "version": "2.0.0-alpha2", + "datestamp": "1691786887", "security-coverage": { "status": "not-covered", "message": "Alpha releases are not covered by Drupal security advisories." @@ -4059,17 +3592,17 @@ }, { "name": "drupal/config_distro_filter", - "version": "2.1.0-alpha1", + "version": "2.0.0-alpha2", "require": { "drupal/config_distro": "*", "drupal/config_filter": "*", - "drupal/core": "^10.3 || ^11" + "drupal/core": "^8.8 || ^9 || ^10" }, "type": "metapackage", "extra": { "drupal": { - "version": "2.1.0-alpha1", - "datestamp": "1743102880", + "version": "2.0.0-alpha2", + "datestamp": "1691786887", "security-coverage": { "status": "not-covered", "message": "Alpha releases are not covered by Drupal security advisories." @@ -4179,20 +3712,20 @@ }, { "name": "drupal/config_merge", - "version": "2.0.0-alpha2", + "version": "2.0.0-alpha1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_merge.git", - "reference": "2.0.0-alpha2" + "reference": "2.0.0-alpha1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_merge-2.0.0-alpha2.zip", - "reference": "2.0.0-alpha2", - "shasum": "a0183d548daafe52b2b271f3502766bb519f824f" + "url": "https://ftp.drupal.org/files/projects/config_merge-2.0.0-alpha1.zip", + "reference": "2.0.0-alpha1", + "shasum": "704f856a7e2f11006d0f74336f9260bbcb060cef" }, "require": { - "drupal/core": "^9.3 || ^10 || ^11", + "drupal/core": "^9.3 || ^10", "php": ">=8.0" }, "require-dev": { @@ -4201,8 +3734,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.0-alpha2", - "datestamp": "1743089777", + "version": "2.0.0-alpha1", + "datestamp": "1682377160", "security-coverage": { "status": "not-covered", "message": "Alpha releases are not covered by Drupal security advisories." @@ -4222,10 +3755,6 @@ "name": "bircher", "homepage": "https://www.drupal.org/user/1344166" }, - { - "name": "elkaro", - "homepage": "https://www.drupal.org/user/3577260" - }, { "name": "geek-merlin", "homepage": "https://www.drupal.org/user/229048" @@ -4234,6 +3763,10 @@ "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" @@ -4255,26 +3788,27 @@ }, { "name": "drupal/config_normalizer", - "version": "1.0.0-beta2", + "version": "1.0.0-beta1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_normalizer.git", - "reference": "8.x-1.0-beta2" + "reference": "8.x-1.0-beta1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_normalizer-8.x-1.0-beta2.zip", - "reference": "8.x-1.0-beta2", - "shasum": "98916cdca633176698b62236a6f7b2d5e0c12e45" + "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/core": "^8.8 || ^9 || ^10 || ^11" + "drupal/config_filter": "*", + "drupal/core": "^8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0-beta2", - "datestamp": "1743088690", + "version": "8.x-1.0-beta1", + "datestamp": "1683148813", "security-coverage": { "status": "not-covered", "message": "Beta releases are not covered by Drupal security advisories." @@ -4287,75 +3821,62 @@ ], "authors": [ { - "name": "Nedjo Rogers (nedjo)", - "homepage": "https://www.drupal.org/u/nedjo", - "role": "Original author" + "name": "a.dmitriiev", + "homepage": "https://www.drupal.org/user/3235287" }, { - "name": "Fabian Bircher (bircher)", - "homepage": "https://www.drupal.org/u/bircher", - "role": "Maintainer" + "name": "bircher", + "homepage": "https://www.drupal.org/user/1344166" }, { - "name": "Benjamin Melançon (mlncn)", - "homepage": "https://www.drupal.org/u/mlncn", - "role": "Maintainer" + "name": "geek-merlin", + "homepage": "https://www.drupal.org/user/229048" }, { - "name": "Joe Parsons (joegraduate)", - "homepage": "https://www.drupal.org/u/joegraduate", - "role": "Maintainer" + "name": "joegraduate", + "homepage": "https://www.drupal.org/user/789384" + }, + { + "name": "mlncn", + "homepage": "https://www.drupal.org/user/64383" }, { "name": "tadean", - "homepage": "https://www.drupal.org/u/tadean", - "role": "Maintainer" + "homepage": "https://www.drupal.org/user/3608919" }, { - "name": "Artem Dmitriiev (a.dmitriiev)", - "homepage": "https://www.drupal.org/u/a.dmitriiev", - "role": "Maintainer" - }, - { - "name": "Merlin Axel Rutz (geek-merlin)", - "homepage": "https://www.drupal.org/u/geek-merlin", - "role": "Maintainer" - }, - { - "name": "Campus Web Services The University of Arizona (uarizona)", - "homepage": "https://www.drupal.org/u/uarizona", - "role": "Maintainer" + "name": "uarizona", + "homepage": "https://www.drupal.org/user/3763238" } ], "description": "Normalizes configuration for comparison.", "homepage": "https://www.drupal.org/project/config_normalizer", "support": { - "source": "https://git.drupal.org/project/config_normalizer.git", - "issues": "https://www.drupal.org/project/issues/config_normalizer" + "source": "https://git.drupalcode.org/project/config_normalizer" } }, { "name": "drupal/config_perms", - "version": "2.3.0", + "version": "2.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_perms.git", - "reference": "8.x-2.3" + "reference": "8.x-2.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_perms-8.x-2.3.zip", - "reference": "8.x-2.3", - "shasum": "6ec87b91b7ff23a41c5ee266b507e882851b7828" + "url": "https://ftp.drupal.org/files/projects/config_perms-8.x-2.1.zip", + "reference": "8.x-2.1", + "shasum": "06bc0d6587fba76149b4de7ccc32f6c6b8bc382a" }, "require": { - "drupal/core": "^8 || ^9 || ^10 || ^11" + "drupal/core": "^8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.3", - "datestamp": "1746157140", + "version": "8.x-2.1", + "datestamp": "1685589568", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4375,20 +3896,20 @@ "name": "Docc", "homepage": "https://www.drupal.org/user/310132" }, - { - "name": "elkaro", - "homepage": "https://www.drupal.org/user/3577260" - }, { "name": "gnuget", "homepage": "https://www.drupal.org/user/992990" }, { - "name": "kristen pol", + "name": "Kristen Pol", "homepage": "https://www.drupal.org/user/8389" }, { - "name": "megakeegman", + "name": "lelkneralfaro", + "homepage": "https://www.drupal.org/user/3577260" + }, + { + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -4412,26 +3933,26 @@ }, { "name": "drupal/config_provider", - "version": "3.0.0-alpha2", + "version": "3.0.0-alpha1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_provider.git", - "reference": "3.0.0-alpha2" + "reference": "3.0.0-alpha1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_provider-3.0.0-alpha2.zip", - "reference": "3.0.0-alpha2", - "shasum": "b6f80827f37ba1170530907bdda584c27ffe981d" + "url": "https://ftp.drupal.org/files/projects/config_provider-3.0.0-alpha1.zip", + "reference": "3.0.0-alpha1", + "shasum": "0d0ba67f65d34fae7529d7a390f3d34d827f0595" }, "require": { - "drupal/core": "^9.3 || ^10 || ^11" + "drupal/core": "^9.3 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "3.0.0-alpha2", - "datestamp": "1743107961", + "version": "3.0.0-alpha1", + "datestamp": "1682387859", "security-coverage": { "status": "not-covered", "message": "Alpha releases are not covered by Drupal security advisories." @@ -4444,93 +3965,81 @@ ], "authors": [ { - "name": "Nedjo Rogers (nedjo)", - "homepage": "https://www.drupal.org/u/nedjo", - "role": "Original author" + "name": "a.dmitriiev", + "homepage": "https://www.drupal.org/user/3235287" }, { - "name": "Fabian Bircher (bircher)", - "homepage": "https://www.drupal.org/u/bircher", - "role": "Maintainer" + "name": "bircher", + "homepage": "https://www.drupal.org/user/1344166" }, { - "name": "Pieter Frenssen (pfrenssen)", - "homepage": "https://www.drupal.org/u/pfrenssen", - "role": "Maintainer" + "name": "geek-merlin", + "homepage": "https://www.drupal.org/user/229048" }, { - "name": "Keegan Rankin (megakeegman)", - "homepage": "https://www.drupal.org/u/megakeegman", - "role": "Maintainer" + "name": "gnuget", + "homepage": "https://www.drupal.org/user/992990" }, { - "name": "Benjamin Melançon (mlncn)", - "homepage": "https://www.drupal.org/u/mlncn", - "role": "Maintainer" + "name": "joegraduate", + "homepage": "https://www.drupal.org/user/789384" }, { - "name": "Joe Parsons (joegraduate)", - "homepage": "https://www.drupal.org/u/joegraduate", - "role": "Maintainer" + "name": "megakeegman", + "homepage": "https://www.drupal.org/user/3620027" + }, + { + "name": "mlncn", + "homepage": "https://www.drupal.org/user/64383" + }, + { + "name": "nedjo", + "homepage": "https://www.drupal.org/user/4481" + }, + { + "name": "pfrenssen", + "homepage": "https://www.drupal.org/user/382067" }, { "name": "tadean", - "homepage": "https://www.drupal.org/u/tadean", - "role": "Maintainer" + "homepage": "https://www.drupal.org/user/3608919" }, { - "name": "David Valdez (gnuget)", - "homepage": "https://www.drupal.org/u/gnuget", - "role": "Maintainer" - }, - { - "name": "Merlin Axel Rutz (geek-merlin)", - "homepage": "https://www.drupal.org/u/geek-merlin", - "role": "Maintainer" - }, - { - "name": "Artem Dmitriiev (a.dmitriiev)", - "homepage": "https://www.drupal.org/u/a.dmitriiev", - "role": "Maintainer" - }, - { - "name": "Campus Web Services The University of Arizona (uarizona)", - "homepage": "https://www.drupal.org/u/uarizona", - "role": "Maintainer" + "name": "uarizona", + "homepage": "https://www.drupal.org/user/3763238" } ], "description": "Enables provision of configuration by extensions.", "homepage": "https://www.drupal.org/project/config_provider", "support": { - "source": "https://git.drupal.org/project/config_provider.git", - "issues": "https://www.drupal.org/project/issues/config_provider" + "source": "https://git.drupalcode.org/project/config_provider" } }, { "name": "drupal/config_snapshot", - "version": "2.0.0", + "version": "2.0.0-alpha1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_snapshot.git", - "reference": "2.0.0" + "reference": "2.0.0-alpha1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_snapshot-2.0.0.zip", - "reference": "2.0.0", - "shasum": "183e6f293e7ef142290c5e69cbca986895e12a2d" + "url": "https://ftp.drupal.org/files/projects/config_snapshot-2.0.0-alpha1.zip", + "reference": "2.0.0-alpha1", + "shasum": "35cb1bb74f07c8973cee19eac71aa4124ea3dd0f" }, "require": { - "drupal/core": "^8 || ^9 || ^10 || ^11" + "drupal/core": "^8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.0", - "datestamp": "1736287398", + "version": "2.0.0-alpha1", + "datestamp": "1682448084", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Alpha releases are not covered by Drupal security advisories." } } }, @@ -4580,34 +4089,34 @@ }, { "name": "drupal/config_sync", - "version": "3.0.0-alpha4", + "version": "3.0.0-alpha3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_sync.git", - "reference": "3.0.0-alpha4" + "reference": "3.0.0-alpha3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_sync-3.0.0-alpha4.zip", - "reference": "3.0.0-alpha4", - "shasum": "d49536d18be2162b2069c50c444a6745d5c9e8d7" + "url": "https://ftp.drupal.org/files/projects/config_sync-3.0.0-alpha3.zip", + "reference": "3.0.0-alpha3", + "shasum": "8664153679b63fe1c0b84702374122a149fc3846" }, "require": { "drupal/config_distro": "^2.0.0-alpha2", "drupal/config_distro_filter": "*", - "drupal/config_filter": "^2.7", - "drupal/config_merge": "^2.0.0-alpha2", - "drupal/config_normalizer": "^1.0-beta2", - "drupal/config_provider": "^3.0.0-alpha2", - "drupal/config_snapshot": "^2.0", - "drupal/config_update": "^2.0.0-alpha4", - "drupal/core": "^9 || ^10 || ^11" + "drupal/config_filter": "^1.10||^2.4", + "drupal/config_merge": "^2.0.0-alpha1", + "drupal/config_normalizer": "^1.0-beta1", + "drupal/config_provider": "^3.0.0-alpha1", + "drupal/config_snapshot": "^2.0.0-alpha1", + "drupal/config_update": "^2.0.0-alpha2", + "drupal/core": "^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "3.0.0-alpha4", - "datestamp": "1743110767", + "version": "3.0.0-alpha3", + "datestamp": "1692125273", "security-coverage": { "status": "not-covered", "message": "Alpha releases are not covered by Drupal security advisories." @@ -4778,6 +4287,10 @@ "name": "mfb", "homepage": "https://www.drupal.org/user/12302" }, + { + "name": "pandaski", + "homepage": "https://www.drupal.org/user/1987218" + }, { "name": "volkerk", "homepage": "https://www.drupal.org/user/57527" @@ -4885,20 +4398,20 @@ }, { "name": "drupal/core", - "version": "10.5.1", + "version": "10.3.10", "source": { "type": "git", "url": "https://github.com/drupal/core.git", - "reference": "551442fec1db69cf6eedb1601a348d8a6268060f" + "reference": "3ebb71e9c4ef0c13f683353547551fca49f9a144" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core/zipball/551442fec1db69cf6eedb1601a348d8a6268060f", - "reference": "551442fec1db69cf6eedb1601a348d8a6268060f", + "url": "https://api.github.com/repos/drupal/core/zipball/3ebb71e9c4ef0c13f683353547551fca49f9a144", + "reference": "3ebb71e9c4ef0c13f683353547551fca49f9a144", "shasum": "" }, "require": { - "asm89/stack-cors": "^2.3", + "asm89/stack-cors": "^2.1", "composer-runtime-api": "^2.1", "composer/semver": "^3.3", "doctrine/annotations": "^1.14", @@ -4940,7 +4453,7 @@ "symfony/serializer": "^6.4", "symfony/validator": "^6.4", "symfony/yaml": "^6.4", - "twig/twig": "^3.15.0" + "twig/twig": "^3.14.2" }, "conflict": { "drush/drush": "<12.4.3" @@ -4978,29 +4491,29 @@ "extra": { "drupal-scaffold": { "file-mapping": { - "[web-root]/.htaccess": "assets/scaffold/files/htaccess", - "[web-root]/README.md": "assets/scaffold/files/drupal.README.md", - "[web-root]/index.php": "assets/scaffold/files/index.php", + "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig", + "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes", "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc", - "[web-root]/robots.txt": "assets/scaffold/files/robots.txt", - "[web-root]/update.php": "assets/scaffold/files/update.php", - "[web-root]/web.config": "assets/scaffold/files/web.config", - "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt", "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore", "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json", "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php", - "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt", - "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig", + "[web-root]/.htaccess": "assets/scaffold/files/htaccess", "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore", - "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt", - "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes", - "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt", - "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt", - "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php", + "[web-root]/index.php": "assets/scaffold/files/index.php", + "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt", + "[web-root]/README.md": "assets/scaffold/files/drupal.README.md", + "[web-root]/robots.txt": "assets/scaffold/files/robots.txt", + "[web-root]/update.php": "assets/scaffold/files/update.php", + "[web-root]/web.config": "assets/scaffold/files/web.config", + "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt", "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml", "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php", + "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php", "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml", - "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php" + "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php", + "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt", + "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt", + "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt" } } }, @@ -5043,22 +4556,22 @@ ], "description": "Drupal is an open source content management platform powering millions of websites and applications.", "support": { - "source": "https://github.com/drupal/core/tree/10.5.1" + "source": "https://github.com/drupal/core/tree/10.3.10" }, - "time": "2025-06-26T14:05:15+00:00" + "time": "2024-11-22T12:51:33+00:00" }, { "name": "drupal/core-composer-scaffold", - "version": "10.5.1", + "version": "10.3.10", "source": { "type": "git", "url": "https://github.com/drupal/core-composer-scaffold.git", - "reference": "db17b59620ce1c142a34dc017d9e696ce4771e55" + "reference": "f58ab5c0d02d275c5aa226c4505b457e41b161cc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/db17b59620ce1c142a34dc017d9e696ce4771e55", - "reference": "db17b59620ce1c142a34dc017d9e696ce4771e55", + "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/f58ab5c0d02d275c5aa226c4505b457e41b161cc", + "reference": "f58ab5c0d02d275c5aa226c4505b457e41b161cc", "shasum": "" }, "require": { @@ -5093,80 +4606,80 @@ "drupal" ], "support": { - "source": "https://github.com/drupal/core-composer-scaffold/tree/10.5.1" + "source": "https://github.com/drupal/core-composer-scaffold/tree/10.3.10" }, - "time": "2024-08-22T14:31:30+00:00" + "time": "2024-08-22T14:31:34+00:00" }, { "name": "drupal/core-recommended", - "version": "10.5.1", + "version": "10.3.10", "source": { "type": "git", "url": "https://github.com/drupal/core-recommended.git", - "reference": "60b76ba11c2ae9088283a1e6963b929ca976f4fc" + "reference": "1d739e569c9324bcac1ecc7be600d414386a399b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-recommended/zipball/60b76ba11c2ae9088283a1e6963b929ca976f4fc", - "reference": "60b76ba11c2ae9088283a1e6963b929ca976f4fc", + "url": "https://api.github.com/repos/drupal/core-recommended/zipball/1d739e569c9324bcac1ecc7be600d414386a399b", + "reference": "1d739e569c9324bcac1ecc7be600d414386a399b", "shasum": "" }, "require": { - "asm89/stack-cors": "~v2.3.0", - "composer/semver": "~3.4.3", - "doctrine/annotations": "~1.14.4", - "doctrine/deprecations": "~1.1.5", + "asm89/stack-cors": "~v2.2.0", + "composer/semver": "~3.4.0", + "doctrine/annotations": "~1.14.3", + "doctrine/deprecations": "~1.1.3", "doctrine/lexer": "~2.1.1", - "drupal/core": "10.5.1", - "egulias/email-validator": "~4.0.4", - "guzzlehttp/guzzle": "~7.9.3", - "guzzlehttp/promises": "~2.2.0", - "guzzlehttp/psr7": "~2.7.1", + "drupal/core": "10.3.10", + "egulias/email-validator": "~4.0.2", + "guzzlehttp/guzzle": "~7.8.1", + "guzzlehttp/promises": "~2.0.2", + "guzzlehttp/psr7": "~2.6.2", "masterminds/html5": "~2.9.0", - "mck89/peast": "~v1.17.0", + "mck89/peast": "~v1.16.2", "pear/archive_tar": "~1.5.0", "pear/console_getopt": "~v1.4.3", - "pear/pear-core-minimal": "~v1.10.16", + "pear/pear-core-minimal": "~v1.10.15", "pear/pear_exception": "~v1.0.2", "psr/cache": "~3.0.0", "psr/container": "~2.0.2", "psr/event-dispatcher": "~1.0.0", "psr/http-client": "~1.0.3", "psr/http-factory": "~1.1.0", - "psr/log": "~3.0.2", + "psr/log": "~3.0.0", "ralouphie/getallheaders": "~3.0.3", "sebastian/diff": "~4.0.6", - "symfony/console": "~v6.4.21", - "symfony/dependency-injection": "~v6.4.20", - "symfony/deprecation-contracts": "~v3.5.1", - "symfony/error-handler": "~v6.4.20", - "symfony/event-dispatcher": "~v6.4.13", - "symfony/event-dispatcher-contracts": "~v3.5.1", - "symfony/filesystem": "~v6.4.13", - "symfony/finder": "~v6.4.17", - "symfony/http-foundation": "~v6.4.21", - "symfony/http-kernel": "~v6.4.21", - "symfony/mailer": "~v6.4.21", - "symfony/mime": "~v6.4.21", - "symfony/polyfill-ctype": "~v1.31.0", - "symfony/polyfill-iconv": "~v1.31.0", - "symfony/polyfill-intl-grapheme": "~v1.31.0", - "symfony/polyfill-intl-idn": "~v1.31.0", - "symfony/polyfill-intl-normalizer": "~v1.31.0", - "symfony/polyfill-mbstring": "~v1.31.0", - "symfony/polyfill-php83": "~v1.31.0", - "symfony/process": "~v6.4.20", - "symfony/psr-http-message-bridge": "~v6.4.13", - "symfony/routing": "~v6.4.18", - "symfony/serializer": "~v6.4.21", - "symfony/service-contracts": "~v3.5.1", - "symfony/string": "~v6.4.21", - "symfony/translation-contracts": "~v3.5.1", - "symfony/validator": "~v6.4.21", - "symfony/var-dumper": "~v6.4.21", - "symfony/var-exporter": "~v6.4.21", - "symfony/yaml": "~v6.4.21", - "twig/twig": "~v3.20.0" + "symfony/console": "~v6.4.8", + "symfony/dependency-injection": "~v6.4.7", + "symfony/deprecation-contracts": "~v3.5.0", + "symfony/error-handler": "~v6.4.7", + "symfony/event-dispatcher": "~v6.4.7", + "symfony/event-dispatcher-contracts": "~v3.5.0", + "symfony/filesystem": "~v6.4.8", + "symfony/finder": "~v6.4.8", + "symfony/http-foundation": "~v6.4.7", + "symfony/http-kernel": "~v6.4.7", + "symfony/mailer": "~v6.4.7", + "symfony/mime": "~v6.4.7", + "symfony/polyfill-ctype": "~v1.29.0", + "symfony/polyfill-iconv": "~v1.29.0", + "symfony/polyfill-intl-grapheme": "~v1.29.0", + "symfony/polyfill-intl-idn": "~v1.29.0", + "symfony/polyfill-intl-normalizer": "~v1.29.0", + "symfony/polyfill-mbstring": "~v1.29.0", + "symfony/polyfill-php83": "~v1.29.0", + "symfony/process": "~v6.4.8", + "symfony/psr-http-message-bridge": "~v6.4.7", + "symfony/routing": "~v6.4.7", + "symfony/serializer": "~v6.4.7", + "symfony/service-contracts": "~v3.5.0", + "symfony/string": "~v6.4.8", + "symfony/translation-contracts": "~v3.5.0", + "symfony/validator": "~v6.4.7", + "symfony/var-dumper": "~v6.4.7", + "symfony/var-exporter": "~v6.4.7", + "symfony/yaml": "~v6.4.7", + "twig/twig": "~v3.14.2" }, "conflict": { "webflo/drupal-core-strict": "*" @@ -5178,9 +4691,9 @@ ], "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.", "support": { - "source": "https://github.com/drupal/core-recommended/tree/10.5.1" + "source": "https://github.com/drupal/core-recommended/tree/10.3.10" }, - "time": "2025-06-26T14:05:15+00:00" + "time": "2024-11-22T12:51:33+00:00" }, { "name": "drupal/crop", @@ -5241,27 +4754,27 @@ }, { "name": "drupal/cshs", - "version": "4.0.3", + "version": "4.0.2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/cshs.git", - "reference": "4.0.3" + "reference": "4.0.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/cshs-4.0.3.zip", - "reference": "4.0.3", - "shasum": "0e637ddae6b6217c6c7dca36c3fd232f25fb2495" + "url": "https://ftp.drupal.org/files/projects/cshs-4.0.2.zip", + "reference": "4.0.2", + "shasum": "dc936684e50770d1c4ca541eccffba7d348a4a1c" }, "require": { - "drupal/core": "^10.3 || ^11", + "drupal/core": "^9.2 || ^10", "php": ">=8.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "4.0.3", - "datestamp": "1732597582", + "version": "4.0.2", + "datestamp": "1710037257", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5307,27 +4820,27 @@ }, { "name": "drupal/csp", - "version": "1.40.0", + "version": "1.33.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/csp.git", - "reference": "8.x-1.40" + "reference": "8.x-1.33" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/csp-8.x-1.40.zip", - "reference": "8.x-1.40", - "shasum": "37f39e13f9afce4ac4a67c207ae0659b924c1e99" + "url": "https://ftp.drupal.org/files/projects/csp-8.x-1.33.zip", + "reference": "8.x-1.33", + "shasum": "c923468c3cf077bbc89967ee7fa6c6e48c7254df" }, "require": { - "drupal/core": "^10.1.3 || ^11", + "drupal/core": "~10.0.0 || ^10.1.3 || ^11", "ext-json": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.40", - "datestamp": "1741745877", + "version": "8.x-1.33", + "datestamp": "1721292907", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5356,26 +4869,26 @@ }, { "name": "drupal/ctools", - "version": "4.1.0", + "version": "3.15.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/ctools.git", - "reference": "4.1.0" + "reference": "8.x-3.15" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/ctools-4.1.0.zip", - "reference": "4.1.0", - "shasum": "69f5889cf557df9e55519390e6a95cfa31b67874" + "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.15.zip", + "reference": "8.x-3.15", + "shasum": "84e360763162bf97dfb99a21a65580e7ea504bc6" }, "require": { - "drupal/core": "^9.5 || ^10 || ^11" + "drupal/core": "^9.3 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "4.1.0", - "datestamp": "1718144949", + "version": "8.x-3.15", + "datestamp": "1718145169", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5509,41 +5022,33 @@ }, { "name": "drupal/dashboards", - "version": "2.1.10", + "version": "2.1.7", "source": { "type": "git", "url": "https://git.drupalcode.org/project/dashboards.git", - "reference": "2.1.10" + "reference": "2.1.7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/dashboards-2.1.10.zip", - "reference": "2.1.10", - "shasum": "5b2df04b0138ea0d6213bb2df1b6636de9dcf6c7" + "url": "https://ftp.drupal.org/files/projects/dashboards-2.1.7.zip", + "reference": "2.1.7", + "shasum": "e45de9cffd19640061ecad69adfa8450f0182ea5" }, "require": { - "drupal/core": "^9.4 || ^10 || ^11", + "drupal/core": "^9.4 || ^10", "laminas/laminas-feed": "^2.17" }, "require-dev": { - "drupal/layout_builder_restrictions": "*", "drupal/matomo": "*", "drupal/matomo_reporting_api": "*", "drupal/statistics": "*", "drupal/webform": "*" }, - "suggest": { - "drupal/layout_builder_restrictions": "Manage which fields & layouts are available in Layout Builder.", - "drupal/matomo": "Reports site visitor analytics to a Matomo instance.", - "drupal/matomo_reporting_api": "Allows to retrieve reports from the Matomo API.", - "drupal/statistics": "Logs how many times content is viewed.", - "drupal/webform": "Enables the creation of webforms and questionnaires." - }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.1.10", - "datestamp": "1737573144", + "version": "2.1.7", + "datestamp": "1710850211", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5556,12 +5061,8 @@ ], "authors": [ { - "name": "erik seifert", + "name": "Erik Seifert", "homepage": "https://www.drupal.org/user/161429" - }, - { - "name": "leymannx", - "homepage": "https://www.drupal.org/user/2482808" } ], "description": "Dashboards based on Layout Builder.", @@ -5757,17 +5258,17 @@ }, { "name": "drupal/diff", - "version": "1.9.0", + "version": "1.8.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/diff.git", - "reference": "8.x-1.9" + "reference": "8.x-1.8" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/diff-8.x-1.9.zip", - "reference": "8.x-1.9", - "shasum": "4ef0126e983e4935a41ad8131faa00a2e28bcec0" + "url": "https://ftp.drupal.org/files/projects/diff-8.x-1.8.zip", + "reference": "8.x-1.8", + "shasum": "a104bf731a282f06ff0d5a7fb861c01b5b933765" }, "require": { "drupal/core": "^10 || ^11", @@ -5775,7 +5276,7 @@ "php": "^8.1" }, "require-dev": { - "jangregor/phpstan-prophecy": "^1.0", + "jangregor/phpstan-prophecy": "dev-master", "mglaman/phpstan-drupal": "^1.2.10", "phpstan/extension-installer": "^1.2", "phpstan/phpstan": "^1.11", @@ -5787,8 +5288,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.9", - "datestamp": "1748990194", + "version": "8.x-1.8", + "datestamp": "1727892285", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5862,85 +5363,26 @@ "issues": "https://www.drupal.org/project/issues/diff" } }, - { - "name": "drupal/disclosure_menu", - "version": "2.1.8", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/disclosure_menu.git", - "reference": "2.1.8" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/disclosure_menu-2.1.8.zip", - "reference": "2.1.8", - "shasum": "0fec2fad954e5bfb6de1773fe44cf80d7ed03b77" - }, - "require": { - "drupal/core": "^9 || ^10 || ^11", - "drupal/token": "^1.1", - "drupal/twig_tweak": "^3.2" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.1.8", - "datestamp": "1736196062", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "name": "Jay Huskins (jayhuskins)", - "homepage": "https://www.drupal.org/u/jayhuskins", - "role": "Maintainer" - }, - { - "name": "jayhuskins", - "homepage": "https://www.drupal.org/user/3619432" - }, - { - "name": "sonfd", - "homepage": "https://www.drupal.org/user/2844573" - } - ], - "description": "Allows Drupal menus to be displayed as a dropdown menu with disclosure buttons.", - "homepage": "http://drupal.org/project/disclosure_menu", - "keywords": [ - "Drupal" - ], - "support": { - "source": "http://git.drupalcode.org/project/disclosure_menu", - "issues": "http://drupal.org/project/issues/disclosure_menu" - } - }, { "name": "drupal/drd_agent", - "version": "4.1.4", + "version": "4.1.2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drd_agent.git", - "reference": "4.1.4" + "reference": "4.1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drd_agent-4.1.4.zip", - "reference": "4.1.4", - "shasum": "79b23afa8e1547a1d4c2c0dfb79107939d95256d" + "url": "https://ftp.drupal.org/files/projects/drd_agent-4.1.2.zip", + "reference": "4.1.2", + "shasum": "e49c008c71ce0bf9bf0af8d714625be4853968b7" }, "require": { "drupal/core": "^10 || ^11", "php": ">=8.1" }, "require-dev": { - "drupal/hacked": "^2.0", + "drupal/hacked": "^2.0@beta", "drupal/job_scheduler": "^4.0", "drupal/monitoring": "^1.13", "drupal/security_review": "^3.0" @@ -5953,8 +5395,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "4.1.4", - "datestamp": "1748435997", + "version": "4.1.2", + "datestamp": "1710680502", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6042,11 +5484,11 @@ "homepage": "https://www.drupal.org/user/3514271" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -6078,48 +5520,51 @@ }, { "name": "drupal/drutopia_article", - "version": "dev-2.0.x", + "version": "2.0.0-rc2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_article.git", - "reference": "0c4d5f0f695914e154282fc4d6bb0d866675fb1a" + "reference": "2.0.0-rc2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/drutopia_article-2.0.0-rc2.zip", + "reference": "2.0.0-rc2", + "shasum": "e51b860d49240eba2bdeb696c7b1e068f5f0b2fe" }, "require": { "drupal/block_visibility_groups": "^2", - "drupal/config_actions": "^1.4", + "drupal/config_actions": "^1.1", "drupal/config_snapshot": "*", "drupal/core": "^9.4 || ^10", - "drupal/ctools": "^4.1", + "drupal/ctools": "^3.4", "drupal/drutopia_comment": "*", "drupal/drutopia_core": "*", "drupal/drutopia_people": "*", "drupal/drutopia_seo": "^2", "drupal/drutopia_site": "*", - "drupal/ds": "^3.28", + "drupal/ds": "^3.7", "drupal/entity_reference_revisions": "*", - "drupal/facets": "^3", - "drupal/field_group": "^3.6", + "drupal/facets": "^2", + "drupal/field_group": "^3.0", "drupal/focal_point": "*", "drupal/media_library_media_modify": "*", "drupal/media_responsive_thumbnail": "*", "drupal/metatag": "*", "drupal/paragraphs": "*", - "drupal/pathauto": "^1.13", + "drupal/pathauto": "^1.8", "drupal/rdf": "*", "drupal/search_api": "*", - "drupal/token": "^1.15" + "drupal/token": "^1.7" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-2.0.x": "2.0.x-dev" - }, "drupal": { - "version": "2.0.0-rc2+4-dev", - "datestamp": "1738966837", + "version": "2.0.0-rc2", + "datestamp": "1698093781", "security-coverage": { "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." + "message": "RC releases are not covered by Drupal security advisories." } } }, @@ -6137,11 +5582,11 @@ "homepage": "https://www.drupal.org/user/3514271" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -6165,46 +5610,49 @@ }, { "name": "drupal/drutopia_blog", - "version": "dev-2.0.x", + "version": "2.0.0-rc2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_blog.git", - "reference": "2a9b1a9c8fb87d799b118e95a22af9167bc5d5d2" + "reference": "2.0.0-rc2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/drutopia_blog-2.0.0-rc2.zip", + "reference": "2.0.0-rc2", + "shasum": "71720613f7a0b4f6437f4bf1fd29dc0cb210ed7a" }, "require": { "drupal/block_visibility_groups": "^2", - "drupal/config_actions": "^1.4", + "drupal/config_actions": "^1.1", "drupal/core": "^9.4 || ^10", - "drupal/ctools": "^4.1", + "drupal/ctools": "^3.4", "drupal/drutopia_comment": "*", "drupal/drutopia_core": "*", "drupal/drutopia_people": "*", "drupal/drutopia_seo": "^2", "drupal/drutopia_site": "*", - "drupal/ds": "^3.28", + "drupal/ds": "^3.7", "drupal/entity_reference_revisions": "*", - "drupal/facets": "^3", - "drupal/field_group": "^3.6", + "drupal/facets": "^2", + "drupal/field_group": "^3.0", "drupal/focal_point": "*", "drupal/media_library_media_modify": "*", "drupal/media_responsive_thumbnail": "*", "drupal/metatag": "*", "drupal/paragraphs": "*", - "drupal/pathauto": "^1.13", + "drupal/pathauto": "^1.8", "drupal/search_api": "*", - "drupal/token": "^1.15" + "drupal/token": "^1.7" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-2.0.x": "2.0.x-dev" - }, "drupal": { - "version": "2.0.0-rc2+4-dev", - "datestamp": "1738966933", + "version": "2.0.0-rc2", + "datestamp": "1698094057", "security-coverage": { "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." + "message": "RC releases are not covered by Drupal security advisories." } } }, @@ -6222,11 +5670,11 @@ "homepage": "https://www.drupal.org/user/3514271" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -6312,11 +5760,11 @@ "homepage": "https://www.drupal.org/user/3514271" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -6351,20 +5799,20 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_collection.git", - "reference": "6a56ad10454f362422cc232a4bfe0ddd32ae7586" + "reference": "6f25bea1f255a34322622ecf876637429f023c43" }, "require": { - "drupal/config_actions": "^1.4", + "drupal/config_actions": "^1.0", "drupal/core": "^8 || ^9 || ^10", - "drupal/ctools": "^4.1", + "drupal/ctools": "^3.0", "drupal/drutopia_article": "^2", "drupal/drutopia_blog": "^2", "drupal/drutopia_core": "*", "drupal/drutopia_people": "^2", "drupal/drutopia_seo": "^2", - "drupal/ds": "^3.28", + "drupal/ds": "^3.1", "drupal/entity_reference_revisions": "*", - "drupal/metatag": "^2.1", + "drupal/metatag": "^1.9", "drupal/paragraphs": "*" }, "type": "drupal-module", @@ -6374,7 +5822,7 @@ }, "drupal": { "version": "2.0.x-dev", - "datestamp": "1738965303", + "datestamp": "1694686396", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -6387,11 +5835,11 @@ ], "authors": [ { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -6457,11 +5905,11 @@ "homepage": "https://www.drupal.org/user/3514271" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -6496,34 +5944,34 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_core.git", - "reference": "ecbcab8ee9779dbcb8f86bd731192842e8da14e0" + "reference": "388e57165cc04e845f065a2865e72d04bfce2fc9" }, "require": { - "drupal/automated_crop": "^4.0", - "drupal/config_actions": "^1.4", - "drupal/config_perms": "^2.1", + "drupal/automated_crop": "^3.0", + "drupal/config_actions": "^1.3", + "drupal/config_perms": "^2.0", "drupal/core": "^9.4 || ^10", "drupal/crop": "^2.1", - "drupal/ds": "^3.28", + "drupal/ds": "^3.12", "drupal/exclude_node_title": "*", - "drupal/facets": "^3", - "drupal/faqfield": "^7.1", - "drupal/focal_point": "^2.1", - "drupal/image_field_to_media": "^3.0", + "drupal/facets": "^2", + "drupal/faqfield": "^7.0", + "drupal/focal_point": "^2.0", + "drupal/image_field_to_media": "^2.0", "drupal/image_widget_crop": "^2", - "drupal/media_contextual_crop": "^2.1", - "drupal/media_contextual_crop_field_formatter": "^2.0", - "drupal/media_contextual_crop_fp_adapter": "^2.0", - "drupal/media_contextual_crop_iwc_adapter": "^2.0", - "drupal/media_library_media_modify": "^1.0", - "drupal/media_responsive_thumbnail": "^1.5", - "drupal/metatag": "^2.1", - "drupal/paragraphs": "^1.18", + "drupal/media_contextual_crop": "1.2.x-dev@dev", + "drupal/media_contextual_crop_field_formatter": "^1.3", + "drupal/media_contextual_crop_fp_adapter": "^1", + "drupal/media_contextual_crop_iwc_adapter": "^1", + "drupal/media_library_media_modify": "^1.0@beta", + "drupal/media_responsive_thumbnail": "^1", + "drupal/metatag": "^1.16", + "drupal/paragraphs": "^1.12", "drupal/pathauto": "*", "drupal/rdf": "*", - "drupal/search_api": "^1.37", + "drupal/search_api": "^1.19", "drupal/search_api_db": "*", - "drupal/video_embed_field": "^2.5" + "drupal/video_embed_field": "^2.4" }, "type": "drupal-module", "extra": { @@ -6532,7 +5980,7 @@ }, "drupal": { "version": "2.0.x-dev", - "datestamp": "1738964608", + "datestamp": "1732240105", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -6596,27 +6044,27 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_event.git", - "reference": "493e86fe85f947aca945fe8e91cda4e781bb9513" + "reference": "049ebe8b42a04481d637ec7bb30194b5af9c58e5" }, "require": { "drupal/block_visibility_groups": "^2", - "drupal/config_actions": "^1.4", + "drupal/config_actions": "^1.1", "drupal/core": "^9.4 || ^10", - "drupal/ctools": "^4.1", + "drupal/ctools": "^3.4", "drupal/drutopia_core": "*", "drupal/drutopia_seo": "^2", - "drupal/ds": "^3.28", + "drupal/ds": "^3.7", "drupal/entity_reference_revisions": "*", - "drupal/facets": "^3", + "drupal/facets": "^2", "drupal/field_group": "*", "drupal/focal_point": "*", "drupal/media_library_media_modify": "*", "drupal/media_responsive_thumbnail": "*", "drupal/metatag": "*", "drupal/paragraphs": "*", - "drupal/pathauto": "^1.13", + "drupal/pathauto": "^1.8", "drupal/search_api": "*", - "drupal/token": "^1.15" + "drupal/token": "^1.7" }, "type": "drupal-module", "extra": { @@ -6625,7 +6073,7 @@ }, "drupal": { "version": "2.0.x-dev", - "datestamp": "1738966631", + "datestamp": "1701465986", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -6646,11 +6094,11 @@ "homepage": "https://www.drupal.org/user/3514271" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -6685,10 +6133,10 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_group.git", - "reference": "f744305a5f93fa85eab281f7e001f84fe6d1cb35" + "reference": "13c6e8b04b29b594562a21690047342ce386f64f" }, "require": { - "drupal/address": "^2.0", + "drupal/address": "^1.8", "drupal/config_actions": "*", "drupal/config_perms": "*", "drupal/core": "^9.4 || ^10", @@ -6699,7 +6147,7 @@ "drupal/gnode": "*", "drupal/group": "^3", "drupal/paragraphs": "*", - "drupal/pathauto": "^1.13" + "drupal/pathauto": "^1.8" }, "type": "drupal-module", "extra": { @@ -6708,7 +6156,7 @@ }, "drupal": { "version": "2.0.x-dev", - "datestamp": "1738967926", + "datestamp": "1694685946", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -6729,21 +6177,29 @@ "homepage": "https://www.drupal.org/user/3514271" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { "name": "mlncn", "homepage": "https://www.drupal.org/user/64383" }, + { + "name": "nedjo", + "homepage": "https://www.drupal.org/user/4481" + }, { "name": "ronaldmulero", "homepage": "https://www.drupal.org/user/241652" }, + { + "name": "rosemarymann", + "homepage": "https://www.drupal.org/user/837536" + }, { "name": "wolcen", "homepage": "https://www.drupal.org/user/3099655" @@ -6768,23 +6224,23 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_landing_page.git", - "reference": "6c9fed4cbb476a99e1536aaee94dc8182c82e387" + "reference": "fa3e5874142fffdd757aca5665e5414cf07e416c" }, "require": { - "cweagans/composer-patches": "^1", - "drupal/config_actions": "^1", + "cweagans/composer-patches": "^1.5.0", + "drupal/config_actions": "^1.1", "drupal/config_snapshot": "*", "drupal/core": "^9.4 || ^10", - "drupal/ctools": "^4", + "drupal/ctools": "^3.4", "drupal/drutopia_core": "*", "drupal/drutopia_seo": "^2", - "drupal/ds": "^3", + "drupal/ds": "^3.7", "drupal/entity_reference_revisions": "*", - "drupal/exclude_node_title": "^1", + "drupal/exclude_node_title": "^1.0-beta1", "drupal/metatag": "*", "drupal/paragraphs": "*", - "drupal/pathauto": "^1", - "drupal/token": "^1" + "drupal/pathauto": "^1.8", + "drupal/token": "^1.7" }, "type": "drupal-module", "extra": { @@ -6793,7 +6249,7 @@ }, "drupal": { "version": "2.0.x-dev", - "datestamp": "1738971149", + "datestamp": "1701465249", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -6814,11 +6270,11 @@ "homepage": "https://www.drupal.org/user/3514271" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -6847,111 +6303,27 @@ "issues": "https://www.drupal.org/project/issues/drutopia_landing_page" } }, - { - "name": "drupal/drutopia_organization", - "version": "dev-2.0.x", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/drutopia_organization.git", - "reference": "28ddc437632547dfcb991cf3b639510951bf9949" - }, - "require": { - "drupal/block_visibility_groups": "*", - "drupal/config_actions": "^1", - "drupal/config_snapshot": "*", - "drupal/core": "^8.9 || ^9 || ^10", - "drupal/ctools": "*", - "drupal/drutopia_core": "^2", - "drupal/drutopia_event": "*", - "drupal/drutopia_seo": "^2", - "drupal/ds": "^3", - "drupal/entity_reference_revisions": "*", - "drupal/facets": "*", - "drupal/field_group": "^3", - "drupal/focal_point": "*", - "drupal/ief_complex_open": "^1", - "drupal/inline_entity_form": "^3.0@RC", - "drupal/metatag": "*", - "drupal/paragraphs": "^1", - "drupal/pathauto": "^1", - "drupal/search_api": "*" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-2.0.x": "2.0.x-dev" - }, - "drupal": { - "version": "2.0.x-dev", - "datestamp": "1738968329", - "security-coverage": { - "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "name": "dinarcon", - "homepage": "https://www.drupal.org/user/909522" - }, - { - "name": "elkaro", - "homepage": "https://www.drupal.org/user/3577260" - }, - { - "name": "megakeegman", - "homepage": "https://www.drupal.org/user/3620027" - }, - { - "name": "mlncn", - "homepage": "https://www.drupal.org/user/64383" - }, - { - "name": "wolcen", - "homepage": "https://www.drupal.org/user/3099655" - } - ], - "description": "Drutopia Organization provides an Organization content type for showing visitors information about organizations (groups, nonprofits, businesses) that are part of the site and can be associated with blogs, resources, events, etc.", - "homepage": "https://www.drupal.org/project/drutopia_organization", - "keywords": [ - "business", - "content", - "drutopia", - "group", - "nonprofit", - "organization" - ], - "support": { - "source": "https://git.drupalcode.org/project/drutopia_organization/-/tree/2.0.x", - "issues": "https://www.drupal.org/project/issues/drutopia_organization" - } - }, { "name": "drupal/drutopia_page", "version": "dev-2.0.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_page.git", - "reference": "86d7bbe6241184a5b820bbca2cc706defa4da033" + "reference": "ac4fece72920bfb181c50fb4c9bbcb35849d4408" }, "require": { - "drupal/config_actions": "^1.4", + "drupal/config_actions": "^1.1", "drupal/core": "^8.9 || ^9 || ^10", - "drupal/ctools": "^4.1", + "drupal/ctools": "^3.4", "drupal/drutopia_core": "*", "drupal/drutopia_seo": "^2", - "drupal/ds": "^3.28", + "drupal/ds": "^3.7", "drupal/entity_reference_revisions": "*", "drupal/metatag": "*", "drupal/paragraphs": "*", - "drupal/pathauto": "^1.13", + "drupal/pathauto": "^1.8", "drupal/rdf": "*", - "drupal/token": "^1.15" + "drupal/token": "^1.7" }, "type": "drupal-module", "extra": { @@ -6960,7 +6332,7 @@ }, "drupal": { "version": "2.0.x-dev", - "datestamp": "1738965862", + "datestamp": "1701465224", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -6981,11 +6353,11 @@ "homepage": "https://www.drupal.org/user/3514271" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -7019,16 +6391,16 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_paragraph_title.git", - "reference": "d74353db8e3c92e9fb4a469e86b9c979d48f1297" + "reference": "8bd77a9b1bce1ea44201d4b3ae0252f81601486a" }, "require": { - "drupal/allowed_formats": "^3", + "drupal/allowed_formats": "^2", "drupal/core": "^8.8.3 || ^9 || ^10", "drupal/drutopia_core": "^1 || ^2", "drupal/entity_reference_revisions": "*", "drupal/minimalhtml": "^2", "drupal/minimalhtmltitle": "*", - "drupal/paragraphs": "^1", + "drupal/paragraphs": "^1.15", "drupal/ui_patterns": "*", "drupal/ui_patterns_ds": "*", "drupal/ui_patterns_layouts": "*", @@ -7040,8 +6412,8 @@ "dev-1.0.x": "1.0.x-dev" }, "drupal": { - "version": "1.0.0+9-dev", - "datestamp": "1738968607", + "version": "1.0.0+8-dev", + "datestamp": "1688129764", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -7054,11 +6426,11 @@ ], "authors": [ { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -7089,21 +6461,21 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_people.git", - "reference": "338484dc18c27ddc3cdfc0adbe7af2532fef6dc4" + "reference": "60aa239bf374421011a88e0adfdf0e23e1e88453" }, "require": { - "drupal/config_actions": "^1", + "drupal/config_actions": "^1.1", "drupal/core": "^8.9 || ^9 || ^10", "drupal/ctools": "*", "drupal/drutopia_core": "^2", "drupal/drutopia_seo": "^2", - "drupal/ds": "^3", + "drupal/ds": "^3.7", "drupal/entity_reference_revisions": "*", - "drupal/field_group": "^3", + "drupal/field_group": "^3.0", "drupal/focal_point": "*", "drupal/metatag": "*", - "drupal/paragraphs": "^1", - "drupal/pathauto": "^1", + "drupal/paragraphs": "^1.12", + "drupal/pathauto": "^1.8", "drupal/search_api": "*", "drupal/views_plain": "^1" }, @@ -7114,7 +6486,7 @@ }, "drupal": { "version": "2.0.x-dev", - "datestamp": "1738968707", + "datestamp": "1701465205", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -7135,11 +6507,11 @@ "homepage": "https://www.drupal.org/user/3514271" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -7216,11 +6588,11 @@ "homepage": "https://www.drupal.org/user/3514271" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -7255,30 +6627,28 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_resource.git", - "reference": "0907b1f514b7361c78085bfefc1ce0ed4d83c062" + "reference": "123b61f62d8368e914b7371dd882bfe9b37212b5" }, "require": { "drupal/block_visibility_groups": "^2", - "drupal/config_actions": "^1.4", + "drupal/config_actions": "^1.1", "drupal/core": "^9.4 || ^10", - "drupal/ctools": "^4.1", + "drupal/ctools": "^3.4", "drupal/drutopia_core": "*", "drupal/drutopia_seo": "^2", - "drupal/ds": "^3.28", + "drupal/ds": "^3.7", "drupal/entity_reference_revisions": "*", - "drupal/facets": "^3", - "drupal/field_group": "^3.6", + "drupal/facets": "^2", + "drupal/field_group": "^3.0", "drupal/focal_point": "*", "drupal/media_library_media_modify": "*", "drupal/media_responsive_thumbnail": "*", "drupal/metatag": "*", "drupal/paragraphs": "*", - "drupal/pathauto": "^1.13", - "drupal/rabbit_hole": "*", - "drupal/rh_node": "*", + "drupal/pathauto": "^1.8", "drupal/search_api": "*", - "drupal/token": "^1.15", - "drupal/video_embed_field": "^2.5" + "drupal/token": "^1.7", + "drupal/video_embed_field": "^2.4" }, "type": "drupal-module", "extra": { @@ -7287,7 +6657,7 @@ }, "drupal": { "version": "2.0.x-dev", - "datestamp": "1738965704", + "datestamp": "1701465181", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -7308,11 +6678,11 @@ "homepage": "https://www.drupal.org/user/3514271" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -7430,14 +6800,14 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_seo.git", - "reference": "e92b8ff100dd06b1eb1cf88a4761416f26381dc8" + "reference": "b7d254541bf37c06e973250476ef40523d8b18f7" }, "require": { - "drupal/config_actions": "^1.4", + "drupal/config_actions": "^1.1", "drupal/core": "^8.9 || ^9 || ^10", "drupal/drutopia_core": "*", - "drupal/metatag": "^2.1", - "drupal/redirect": "^1.11", + "drupal/metatag": "^1.13", + "drupal/redirect": "^1.6", "drupal/redirect_404": "*" }, "type": "drupal-module", @@ -7447,7 +6817,7 @@ }, "drupal": { "version": "2.0.x-dev", - "datestamp": "1738965074", + "datestamp": "1697826547", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -7468,11 +6838,11 @@ "homepage": "https://www.drupal.org/user/3514271" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -7510,22 +6880,22 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_site.git", - "reference": "da5e9dfb288a0ae17b424dfe1c704fd521dd556a" + "reference": "fcd4dc0899be9c4929f75a63a3d6982ba493e2f8" }, "require": { - "drupal/admin_toolbar": "^3", + "drupal/admin_toolbar": "^3.0", "drupal/admin_toolbar-admin_toolbar_search": "*", "drupal/admin_toolbar_tools": "*", - "drupal/autosave_form": "^1", - "drupal/config_actions": "^1", + "drupal/autosave_form": "1.x-dev", + "drupal/config_actions": "^1.1", "drupal/config_snapshot": "*", "drupal/core": "^9.4 || ^10", "drupal/drutopia_core": "^2", "drupal/ds": "*", "drupal/entity_reference_revisions": "*", - "drupal/menu_admin_per_menu": "^1", + "drupal/menu_admin_per_menu": "^1.1", "drupal/paragraphs": "*", - "drupal/role_delegation": "^1", + "drupal/role_delegation": "^1.1", "drupal/workflow_buttons": "^1", "drupal/workflow_buttons_trash": "*", "drupal/wysiwyg_linebreaks": "^2" @@ -7537,11 +6907,16 @@ }, "drupal": { "version": "2.0.x-dev", - "datestamp": "1738969316", + "datestamp": "1723232347", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." } + }, + "patches": { + "drupal/autosave_form": { + "PHP 8.2 deprecation issue with AutosaveFormBuilder": "https://www.drupal.org/files/issues/2023-04-20/autosave_form-dynamic-property-deprecation.patch" + } } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -7558,11 +6933,11 @@ "homepage": "https://www.drupal.org/user/3514271" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -7596,11 +6971,11 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_social.git", - "reference": "0922fd6688d5b49903c30bb626d03c0df36d65c8" + "reference": "b0af0f7828df04aadc2f4b897793a170e55d09d7" }, "require": { "drupal/core": "^8.9 || ^9 || ^10", - "drupal/social_media_links": "^2" + "drupal/social_media_links": "^2.6" }, "type": "drupal-module", "extra": { @@ -7609,7 +6984,7 @@ }, "drupal": { "version": "2.0.x-dev", - "datestamp": "1738969425", + "datestamp": "1687306332", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -7630,21 +7005,29 @@ "homepage": "https://www.drupal.org/user/3514271" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { "name": "mlncn", "homepage": "https://www.drupal.org/user/64383" }, + { + "name": "nedjo", + "homepage": "https://www.drupal.org/user/4481" + }, { "name": "ronaldmulero", "homepage": "https://www.drupal.org/user/241652" }, + { + "name": "rosemarymann", + "homepage": "https://www.drupal.org/user/837536" + }, { "name": "wolcen", "homepage": "https://www.drupal.org/user/3099655" @@ -7662,7 +7045,7 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_storyline.git", - "reference": "bf79a2124dd2b0429403e22f2abae55cbd4b0224" + "reference": "fb32c3b3f2c3007dcb28bf55e9a0e72299e4b77a" }, "require": { "drupal/config_actions": "*", @@ -7670,7 +7053,7 @@ "drupal/drutopia_core": "^2", "drupal/drutopia_page": "^2", "drupal/entity_reference_revisions": "*", - "drupal/field_group": "^3", + "drupal/field_group": "^3.0", "drupal/paragraphs": "*" }, "require-dev": { @@ -7684,7 +7067,7 @@ }, "drupal": { "version": "2.0.x-dev", - "datestamp": "1738969481", + "datestamp": "1694684949", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -7705,21 +7088,29 @@ "homepage": "https://www.drupal.org/user/3514271" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { "name": "mlncn", "homepage": "https://www.drupal.org/user/64383" }, + { + "name": "nedjo", + "homepage": "https://www.drupal.org/user/4481" + }, { "name": "ronaldmulero", "homepage": "https://www.drupal.org/user/241652" }, + { + "name": "rosemarymann", + "homepage": "https://www.drupal.org/user/837536" + }, { "name": "wolcen", "homepage": "https://www.drupal.org/user/3099655" @@ -7821,17 +7212,17 @@ }, { "name": "drupal/ds", - "version": "3.30.0", + "version": "3.24.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/ds.git", - "reference": "8.x-3.30" + "reference": "8.x-3.24" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/ds-8.x-3.30.zip", - "reference": "8.x-3.30", - "shasum": "9022852edfbb540726338b018915c4d7fedfd989" + "url": "https://ftp.drupal.org/files/projects/ds-8.x-3.24.zip", + "reference": "8.x-3.24", + "shasum": "5b575bc231cd627a33f201daaa6b1a3a70d28e84" }, "require": { "drupal/core": "^10.2 || ^11" @@ -7843,8 +7234,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.30", - "datestamp": "1746467919", + "version": "8.x-3.24", + "datestamp": "1726653898", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7891,17 +7282,17 @@ }, { "name": "drupal/dynamic_entity_reference", - "version": "3.2.1", + "version": "3.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/dynamic_entity_reference.git", - "reference": "3.2.1" + "reference": "3.2.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/dynamic_entity_reference-3.2.1.zip", - "reference": "3.2.1", - "shasum": "051c565f6580f512cbc7ddc3f49fdd6ba8d406af" + "url": "https://ftp.drupal.org/files/projects/dynamic_entity_reference-3.2.0.zip", + "reference": "3.2.0", + "shasum": "a265f7f0723fb085bd729e7624d644475900cf94" }, "require": { "drupal/core": "^10 || ^11", @@ -7916,8 +7307,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "3.2.1", - "datestamp": "1740521060", + "version": "3.2.0", + "datestamp": "1706486865", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -7954,17 +7345,17 @@ }, { "name": "drupal/easy_breadcrumb", - "version": "2.0.9", + "version": "2.0.8", "source": { "type": "git", "url": "https://git.drupalcode.org/project/easy_breadcrumb.git", - "reference": "2.0.9" + "reference": "2.0.8" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/easy_breadcrumb-2.0.9.zip", - "reference": "2.0.9", - "shasum": "9e7c33e2ec0637d37d509776795a476f2f2d9bb8" + "url": "https://ftp.drupal.org/files/projects/easy_breadcrumb-2.0.8.zip", + "reference": "2.0.8", + "shasum": "49bfd9b8b0ec664963d05e360449876745cf2868" }, "require": { "drupal/core": "^9.2 || ^10 || ^11" @@ -7972,8 +7363,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.9", - "datestamp": "1732752214", + "version": "2.0.8", + "datestamp": "1723545040", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8049,17 +7440,17 @@ }, { "name": "drupal/eca", - "version": "1.1.13", + "version": "1.1.9", "source": { "type": "git", "url": "https://git.drupalcode.org/project/eca.git", - "reference": "1.1.13" + "reference": "1.1.9" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/eca-1.1.13.zip", - "reference": "1.1.13", - "shasum": "b7243501ab454dd81085c82e9efe01def7c66ed4" + "url": "https://ftp.drupal.org/files/projects/eca-1.1.9.zip", + "reference": "1.1.9", + "shasum": "af6f92db6c96d5fae986284596789a9031c1476c" }, "require": { "dragonmantank/cron-expression": "^3.1", @@ -8084,8 +7475,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "1.1.13", - "datestamp": "1748859330", + "version": "1.1.9", + "datestamp": "1723822366", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8170,107 +7561,22 @@ "issues": "https://drupal.org/project/issues/eca_context" } }, - { - "name": "drupal/eca_modeller_bpmn", - "version": "1.1.13", - "require": { - "drupal/core": "^9 || ^10", - "drupal/eca": "^1", - "drupal/eca_ui": "*" - }, - "type": "metapackage", - "extra": { - "drupal": { - "version": "1.1.13", - "datestamp": "1748859330", - "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": "boromino", - "homepage": "https://www.drupal.org/user/859722" - }, - { - "name": "danielspeicher", - "homepage": "https://www.drupal.org/user/3621778" - }, - { - "name": "jurgenhaas", - "homepage": "https://www.drupal.org/user/168924" - } - ], - "description": "Common functionality for all BPMN based modeller implementations.", - "homepage": "https://www.drupal.org/project/eca", - "support": { - "source": "https://git.drupalcode.org/project/eca" - } - }, - { - "name": "drupal/eca_ui", - "version": "2.1.11", - "require": { - "drupal/core": "^10.3 || ^11", - "drupal/eca": "*" - }, - "type": "metapackage", - "extra": { - "drupal": { - "version": "2.1.11", - "datestamp": "1753534704", - "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": "boromino", - "homepage": "https://www.drupal.org/user/859722" - }, - { - "name": "danielspeicher", - "homepage": "https://www.drupal.org/user/3621778" - }, - { - "name": "jurgenhaas", - "homepage": "https://www.drupal.org/user/168924" - } - ], - "description": "Provides a user interface for managing ECA models.", - "homepage": "https://www.drupal.org/project/eca", - "support": { - "source": "https://git.drupalcode.org/project/eca" - } - }, { "name": "drupal/editor_advanced_link", - "version": "2.3.1", + "version": "2.2.6", "source": { "type": "git", "url": "https://git.drupalcode.org/project/editor_advanced_link.git", - "reference": "2.3.1" + "reference": "2.2.6" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/editor_advanced_link-2.3.1.zip", - "reference": "2.3.1", - "shasum": "5ceb0eb21a4015389cfe77fff9e7c3d53ef41667" + "url": "https://ftp.drupal.org/files/projects/editor_advanced_link-2.2.6.zip", + "reference": "2.2.6", + "shasum": "f6d7c437900f288b1e735b4faf2decc99bdd30e8" }, "require": { - "drupal/core": "^10.5 || ^11.2" + "drupal/core": "^10.2 || ^11.0" }, "require-dev": { "drupal/ckeditor": "*", @@ -8279,8 +7585,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.3.1", - "datestamp": "1751979921", + "version": "2.2.6", + "datestamp": "1723183019", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8293,11 +7599,11 @@ ], "authors": [ { - "name": "duaelfr", + "name": "DuaelFr", "homepage": "https://www.drupal.org/user/931394" }, { - "name": "vladimiraus", + "name": "VladimirAus", "homepage": "https://www.drupal.org/user/673120" } ], @@ -8309,17 +7615,17 @@ }, { "name": "drupal/editoria11y", - "version": "2.2.13", + "version": "2.1.21", "source": { "type": "git", "url": "https://git.drupalcode.org/project/editoria11y.git", - "reference": "2.2.13" + "reference": "2.1.21" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/editoria11y-2.2.13.zip", - "reference": "2.2.13", - "shasum": "75c337db893c935d60935bcdf03ae40c186fbba6" + "url": "https://ftp.drupal.org/files/projects/editoria11y-2.1.21.zip", + "reference": "2.1.21", + "shasum": "6ec1bb5cfa15408e3372d7e0d0a1355030a9f20b" }, "require": { "drupal/core": "^9 || ^10 || ^11" @@ -8330,8 +7636,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.2.13", - "datestamp": "1752844518", + "version": "2.1.21", + "datestamp": "1731602531", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8393,17 +7699,17 @@ }, { "name": "drupal/entity", - "version": "1.6.0", + "version": "1.5.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/entity.git", - "reference": "8.x-1.6" + "reference": "8.x-1.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.6.zip", - "reference": "8.x-1.6", - "shasum": "dfb214fd45bd6ad79604d23a39a96b3d4c38f8e1" + "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.5.zip", + "reference": "8.x-1.5", + "shasum": "86c0b75c173144aaedde3e3258dc0d3ce11d1a22" }, "require": { "drupal/core": "^10.1 || ^11" @@ -8411,8 +7717,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.6", - "datestamp": "1740006812", + "version": "8.x-1.5", + "datestamp": "1723380062", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8449,7 +7755,7 @@ "homepage": "https://www.drupal.org/user/2416470" }, { - "name": "tr", + "name": "TR", "homepage": "https://www.drupal.org/user/202830" } ], @@ -8462,30 +7768,29 @@ }, { "name": "drupal/entity_reference_override", - "version": "2.0.0-beta4", + "version": "2.0.0-beta2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/entity_reference_override.git", - "reference": "2.0.0-beta4" + "reference": "2.0.0-beta2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/entity_reference_override-2.0.0-beta4.zip", - "reference": "2.0.0-beta4", - "shasum": "14a223de91d34bfdc52f0ad73f84825c47e2a2e9" + "url": "https://ftp.drupal.org/files/projects/entity_reference_override-2.0.0-beta2.zip", + "reference": "2.0.0-beta2", + "shasum": "8df72b040baee530fbf2186c8007c12b19f1286f" }, "require": { - "drupal/core": "^10.1 || ^11" + "drupal/core": "^8 || ^9 || ^10" }, "require-dev": { - "drupal/entity_browser": "*", - "drupal/entity_reference_revisions": "*" + "drupal/entity_browser": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.0-beta4", - "datestamp": "1744343662", + "version": "2.0.0-beta2", + "datestamp": "1689262248", "security-coverage": { "status": "not-covered", "message": "Beta releases are not covered by Drupal security advisories." @@ -8494,12 +7799,12 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { - "name": "alexpott", - "homepage": "https://www.drupal.org/user/157725" + "name": "See contributors", + "homepage": "https://www.drupal.org/node/2809033/committers" }, { "name": "dawehner", @@ -8510,7 +7815,7 @@ "homepage": "https://www.drupal.org/user/16496" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { @@ -8522,11 +7827,11 @@ "homepage": "https://www.drupal.org/user/51132" } ], - "description": "Entity reference with overridable title", + "description": "Display referenced entities with optional field overrides.", "homepage": "https://www.drupal.org/project/entity_reference_override", "support": { "source": "https://git.drupalcode.org/project/entity_reference_override", - "error": "funding.opencollective : should be an array, string given" + "issues": "https://www.drupal.org/project/issues/entity_reference_override" } }, { @@ -8650,30 +7955,26 @@ }, { "name": "drupal/environment_indicator", - "version": "4.0.25", + "version": "4.0.19", "source": { "type": "git", "url": "https://git.drupalcode.org/project/environment_indicator.git", - "reference": "4.0.25" + "reference": "4.0.19" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/environment_indicator-4.0.25.zip", - "reference": "4.0.25", - "shasum": "1bb58f759644efea79a44de2af5986eee9c1966e" + "url": "https://ftp.drupal.org/files/projects/environment_indicator-4.0.19.zip", + "reference": "4.0.19", + "shasum": "4801e2969ecfc33d96defcaa34a34ac8faae4019" }, "require": { "drupal/core": "^9.3 || ^10 || ^11" }, - "require-dev": { - "drupal/gin": "^4.0", - "drupal/gin_toolbar": "^2.0" - }, "type": "drupal-module", "extra": { "drupal": { - "version": "4.0.25", - "datestamp": "1753296518", + "version": "4.0.19", + "datestamp": "1721460952", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8686,52 +7987,43 @@ ], "authors": [ { - "name": "Tom Kirkpatrick (mrfelton)", - "homepage": "https://www.drupal.org/u/mrfelton", - "role": "Original author" + "name": "Mateu Aguiló Bosch", + "homepage": "https://www.drupal.org/user/550110", + "email": "mateu@mateuaguilo.com" }, { - "name": "Mateu Aguiló Bosch (e0ipso)", - "homepage": "https://www.drupal.org/u/e0ipso", - "email": "mateu@mateuaguilo.com", - "role": "Maintainer" + "name": "Ignacio Sánchez", + "homepage": "https://www.drupal.org/user/733162", + "email": "nacho@isholgueras.com" }, { - "name": "Ignacio Sánchez (isholgueras)", - "homepage": "https://www.drupal.org/u/isholgueras", - "email": "nacho@isholgueras.com", - "role": "Co-maintainer" + "name": "Lullabot", + "homepage": "https://www.drupal.org/user/3815489" }, { - "name": "Chris Green (trackleft2)", - "homepage": "https://www.drupal.org/u/trackleft2", - "role": "Co-maintainer" - }, - { - "name": "trackleft2", - "homepage": "https://www.drupal.org/user/2860655" + "name": "mrfelton", + "homepage": "https://www.drupal.org/user/305669" } ], - "description": "Environment Indicator adds some visual cues to indicate which copy of the site are you interacting with", + "description": "Environment Indicator adds some visual cuest to indicate which copy of the site are you interacting with", "homepage": "https://www.drupal.org/project/environment_indicator", "support": { - "source": "https://git.drupal.org/project/environment_indicator.git", - "issues": "https://www.drupal.org/project/issues/environment_indicator" + "source": "https://git.drupalcode.org/project/environment_indicator" } }, { "name": "drupal/eu_cookie_compliance", - "version": "1.28.0", + "version": "1.25.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/eu-cookie-compliance.git", - "reference": "8.x-1.28" + "reference": "8.x-1.25" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/eu_cookie_compliance-8.x-1.28.zip", - "reference": "8.x-1.28", - "shasum": "963991f5ead59e5fcf57fb100f30267ded5929f2" + "url": "https://ftp.drupal.org/files/projects/eu_cookie_compliance-8.x-1.25.zip", + "reference": "8.x-1.25", + "shasum": "13797a009ba899db0d9bd9a5c5ad0eb4b2bedfb1" }, "require": { "drupal/core": "^8.9 || ^9 || ^10 || ^11" @@ -8739,8 +8031,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.28", - "datestamp": "1753332673", + "version": "8.x-1.25", + "datestamp": "1728547905", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8770,6 +8062,10 @@ { "name": "See other contributors", "homepage": "https://www.drupal.org/node/1538032/committers" + }, + { + "name": "svenryen", + "homepage": "https://www.drupal.org/user/667244" } ], "description": "This module aims at making the website compliant with the new EU cookie regulation.", @@ -8896,10 +8192,6 @@ { "name": "neslee canil pinto", "homepage": "https://www.drupal.org/user/3580850" - }, - { - "name": "smustgrave", - "homepage": "https://www.drupal.org/user/3252890" } ], "description": "Provides the option of excluding node title(s) from display by individual node, node bundle, and view mode.", @@ -8961,77 +8253,26 @@ "source": "https://git.drupalcode.org/project/exif_orientation" } }, - { - "name": "drupal/facet_bot_blocker", - "version": "1.0.2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/facet_bot_blocker.git", - "reference": "1.0.2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/facet_bot_blocker-1.0.2.zip", - "reference": "1.0.2", - "shasum": "58bedb6e5940bb429ad0278dde7cf7fe468f968d" - }, - "require": { - "drupal/core": "^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "1.0.2", - "datestamp": "1748022809", - "security-coverage": { - "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "John Brandenburg", - "homepage": "https://www.john-brandenburg.com/", - "role": "Maintainer" - } - ], - "description": "Block requests using too many faceted search parameters.", - "homepage": "https://drupal.org/project/facet_bot_blocker", - "support": { - "source": "https://git.drupalcode.org/project/facet_bot_blocker", - "issues": "https://drupal.org/project/issues/facet_bot_blocker" - } - }, { "name": "drupal/facets", "version": "dev-3.0.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/facets.git", - "reference": "3a5dd4df8d7b16d150fe5a2f7370f133a93a4fe4" + "reference": "5344dcd1f8bbce6236ed4fb9c84ac1dcd6127f7c" }, "require": { "drupal/core": "^10.1 || ^11" }, "conflict": { "drupal/core": "<10.1.0", - "drupal/search_api": "<1.14" + "drupal/search_api": "<1.30" }, "require-dev": { - "drupal/better_exposed_filters": "~7.0", - "drupal/default_content": "*", - "drupal/facets_exposed_filters": "*", - "drupal/jquery_ui_slider": "~2.1", - "drupal/jquery_ui_touch_punch": "~1.1", - "drupal/search_api": "1.x-dev", - "drupal/search_api_db": "*", - "drupal/views_ajax_history": "*", - "drupal/views_filters_summary": "*" + "drupal/better_exposed_filters": "*", + "drupal/jquery_ui_slider": "^2.1", + "drupal/jquery_ui_touch_punch": "^1.1", + "drupal/search_api": "1.x-dev" }, "suggest": { "drupal/better_exposed_filters": "Required for AJAX support for facets rendered as views exposed filters", @@ -9044,8 +8285,8 @@ "dev-3.0.x": "3.0.x-dev" }, "drupal": { - "version": "3.0.0+7-dev", - "datestamp": "1741877379", + "version": "3.0.0-beta3+8-dev", + "datestamp": "1731953633", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -9088,27 +8329,27 @@ }, { "name": "drupal/fakeobjects", - "version": "2.0.1", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/fakeobjects.git", - "reference": "2.0.1" + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/fakeobjects-2.0.1.zip", - "reference": "2.0.1", - "shasum": "a11cac7fa7fd2d511048ba0ff3d18321e767b296" + "url": "https://ftp.drupal.org/files/projects/fakeobjects-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "a49094752f972e7db51ef5ec7abade1a4eba48f5" }, "require": { - "drupal-ckeditor-libraries-group/fakeobjects": "^4.5.11", - "drupal/core": "^8 || ^9 || ^10 || ^11" + "drupal/ckeditor": "*", + "drupal/core": "^8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.1", - "datestamp": "1740094419", + "version": "8.x-1.2", + "datestamp": "1674760765", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9291,26 +8532,26 @@ }, { "name": "drupal/field_defaults", - "version": "2.1.0", + "version": "2.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/field_defaults.git", - "reference": "2.1.0" + "reference": "2.0.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/field_defaults-2.1.0.zip", - "reference": "2.1.0", - "shasum": "ca90ca6814ff05457ec8ec0be6a976b0315c28a4" + "url": "https://ftp.drupal.org/files/projects/field_defaults-2.0.0.zip", + "reference": "2.0.0", + "shasum": "692d6b760271d3b3a711e781018f3a6e3f10e60d" }, "require": { - "drupal/core": "^10.0 || ^11.0" + "drupal/core": "^9.3 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.1.0", - "datestamp": "1745506968", + "version": "2.0.0", + "datestamp": "1709319388", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9318,7 +8559,7 @@ }, "drush": { "services": { - "drush.services.yml": "^11 || ^12" + "drush.services.yml": "^9 || ^10 || ^11" } } }, @@ -9485,37 +8726,31 @@ }, { "name": "drupal/field_token_value", - "version": "3.1.0", + "version": "3.0.2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/field_token_value.git", - "reference": "3.1.0" + "reference": "3.0.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/field_token_value-3.1.0.zip", - "reference": "3.1.0", - "shasum": "af17b023855bedf070e42a750fa60700b24be9af" + "url": "https://ftp.drupal.org/files/projects/field_token_value-3.0.2.zip", + "reference": "3.0.2", + "shasum": "91ad476dd57a95086fa51fbc8fa0eb6a1b99f1ad" }, "require": { - "drupal/core": "^10 || ^11", - "drupal/token": "^1.15", - "php": ">=8.1.0" + "drupal/core": "^8 || ^9 || ^10", + "drupal/token": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "3.1.0", - "datestamp": "1740522009", + "version": "3.0.2", + "datestamp": "1696584829", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } - }, - "drush": { - "services": { - "drush.services.yml": "^10 || ^11" - } } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -9525,14 +8760,13 @@ "authors": [ { "name": "haydent", - "homepage": "https://www.drupal.org/u/haydent" + "homepage": "https://www.drupal.org/user/2763191" } ], - "description": "Allows you to use a Views to display an entity or entities for an entity_reference field display.", + "description": "Provides a field allowing the value to be set using a string containing tokens.", "homepage": "https://www.drupal.org/project/field_token_value", "support": { - "source": "https://git.drupalcode.org/project/field_token_value", - "issues": "https://www.drupal.org/project/issues/field_token_value" + "source": "https://git.drupalcode.org/project/field_token_value" } }, { @@ -9569,7 +8803,7 @@ ], "authors": [ { - "name": "cyu", + "name": "cYu", "homepage": "https://www.drupal.org/user/202205" }, { @@ -9588,10 +8822,6 @@ "name": "mgbellaire", "homepage": "https://www.drupal.org/user/1831932" }, - { - "name": "scott_euser", - "homepage": "https://www.drupal.org/user/3267594" - }, { "name": "willzyx", "homepage": "https://www.drupal.org/user/1043862" @@ -9655,27 +8885,27 @@ }, { "name": "drupal/fixed_block_content", - "version": "1.4.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/fixed_block_content.git", - "reference": "8.x-1.4" + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/fixed_block_content-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "bf5035846418156857bd94bc6139aea339a884bb" + "url": "https://ftp.drupal.org/files/projects/fixed_block_content-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "30488b4a57f02b27e63e9249be3e1f9f67a19f64" }, "require": { - "drupal/core": "^9 || ^10 || ^11", + "drupal/core": "^9 || ^10", "drupal/hal": "^1.0 || ^2.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.4", - "datestamp": "1743628825", + "version": "8.x-1.3", + "datestamp": "1702646682", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9814,33 +9044,33 @@ }, { "name": "drupal/footnotes", - "version": "4.0.0-beta7", + "version": "3.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/footnotes.git", - "reference": "4.0.0-beta7" + "reference": "3.1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/footnotes-4.0.0-beta7.zip", - "reference": "4.0.0-beta7", - "shasum": "664be170477906662f0c53d7538f59fbccf61df9" + "url": "https://ftp.drupal.org/files/projects/footnotes-3.1.0.zip", + "reference": "3.1.0", + "shasum": "6cc51af0d8cd50628b5a7e9cc75255a657e2aa62" }, "require": { - "drupal/core": ">=10.0" + "drupal/core": ">=8.6", + "drupal/fakeobjects": "^1.0" }, "require-dev": { - "drupal/metatag": "^2.0", - "drupal/search_api": "*" + "drupal/fakeobjects": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "4.0.0-beta7", - "datestamp": "1752088035", + "version": "3.1.0", + "datestamp": "1691752661", "security-coverage": { - "status": "not-covered", - "message": "Beta releases are not covered by Drupal security advisories." + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, @@ -9870,9 +9100,8 @@ "role": "Maintainer" }, { - "name": "Scott Euser (scott_euser)", - "homepage": "https://www.drupal.org/u/scott_euser", - "role": "Maintainer" + "name": "scott_euser", + "homepage": "https://www.drupal.org/user/3267594" }, { "name": "smulvih2", @@ -9892,17 +9121,17 @@ }, { "name": "drupal/gdpr", - "version": "3.1.2", + "version": "3.1.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/gdpr.git", - "reference": "3.1.2" + "reference": "3.1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/gdpr-3.1.2.zip", - "reference": "3.1.2", - "shasum": "61efb7ebc167e9ed38894920fb4850b8d940e06c" + "url": "https://ftp.drupal.org/files/projects/gdpr-3.1.1.zip", + "reference": "3.1.1", + "shasum": "58f1d8fa7d302e46540780f219e90cca0df72afd" }, "require": { "drupal/checklistapi": "^2.1", @@ -9929,8 +9158,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "3.1.2", - "datestamp": "1740594868", + "version": "3.1.1", + "datestamp": "1728304091", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9951,6 +9180,10 @@ "name": "andrewbelcher", "homepage": "https://www.drupal.org/user/655282" }, + { + "name": "back-2-95", + "homepage": "https://www.drupal.org/user/327328" + }, { "name": "baluertl", "homepage": "https://www.drupal.org/user/1086292" @@ -9976,12 +9209,12 @@ "homepage": "https://www.drupal.org/user/2626013" }, { - "name": "mhavelant", - "homepage": "https://www.drupal.org/user/3331139" + "name": "leymannx", + "homepage": "https://www.drupal.org/user/2482808" }, { - "name": "norman.lol", - "homepage": "https://www.drupal.org/user/2482808" + "name": "mhavelant", + "homepage": "https://www.drupal.org/user/3331139" }, { "name": "pedrop", @@ -10075,30 +9308,30 @@ }, { "name": "drupal/gin", - "version": "4.1.0", + "version": "3.0.0-rc14", "source": { "type": "git", "url": "https://git.drupalcode.org/project/gin.git", - "reference": "4.1.0" + "reference": "8.x-3.0-rc14" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/gin-4.1.0.zip", - "reference": "4.1.0", - "shasum": "96dd28e9ba8adce53313c334612135e3cfaef885" + "url": "https://ftp.drupal.org/files/projects/gin-8.x-3.0-rc14.zip", + "reference": "8.x-3.0-rc14", + "shasum": "8ca8735f5a1d7ef25ee446358cd704a3feb1cae7" }, "require": { - "drupal/core": "^10.3 || ^11 <11.2", - "drupal/gin_toolbar": "^2.0" + "drupal/core": "^9 || ^10 || ^11", + "drupal/gin_toolbar": "^1.0@beta" }, "type": "drupal-theme", "extra": { "drupal": { - "version": "4.1.0", - "datestamp": "1750246743", + "version": "8.x-3.0-rc14", + "datestamp": "1731015952", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "RC releases are not covered by Drupal security advisories." } } }, @@ -10141,27 +9374,27 @@ }, { "name": "drupal/gin_gutenberg", - "version": "1.1.16", + "version": "1.1.14", "source": { "type": "git", "url": "https://git.drupalcode.org/project/gin_gutenberg.git", - "reference": "1.1.16" + "reference": "1.1.14" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/gin_gutenberg-1.1.16.zip", - "reference": "1.1.16", - "shasum": "5a39790f1038f733a0177808ec64e6ff38843a15" + "url": "https://ftp.drupal.org/files/projects/gin_gutenberg-1.1.14.zip", + "reference": "1.1.14", + "shasum": "ed67d446b7fb810678219784c661b40e6340953c" }, "require": { "drupal/core": "^8 || ^9.3 || ^10 || ^11", - "drupal/gutenberg": "*" + "drupal/gutenberg": "^2.0 || ^3.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "1.1.16", - "datestamp": "1742293958", + "version": "1.1.14", + "datestamp": "1725356562", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -10179,7 +9412,7 @@ "role": "Maintainer" }, { - "name": "hosisam", + "name": "Hosisam", "homepage": "https://www.drupal.org/user/3449435" }, { @@ -10263,29 +9496,29 @@ }, { "name": "drupal/gin_toolbar", - "version": "2.1.0", + "version": "1.0.0-rc6", "source": { "type": "git", "url": "https://git.drupalcode.org/project/gin_toolbar.git", - "reference": "2.1.0" + "reference": "8.x-1.0-rc6" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/gin_toolbar-2.1.0.zip", - "reference": "2.1.0", - "shasum": "b312a2dea5379ea5883d92c2a2e5f0499972a083" + "url": "https://ftp.drupal.org/files/projects/gin_toolbar-8.x-1.0-rc6.zip", + "reference": "8.x-1.0-rc6", + "shasum": "542def14b9a5435efb4e021d384fa3f7b0fc6e78" }, "require": { - "drupal/core": "^10 || ^11 <11.2" + "drupal/core": "^9 || ^10 || ^11" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.1.0", - "datestamp": "1750245881", + "version": "8.x-1.0-rc6", + "datestamp": "1718368950", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "RC releases are not covered by Drupal security advisories." } } }, @@ -10324,50 +9557,9 @@ } ] }, - { - "name": "drupal/givebutter", - "version": "dev-1.0.x", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/givebutter.git", - "reference": "eb4ec6fb1a6b372e7608673009834bd5c1f37e2f" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-1.0.x": "1.0.x-dev" - }, - "drupal": { - "version": "1.0.x-dev", - "datestamp": "1746809768", - "security-coverage": { - "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "mlncn", - "homepage": "https://www.drupal.org/user/64383" - } - ], - "description": "Allows your site to include the standard Givebutter script.", - "homepage": "https://www.drupal.org/project/givebutter", - "support": { - "source": "https://git.drupalcode.org/project/givebutter" - } - }, { "name": "drupal/gnode", - "version": "3.3.5", + "version": "3.3.1", "require": { "drupal/core": "^10.3 || ^11", "drupal/group": "*" @@ -10375,8 +9567,8 @@ "type": "metapackage", "extra": { "drupal": { - "version": "3.3.5", - "datestamp": "1746519542", + "version": "3.3.1", + "datestamp": "1732200203", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -10405,39 +9597,21 @@ }, { "name": "drupal/google_analytics", - "version": "4.0.3", + "version": "dev-3357831-php-8.2-compatibility", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/google_analytics.git", - "reference": "4.0.3" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/google_analytics-4.0.3.zip", - "reference": "4.0.3", - "shasum": "faaae65a3b52d842ceef78fd2b2ef6344f3a21a0" - }, - "require": { - "drupal/core": "^9.5 || ^10 || ^11" + "url": "git@git.drupal.org:issue/google_analytics-3357831.git", + "reference": "6e1250f00dd9942a91cdff4e2d44f1779019e191" }, "require-dev": { "drupal/token": "^1.7" }, "type": "drupal-module", "extra": { - "drupal": { - "version": "4.0.3", - "datestamp": "1734385014", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - }, "branch-alias": { "dev-4.x": "4.x-dev" } }, - "notification-url": "https://packages.drupal.org/8/downloads", "license": [ "GPL-2.0-or-later" ], @@ -10445,48 +9619,29 @@ { "name": "See contributors", "homepage": "https://www.drupal.org/node/49388/committers" - }, - { - "name": "budda", - "homepage": "https://www.drupal.org/user/13164" - }, - { - "name": "ixismark", - "homepage": "https://www.drupal.org/user/3632333" - }, - { - "name": "japerry", - "homepage": "https://www.drupal.org/user/45640" - }, - { - "name": "mglaman", - "homepage": "https://www.drupal.org/user/2416470" - }, - { - "name": "roberto.rivera.ixis", - "homepage": "https://www.drupal.org/user/3632325" } ], "description": "Allows your site to be tracked by Google Analytics by adding a Javascript tracking code to every page.", "homepage": "https://www.drupal.org/project/google_analytics", "support": { - "source": "https://git.drupalcode.org/project/google_analytics", - "issues": "https://www.drupal.org/project/issues/google_analytics" - } + "issues": "https://www.drupal.org/project/issues/google_analytics", + "source": "https://git.drupalcode.org/project/google_analytics" + }, + "time": "2023-05-03T10:39:55+00:00" }, { "name": "drupal/group", - "version": "3.3.5", + "version": "3.3.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/group.git", - "reference": "3.3.5" + "reference": "3.3.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/group-3.3.5.zip", - "reference": "3.3.5", - "shasum": "5e8df19cf48ef171bbe042e4d4b2f8107a339530" + "url": "https://ftp.drupal.org/files/projects/group-3.3.1.zip", + "reference": "3.3.1", + "shasum": "ef654968cb2aee6d72b3f55679caabecc94d8bbf" }, "require": { "drupal/core": "^10.3 || ^11", @@ -10500,8 +9655,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "3.3.5", - "datestamp": "1746519542", + "version": "3.3.1", + "datestamp": "1732200203", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -10622,17 +9777,17 @@ }, { "name": "drupal/hal", - "version": "2.0.4", + "version": "2.0.3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/hal.git", - "reference": "2.0.4" + "reference": "2.0.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/hal-2.0.4.zip", - "reference": "2.0.4", - "shasum": "5d98f2ebbc7952d183278351d24d3e51ea18c8ee" + "url": "https://ftp.drupal.org/files/projects/hal-2.0.3.zip", + "reference": "2.0.3", + "shasum": "81bc4b0bfdc6c3b7c2ec50f5eb4739451ff5c2ae" }, "require": { "drupal/core": "^10 || ^11" @@ -10646,8 +9801,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.4", - "datestamp": "1738532063", + "version": "2.0.3", + "datestamp": "1721252595", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -10676,30 +9831,29 @@ }, { "name": "drupal/honeypot", - "version": "2.2.2", + "version": "2.1.4", "source": { "type": "git", "url": "https://git.drupalcode.org/project/honeypot.git", - "reference": "2.2.2" + "reference": "2.1.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/honeypot-2.2.2.zip", - "reference": "2.2.2", - "shasum": "828872d31d1a2c37a818cacae7fcd77a60996c66" + "url": "https://ftp.drupal.org/files/projects/honeypot-2.1.4.zip", + "reference": "2.1.4", + "shasum": "adf76c3520c0e458177dbe6d638aa2d6ae40a95b" }, "require": { - "drupal/core": "^10.3 || ^11" + "drupal/core": "^9.2 || ^10" }, "require-dev": { - "drupal/rules": "^4.0", - "drupal/webform": "^6.2" + "drupal/rules": "^3.x-dev" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.2.2", - "datestamp": "1739854442", + "version": "2.1.4", + "datestamp": "1723489062", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -10746,17 +9900,17 @@ }, { "name": "drupal/http_cache_control", - "version": "2.6.0", + "version": "2.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/http_cache_control.git", - "reference": "8.x-2.6" + "reference": "8.x-2.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/http_cache_control-8.x-2.6.zip", - "reference": "8.x-2.6", - "shasum": "dce070dff18c0298949e432713616df0841d7182" + "url": "https://ftp.drupal.org/files/projects/http_cache_control-8.x-2.3.zip", + "reference": "8.x-2.3", + "shasum": "43ad2f589f8ac9cc2eb20fe07d7dbe0b6d42430a" }, "require": { "drupal/core": "^9 || ^10 || ^11" @@ -10764,8 +9918,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.6", - "datestamp": "1740741248", + "version": "8.x-2.3", + "datestamp": "1726747036", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -10844,27 +9998,27 @@ }, { "name": "drupal/ief_complex_open", - "version": "1.0.2", + "version": "1.0.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/ief_complex_open.git", - "reference": "1.0.2" + "reference": "1.0.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/ief_complex_open-1.0.2.zip", - "reference": "1.0.2", - "shasum": "4bebc5d5f97cbdccb69343d8a2a3c0d6edfb0b98" + "url": "https://ftp.drupal.org/files/projects/ief_complex_open-1.0.1.zip", + "reference": "1.0.1", + "shasum": "abac70022e17d7a2b007ac1587826822433b0346" }, "require": { - "drupal/core": "^8.8 || ^9 || ^10 || ^11", - "drupal/inline_entity_form": "^1 || ^3" + "drupal/core": "^8.8 || ^9 || ^10", + "drupal/inline_entity_form": "^1" }, "type": "drupal-module", "extra": { "drupal": { - "version": "1.0.2", - "datestamp": "1748056584", + "version": "1.0.1", + "datestamp": "1687803317", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -10881,7 +10035,7 @@ "homepage": "https://www.drupal.org/user/3630968" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { @@ -10905,26 +10059,26 @@ }, { "name": "drupal/image_field_to_media", - "version": "3.0.1", + "version": "2.0.2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/image_field_to_media.git", - "reference": "3.0.1" + "reference": "2.0.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/image_field_to_media-3.0.1.zip", - "reference": "3.0.1", - "shasum": "4b5359fb456d401a18e21999cdb8dcbd22e0a883" + "url": "https://ftp.drupal.org/files/projects/image_field_to_media-2.0.2.zip", + "reference": "2.0.2", + "shasum": "7026c58a18c8bf9f02e631a5365c2b898916f478" }, "require": { - "drupal/core": "^10.3 || ^11" + "drupal/core": "^9.3 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "3.0.1", - "datestamp": "1752280146", + "version": "2.0.2", + "datestamp": "1696623512", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -10940,10 +10094,6 @@ "name": "Andrey Vitushkin (wombatbuddy)", "homepage": "https://www.drupal.org/u/wombatbuddy", "role": "Maintainer" - }, - { - "name": "wombatbuddy", - "homepage": "https://www.drupal.org/user/3547848" } ], "description": "Enables to convert existing image fields to Media image fields.", @@ -11035,36 +10185,38 @@ }, { "name": "drupal/indieweb", - "version": "1.26.0", + "version": "1.22.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/indieweb.git", - "reference": "8.x-1.26" + "reference": "8.x-1.22" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/indieweb-8.x-1.26.zip", - "reference": "8.x-1.26", - "shasum": "5393c42a9c11ffed9026a70439454f9a20aff408" + "url": "https://ftp.drupal.org/files/projects/indieweb-8.x-1.22.zip", + "reference": "8.x-1.22", + "shasum": "ce9f45da2f9aaca979f50950f06670d79d4d6ded" }, "require": { - "drupal/core": "^10 || ^11", + "drupal/core": "^9 || ^10", "indieauth/client": "^1.1", "indieweb/mention-client": "^1.2", - "lcobucci/jwt": "4.3.0", + "lcobucci/jwt": "4.0.*", "p3k/micropub": "^0.0.3", "p3k/websub": "^0.0.1", "p3k/xray": "^1.12" }, "require-dev": { - "drupal/externalauth": "^2.0", - "drupal/indieweb_indieauth": "*" + "drupal/classy": "*", + "drupal/externalauth": "*", + "drupal/indieweb_indieauth": "*", + "drupal/stable": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.26", - "datestamp": "1740916115", + "version": "8.x-1.22", + "datestamp": "1708867488", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -11096,21 +10248,20 @@ }, { "name": "drupal/inline_entity_form", - "version": "3.0.0-rc21", + "version": "1.0.0-rc17", "source": { "type": "git", "url": "https://git.drupalcode.org/project/inline_entity_form.git", - "reference": "3.0.0-rc21" + "reference": "8.x-1.0-rc17" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/inline_entity_form-3.0.0-rc21.zip", - "reference": "3.0.0-rc21", - "shasum": "bbfb99be0ee35ad197556b2aa02f6e181e34ff1f" + "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc17.zip", + "reference": "8.x-1.0-rc17", + "shasum": "626622e01cf7a2d2977fdc06ae09afd5a814e09b" }, "require": { - "drupal/core": "^8.8 || ^9 || ^10 || ^11", - "drupal/rat": "^1.0.0@stable", + "drupal/core": "^8.8 || ^9 || ^10", "php": ">=7.1" }, "require-dev": { @@ -11119,8 +10270,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "3.0.0-rc21", - "datestamp": "1746459780", + "version": "8.x-1.0-rc17", + "datestamp": "1703020130", "security-coverage": { "status": "not-covered", "message": "RC releases are not covered by Drupal security advisories." @@ -11137,7 +10288,7 @@ "homepage": "https://www.drupal.org/user/86106" }, { - "name": "centarro", + "name": "Centarro", "homepage": "https://www.drupal.org/user/3661446" }, { @@ -11189,28 +10340,28 @@ }, { "name": "drupal/inotherwords", - "version": "3.0.2", + "version": "3.0.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/inotherwords.git", - "reference": "3.0.2" + "reference": "3.0.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/inotherwords-3.0.2.zip", - "reference": "3.0.2", - "shasum": "17620f204fe8190acc433e750e708b4918d88d97" + "url": "https://ftp.drupal.org/files/projects/inotherwords-3.0.1.zip", + "reference": "3.0.1", + "shasum": "bb9abce972fffc662affe34d691fa6d1c6da6709" }, "require": { "agaric/oxford-comma": "^1.2", - "drupal/core": "^8 || ^9 || ^10 || ^11", + "drupal/core": "^8 || ^9 || ^10", "kwn/number-to-words": "^1.8" }, "type": "drupal-module", "extra": { "drupal": { - "version": "3.0.2", - "datestamp": "1747959034", + "version": "3.0.1", + "datestamp": "1686885306", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -11226,16 +10377,16 @@ "name": "cedewey", "homepage": "https://www.drupal.org/user/38694" }, - { - "name": "elkaro", - "homepage": "https://www.drupal.org/user/3577260" - }, { "name": "gnuget", "homepage": "https://www.drupal.org/user/992990" }, { - "name": "megakeegman", + "name": "lelkneralfaro", + "homepage": "https://www.drupal.org/user/3577260" + }, + { + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -11259,20 +10410,20 @@ }, { "name": "drupal/insert", - "version": "3.0.2", + "version": "3.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/insert.git", - "reference": "3.0.2" + "reference": "3.0.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/insert-3.0.2.zip", - "reference": "3.0.2", - "shasum": "df73a01b20be742b53c95b3b5a8424894d2ce703" + "url": "https://ftp.drupal.org/files/projects/insert-3.0.0.zip", + "reference": "3.0.0", + "shasum": "e6634d8f006e0a1f02f71c4b92645c5d8623096c" }, "require": { - "drupal/core": "^10 || ^11" + "drupal/core": "^10" }, "require-dev": { "drupal/colorbox": "*" @@ -11280,8 +10431,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "3.0.2", - "datestamp": "1739545285", + "version": "3.0.0", + "datestamp": "1719827333", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -11523,71 +10674,6 @@ "source": "https://git.drupalcode.org/project/jquery_ui_autocomplete" } }, - { - "name": "drupal/jquery_ui_datepicker", - "version": "2.1.1", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git", - "reference": "2.1.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-2.1.1.zip", - "reference": "2.1.1", - "shasum": "29e56e8fa351fefd34e80529768ddc69a460149d" - }, - "require": { - "drupal/core": "^9.2 || ^10 || ^11", - "drupal/jquery_ui": "^1.7" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.1.1", - "datestamp": "1730932612", - "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": "jrockowitz", - "homepage": "https://www.drupal.org/user/371407" - }, - { - "name": "lauriii", - "homepage": "https://www.drupal.org/user/1078742" - }, - { - "name": "nod_", - "homepage": "https://www.drupal.org/user/598310" - }, - { - "name": "phenaproxima", - "homepage": "https://www.drupal.org/user/205645" - }, - { - "name": "zrpnr", - "homepage": "https://www.drupal.org/user/1448368" - } - ], - "description": "Provides jQuery UI Datepicker library.", - "homepage": "https://www.drupal.org/project/jquery_ui_datepicker", - "support": { - "source": "https://git.drupalcode.org/project/jquery_ui_datepicker" - } - }, { "name": "drupal/jquery_ui_menu", "version": "2.1.0", @@ -11653,128 +10739,19 @@ "source": "https://git.drupalcode.org/project/jquery_ui_menu" } }, - { - "name": "drupal/jquery_ui_slider", - "version": "2.1.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/jquery_ui_slider.git", - "reference": "2.1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-2.1.0.zip", - "reference": "2.1.0", - "shasum": "89e54ccf787ad3eb11fb2ca9e25ea4bfce3df5b1" - }, - "require": { - "drupal/core": "^9.2 || ^10 || ^11", - "drupal/jquery_ui": "^1.7" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.1.0", - "datestamp": "1717031321", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "bnjmnm", - "homepage": "https://www.drupal.org/user/2369194" - }, - { - "name": "lauriii", - "homepage": "https://www.drupal.org/user/1078742" - }, - { - "name": "zrpnr", - "homepage": "https://www.drupal.org/user/1448368" - } - ], - "description": "Provides jQuery UI Slider library.", - "homepage": "https://www.drupal.org/project/jquery_ui_slider", - "support": { - "source": "https://git.drupalcode.org/project/jquery_ui_slider" - } - }, - { - "name": "drupal/jquery_ui_touch_punch", - "version": "1.1.1", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git", - "reference": "1.1.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.1.1.zip", - "reference": "1.1.1", - "shasum": "f16bc2ffa500131f43c84427ff213e753de9b6a6" - }, - "require": { - "drupal/core": "^9.2 || ^10 || ^11", - "drupal/jquery_ui": "^1.0", - "politsin/jquery-ui-touch-punch": "^1.0" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "1.1.1", - "datestamp": "1717663479", - "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": "Naveen Valecha", - "homepage": "https://drupal.org/u/naveenvalecha", - "role": "Maintainer" - }, - { - "name": "naveenvalecha", - "homepage": "https://www.drupal.org/user/2665733" - } - ], - "description": "Provides jQuery UI Touch Punch library.", - "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch", - "keywords": [ - "Drupal", - "jquery_ui_touch_punch" - ], - "support": { - "source": "https://www.drupal.org/project/jquery_ui_touch_punch", - "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch" - } - }, { "name": "drupal/key", - "version": "1.20.0", + "version": "1.19.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/key.git", - "reference": "8.x-1.20" + "reference": "8.x-1.19" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/key-8.x-1.20.zip", - "reference": "8.x-1.20", - "shasum": "f45415552de129e9976af72224393cd1d1f2ea65" + "url": "https://ftp.drupal.org/files/projects/key-8.x-1.19.zip", + "reference": "8.x-1.19", + "shasum": "ee8f7b8f8babd381f1e4423dccede94b4eb5985c" }, "require": { "drupal/core": ">=8.9 <12" @@ -11788,8 +10765,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.20", - "datestamp": "1744582168", + "version": "8.x-1.19", + "datestamp": "1720053341", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -11814,10 +10791,6 @@ "name": "crashtest_", "homepage": "https://www.drupal.org/user/261457" }, - { - "name": "japerry", - "homepage": "https://www.drupal.org/user/45640" - }, { "name": "nerdstein", "homepage": "https://www.drupal.org/user/1557710" @@ -11887,20 +10860,20 @@ }, { "name": "drupal/linkit", - "version": "7.0.7", + "version": "6.1.6", "source": { "type": "git", "url": "https://git.drupalcode.org/project/linkit.git", - "reference": "7.0.7" + "reference": "6.1.6" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/linkit-7.0.7.zip", - "reference": "7.0.7", - "shasum": "aa10493dfa34f4f8ce51313d47c66b21b9596f3e" + "url": "https://ftp.drupal.org/files/projects/linkit-6.1.6.zip", + "reference": "6.1.6", + "shasum": "113d8e569cfb92f8d7feb0a2f7713953c0715e92" }, "require": { - "drupal/core": "^10.1 || ^11" + "drupal/core": "^10.1" }, "require-dev": { "drupal/ckeditor": "*", @@ -11909,8 +10882,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "7.0.7", - "datestamp": "1753116879", + "version": "6.1.6", + "datestamp": "1729189029", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -11946,17 +10919,17 @@ }, { "name": "drupal/mailchimp", - "version": "2.2.7", + "version": "2.2.5", "source": { "type": "git", "url": "https://git.drupalcode.org/project/mailchimp.git", - "reference": "2.2.7" + "reference": "2.2.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/mailchimp-2.2.7.zip", - "reference": "2.2.7", - "shasum": "beb930e474895a74f15d7916b00cde425a537a10" + "url": "https://ftp.drupal.org/files/projects/mailchimp-2.2.5.zip", + "reference": "2.2.5", + "shasum": "e8764ee98a2a0185a6889277d0f9a9cd27c9d6ef" }, "require": { "drupal/core": "^8.7.7 || ^9 || ^10", @@ -11969,8 +10942,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.2.7", - "datestamp": "1753452348", + "version": "2.2.5", + "datestamp": "1728582242", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -12101,10 +11074,6 @@ { "name": "markdorison", "homepage": "https://www.drupal.org/user/346106" - }, - { - "name": "megachriz", - "homepage": "https://www.drupal.org/user/654114" } ], "description": "Provides Markdown integration for Drupal and allows content to be formatted in a simple plain-text syntax that is transformed into valid HTML.", @@ -12116,42 +11085,29 @@ }, { "name": "drupal/media_contextual_crop", - "version": "2.1.7", + "version": "dev-1.2.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/media_contextual_crop.git", - "reference": "2.1.7" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/media_contextual_crop-2.1.7.zip", - "reference": "2.1.7", - "shasum": "c10ccb10c267290626c3a7e37c1ac3d4d3cbb237" + "reference": "3193fb963b46a5c9d045cd61acba78fc8ae0e88e" }, "require": { - "composer/installers": "^1.9 || ^2.0", - "cweagans/composer-patches": "^1.7 || ^2.0", - "drupal/core": "^10 || ^11", - "drupal/crop": "^2.3", - "drush/drush": ">11" + "drupal/core": "^9.4 || ^10" + }, + "require-dev": { + "drupal/advanced_help": "^1" }, "type": "drupal-module", "extra": { - "drupal": { - "version": "2.1.7", - "datestamp": "1752231050", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } + "branch-alias": { + "dev-1.2.x": "1.2.x-dev" }, - "enable-patching": true, - "patches": { - "drupal/crop": { - "provide_contextual_capability_to_crops": "https://www.drupal.org/files/issues/2024-01-21/2617818-32-provide_contextual_capability_to_crops.patch" - }, - "drupal/core": { - "Refactor ImageStyleDownloadController": "https://www.drupal.org/files/issues/2025-07-02/refactor-ImageStyleDownloadController-so-derivatives-can-be-generated-by-contrib-modules-2685905-50.patch" + "drupal": { + "version": "1.2.1+5-dev", + "datestamp": "1697791918", + "security-coverage": { + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." } } }, @@ -12176,24 +11132,24 @@ }, { "name": "drupal/media_contextual_crop_field_formatter", - "version": "2.0.7", + "version": "1.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/media_contextual_crop_field_formatter.git", - "reference": "2.0.7" + "reference": "1.3.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/media_contextual_crop_field_formatter-2.0.7.zip", - "reference": "2.0.7", - "shasum": "f3409352b36dfd6ae3936536e76cfc618c92712c" + "url": "https://ftp.drupal.org/files/projects/media_contextual_crop_field_formatter-1.3.0.zip", + "reference": "1.3.0", + "shasum": "7e09a051247c22e83a665ab9538c7e18779d93d2" }, "require": { "composer/installers": "^1.9 || ^2.0", "cweagans/composer-patches": "^1.7", - "drupal/core": "^10 || ^11", - "drupal/media_contextual_crop": "~2.0", - "drupal/media_library_media_modify": "^1.0.0 || ^2.0.0@beta" + "drupal/core": "^9.4 || ^10", + "drupal/media_contextual_crop": "~1.2", + "drupal/media_library_media_modify": "^1.0@beta" }, "require-dev": { "drupal/advanced_help": "^1" @@ -12201,8 +11157,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.7", - "datestamp": "1728401162", + "version": "1.3.0", + "datestamp": "1692266180", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -12211,7 +11167,7 @@ "enable-patching": true, "patches": { "drupal/media_library_media_modify": { - "#3270150 Add alteration": "https://git.drupalcode.org/project/media_library_media_modify/-/merge_requests/65.patch" + "#3270150 Add alteration": "https://www.drupal.org/files/issues/2022-06-08/manage_crops_3270150-7.patch" } } }, @@ -12236,22 +11192,22 @@ }, { "name": "drupal/media_contextual_crop_fp_adapter", - "version": "2.0.2", + "version": "1.1.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/media_contextual_crop_fp_adapter.git", - "reference": "2.0.2" + "reference": "1.1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/media_contextual_crop_fp_adapter-2.0.2.zip", - "reference": "2.0.2", - "shasum": "ec729a10cda85f3f01428eff80f50102e7aa07c6" + "url": "https://ftp.drupal.org/files/projects/media_contextual_crop_fp_adapter-1.1.1.zip", + "reference": "1.1.1", + "shasum": "b42f7d09e270becdc317bf832156b00cc1b90d12" }, "require": { - "drupal/core": "^10 || ^11", + "drupal/core": "^9.4 || ^10", "drupal/focal_point": "^1.5 || ^2.0@alpha", - "drupal/media_contextual_crop": "~2.0" + "drupal/media_contextual_crop": "~1.2" }, "require-dev": { "drupal/advanced_help": "^1" @@ -12259,8 +11215,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.2", - "datestamp": "1725437111", + "version": "1.1.1", + "datestamp": "1692689051", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -12288,28 +11244,31 @@ }, { "name": "drupal/media_contextual_crop_iwc_adapter", - "version": "2.0.3", + "version": "1.1.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/media_contextual_crop_iwc_adapter.git", - "reference": "2.0.3" + "reference": "1.1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/media_contextual_crop_iwc_adapter-2.0.3.zip", - "reference": "2.0.3", - "shasum": "cc737d6ba36372a28e6d80c7ccb8a27a7fb5905a" + "url": "https://ftp.drupal.org/files/projects/media_contextual_crop_iwc_adapter-1.1.1.zip", + "reference": "1.1.1", + "shasum": "7f8e58070560b675cca8eb5b32b8f967532f72b0" }, "require": { - "drupal/core": "^10 || ^11", - "drupal/image_widget_crop": "^2.4 || ^3.0", - "drupal/media_contextual_crop": "~2.0" + "drupal/core": "^9.4 || ^10", + "drupal/image_widget_crop": "^2.3", + "drupal/media_contextual_crop": "~1.2" + }, + "require-dev": { + "drupal/advanced_help": "^1" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.3", - "datestamp": "1747295243", + "version": "1.1.1", + "datestamp": "1692689056", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -12438,10 +11397,6 @@ "GPL-2.0-or-later" ], "authors": [ - { - "name": "tunic", - "homepage": "https://www.drupal.org/user/397132" - }, { "name": "yoruvo", "homepage": "https://www.drupal.org/user/2989799" @@ -12455,26 +11410,26 @@ }, { "name": "drupal/menu_admin_per_menu", - "version": "1.7.0", + "version": "1.6.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git", - "reference": "8.x-1.7" + "reference": "8.x-1.6" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.7.zip", - "reference": "8.x-1.7", - "shasum": "ce9faed09c95de7c7a57653aab66c5afc3e946a2" + "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.6.zip", + "reference": "8.x-1.6", + "shasum": "8ebbab26f0dad2b1f79d7aa185295ca033eece7a" }, "require": { - "drupal/core": "^10.2 || ^11.0 || ^12" + "drupal/core": "^10.2 || ^11.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.7", - "datestamp": "1750246188", + "version": "8.x-1.6", + "datestamp": "1726150514", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -12515,17 +11470,17 @@ }, { "name": "drupal/menu_block", - "version": "1.14.0", + "version": "1.13.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/menu_block.git", - "reference": "8.x-1.14" + "reference": "8.x-1.13" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/menu_block-8.x-1.14.zip", - "reference": "8.x-1.14", - "shasum": "c71e60acaba8a7553e8cf423a56328771cbdedf4" + "url": "https://ftp.drupal.org/files/projects/menu_block-8.x-1.13.zip", + "reference": "8.x-1.13", + "shasum": "693a932cba9bd5767bdeee506de446228bc4cc8c" }, "require": { "drupal/core": "^10.1 || ^11" @@ -12533,8 +11488,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.14", - "datestamp": "1740624449", + "version": "8.x-1.13", + "datestamp": "1722579322", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -12547,7 +11502,7 @@ ], "authors": [ { - "name": "dave reid", + "name": "Dave Reid", "homepage": "https://www.drupal.org/user/53892" }, { @@ -12555,7 +11510,7 @@ "homepage": "https://www.drupal.org/user/160302" }, { - "name": "johnalbin", + "name": "JohnAlbin", "homepage": "https://www.drupal.org/user/32095" }, { @@ -12579,26 +11534,26 @@ }, { "name": "drupal/menu_link_config", - "version": "1.0.0-alpha9", + "version": "1.0.0-alpha8", "source": { "type": "git", "url": "https://git.drupalcode.org/project/menu_link_config.git", - "reference": "8.x-1.0-alpha9" + "reference": "8.x-1.0-alpha8" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/menu_link_config-8.x-1.0-alpha9.zip", - "reference": "8.x-1.0-alpha9", - "shasum": "de8dc902de9fea403240c6371b9aaa309c5f8077" + "url": "https://ftp.drupal.org/files/projects/menu_link_config-8.x-1.0-alpha8.zip", + "reference": "8.x-1.0-alpha8", + "shasum": "864799692dc6eb310cd90e50aaa2cc88c954d7ec" }, "require": { - "drupal/core": "^8 || ^9 || ^10 || ^11" + "drupal/core": "^8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0-alpha9", - "datestamp": "1741211826", + "version": "8.x-1.0-alpha8", + "datestamp": "1677846082", "security-coverage": { "status": "not-covered", "message": "Project has not opted into security advisory coverage!" @@ -12619,7 +11574,7 @@ "homepage": "https://www.drupal.org/user/229048" }, { - "name": "hydra", + "name": "Hydra", "homepage": "https://www.drupal.org/user/647364" }, { @@ -12643,17 +11598,17 @@ }, { "name": "drupal/menu_trail_by_path", - "version": "2.2.0", + "version": "2.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/menu_trail_by_path.git", - "reference": "2.2.0" + "reference": "2.1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/menu_trail_by_path-2.2.0.zip", - "reference": "2.2.0", - "shasum": "aba140af80ad217b6543c10bde312c85d75f945a" + "url": "https://ftp.drupal.org/files/projects/menu_trail_by_path-2.1.0.zip", + "reference": "2.1.0", + "shasum": "286f3066d3ce0a941eb73ad699c63bccd7108984" }, "require": { "drupal/core": "^9 || ^10 || ^11" @@ -12661,8 +11616,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.2.0", - "datestamp": "1747319648", + "version": "2.1.0", + "datestamp": "1724357864", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -12703,29 +11658,29 @@ }, { "name": "drupal/message", - "version": "1.8.0", + "version": "1.6.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/message.git", - "reference": "8.x-1.8" + "reference": "8.x-1.6" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/message-8.x-1.8.zip", - "reference": "8.x-1.8", - "shasum": "461a00b425c9d8907f489e8109fb6b20871c463e" + "url": "https://ftp.drupal.org/files/projects/message-8.x-1.6.zip", + "reference": "8.x-1.6", + "shasum": "242c86fd0fc31c5e7b0983fb88272191924d2d6f" }, "require": { "drupal/core": "^9.2 || ^10 || ^11" }, "require-dev": { - "drupal/token": "^1.14" + "drupal/token": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.8", - "datestamp": "1739744268", + "version": "8.x-1.6", + "datestamp": "1726668059", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -12766,46 +11721,42 @@ }, { "name": "drupal/metatag", - "version": "2.1.1", + "version": "1.26.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/metatag.git", - "reference": "2.1.1" + "reference": "8.x-1.26" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/metatag-2.1.1.zip", - "reference": "2.1.1", - "shasum": "94f272db388cbf1e4df775a2677f8c35818c9382" + "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.26.zip", + "reference": "8.x-1.26", + "shasum": "afa4a37422748baa2f0c35b13961438668ef3be8" }, "require": { - "drupal/core": "^9.4 || ^10 || ^11", - "drupal/token": "^1.0", - "php": ">=8.0" + "drupal/core": "^9.3 || ^10", + "drupal/token": "^1.0" }, "require-dev": { - "drupal/forum": "1.x-dev", - "drupal/hal": "^1 || ^2 || ^9", + "drupal/devel": "^4.0 || ^5.0", + "drupal/hal": "^9 || ^1 || ^2", "drupal/metatag_dc": "*", "drupal/metatag_open_graph": "*", "drupal/page_manager": "^4.0", + "drupal/panelizer": "^4.0", "drupal/redirect": "^1.0", - "ergebnis/composer-normalize": "*", + "drupal/webprofiler": "^9 || ^10", "mpyw/phpunit-patch-serializable-comparison": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.1.1", - "datestamp": "1752433708", + "version": "8.x-1.26", + "datestamp": "1687856123", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } - }, - "composer-normalize": { - "indent-size": 2, - "indent-style": "space" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -12956,17 +11907,17 @@ }, { "name": "drupal/migrate_source_csv", - "version": "3.7.0", + "version": "3.6.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/migrate_source_csv.git", - "reference": "8.x-3.7" + "reference": "8.x-3.6" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/migrate_source_csv-8.x-3.7.zip", - "reference": "8.x-3.7", - "shasum": "d952a58003a4616176050ce4d486f9df9c6c59c9" + "url": "https://ftp.drupal.org/files/projects/migrate_source_csv-8.x-3.6.zip", + "reference": "8.x-3.6", + "shasum": "60b5e7dcb5d7a68ed0a43693fe67e7d26b1a9d83" }, "require": { "drupal/core": ">=9.1", @@ -12979,8 +11930,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.7", - "datestamp": "1735314551", + "version": "8.x-3.6", + "datestamp": "1702995930", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -13007,21 +11958,21 @@ }, { "name": "drupal/migrate_tools", - "version": "6.1.2", + "version": "6.0.5", "source": { "type": "git", "url": "https://git.drupalcode.org/project/migrate_tools.git", - "reference": "6.1.2" + "reference": "6.0.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/migrate_tools-6.1.2.zip", - "reference": "6.1.2", - "shasum": "839f561a6d81ea1b5e0b74990f69401e1fb7a379" + "url": "https://ftp.drupal.org/files/projects/migrate_tools-6.0.5.zip", + "reference": "6.0.5", + "shasum": "c82519b366f43827818b04bfbc0009a6e028b835" }, "require": { "drupal/core": ">=9.1", - "php": ">=8.1" + "php": ">=7.4" }, "require-dev": { "drupal/migrate_plus": ">=5", @@ -13035,8 +11986,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "6.1.2", - "datestamp": "1753365392", + "version": "6.0.5", + "datestamp": "1730824457", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -13137,7 +12088,7 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/migration_helpers.git", - "reference": "94ccca4ce30b76b69d4b41a51d46c7297e2b1081" + "reference": "8fb26e7b1221690a93637500d6876e02eea182ce" }, "require": { "drupal/core": "^9 || ^10 || ^11" @@ -13149,7 +12100,7 @@ }, "drupal": { "version": "1.0.x-dev", - "datestamp": "1750883584", + "datestamp": "1721919021", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -13166,11 +12117,11 @@ "homepage": "https://www.drupal.org/user/909522" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -13179,27 +12130,27 @@ } ], "description": "Provides helpers to migrate data into modern Drupal.", - "homepage": "https://drupal.org/project/migration_helpers", + "homepage": "https://git.agaric.com/agaric/migration_helpers", "support": { "source": "https://git.drupalcode.org/project/migration_helpers" } }, { "name": "drupal/minimalhtml", - "version": "2.0.3", + "version": "2.0.2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/minimalhtml.git", - "reference": "2.0.3" + "reference": "2.0.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/minimalhtml-2.0.3.zip", - "reference": "2.0.3", - "shasum": "d40ce13c06c0389bd3dab2ad487a6086cd43700e" + "url": "https://ftp.drupal.org/files/projects/minimalhtml-2.0.2.zip", + "reference": "2.0.2", + "shasum": "1dc75beafb5d392fc63648826e8cecfad1a97c37" }, "require": { - "drupal/core": "^8 || ^9 || ^10 || ^11 || ^12", + "drupal/core": "^8 || ^9 || ^10", "drupal/wysiwyg_linebreaks": "2.0.x-dev@dev" }, "require-dev": { @@ -13208,8 +12159,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.3", - "datestamp": "1748017058", + "version": "2.0.2", + "datestamp": "1690397749", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -13245,7 +12196,7 @@ }, { "name": "drupal/minimalhtmltitle", - "version": "2.0.3", + "version": "2.0.2", "require": { "drupal/ckeditor": "*", "drupal/core": "^8 || ^9 || ^10", @@ -13254,8 +12205,8 @@ "type": "metapackage", "extra": { "drupal": { - "version": "2.0.3", - "datestamp": "1748017058", + "version": "2.0.2", + "datestamp": "1690397749", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -13268,11 +12219,11 @@ ], "authors": [ { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -13399,10 +12350,10 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/notfoundpassthrough.git", - "reference": "8561838b0636eec6a452b7f35bcec3c673a90a92" + "reference": "0482dc146ebfbc842274ac9513d675efee8b8f6d" }, "require": { - "drupal/core": "^10 || ^11" + "drupal/core": "^8.8 || ^9 || ^10" }, "type": "drupal-module", "extra": { @@ -13410,8 +12361,8 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "1.0.0-beta5+2-dev", - "datestamp": "1736206027", + "version": "1.0.0-beta4+1-dev", + "datestamp": "1682098409", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -13462,14 +12413,14 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/octavia.git", - "reference": "23b696b1a43ea4b0f07ab6233128b528ffde4170" + "reference": "45936ecc5fac96b7b2f4f8ac72b4852f49859b03" }, "require": { "drupal/bulma": "1.x-dev@dev", "drupal/components": "^3", "drupal/core": "^9 || ^10", - "drupal/skins": "^2", - "drupal/twigsuggest": "^2" + "drupal/skins": "^2.0-alpha1", + "drupal/twigsuggest": "^1.0-beta2" }, "type": "drupal-theme", "extra": { @@ -13477,8 +12428,8 @@ "dev-2.0.x": "2.0.x-dev" }, "drupal": { - "version": "2.0.0-alpha1+23-dev", - "datestamp": "1738971348", + "version": "2.0.0-alpha1+22-dev", + "datestamp": "1720489325", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -13499,11 +12450,11 @@ "homepage": "https://www.drupal.org/user/3514271" }, { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -13548,7 +12499,7 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/octavia_camouflage.git", - "reference": "55252f3447e696d3b3043bf96fb8a26e6660bf7a" + "reference": "04112d0e857591f409515ae23be757608a2717c6" }, "require": { "drupal/core": "^9 || ^10", @@ -13561,7 +12512,7 @@ }, "drupal": { "version": "2.0.x-dev", - "datestamp": "1750103014", + "datestamp": "1732302479", "security-coverage": { "status": "not-covered", "message": "Project has not opted into security advisory coverage!" @@ -13616,17 +12567,17 @@ }, { "name": "drupal/paragraphs", - "version": "1.19.0", + "version": "1.18.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/paragraphs.git", - "reference": "8.x-1.19" + "reference": "8.x-1.18" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.19.zip", - "reference": "8.x-1.19", - "shasum": "831a81a11eac419e8410db45efef5b283c4d117c" + "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.18.zip", + "reference": "8.x-1.18", + "shasum": "594e2937ea5c95fc88b60420590c4d83f5cd71ee" }, "require": { "drupal/core": "^10.2 || ^11", @@ -13639,7 +12590,7 @@ "drupal/entity_usage": "2.x-dev", "drupal/feeds": "^3", "drupal/field_group": "3.x-dev", - "drupal/inline_entity_form": "3.x-dev", + "drupal/inline_entity_form": "1.x-dev", "drupal/paragraphs-paragraphs_library": "*", "drupal/replicate": "1.x-dev", "drupal/search_api": "^1", @@ -13651,8 +12602,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.19", - "datestamp": "1740907076", + "version": "8.x-1.18", + "datestamp": "1723029144", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -13669,7 +12620,7 @@ "homepage": "https://www.drupal.org/user/214652" }, { - "name": "frans", + "name": "Frans", "homepage": "https://www.drupal.org/user/514222" }, { @@ -13697,20 +12648,20 @@ }, { "name": "drupal/paragraphs_features", - "version": "2.2.0", + "version": "2.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/paragraphs_features.git", - "reference": "2.2.0" + "reference": "2.0.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/paragraphs_features-2.2.0.zip", - "reference": "2.2.0", - "shasum": "8a4872256ca008a9a0c86fdbe6e7dfa594d47779" + "url": "https://ftp.drupal.org/files/projects/paragraphs_features-2.0.0.zip", + "reference": "2.0.0", + "shasum": "3f4856f2c6ade242855f5311ff26e8951b8a53a7" }, "require": { - "drupal/core": "^9.2 || ^10 || ^11", + "drupal/core": "^9.2 || ^10", "drupal/paragraphs": "^1.13" }, "require-dev": { @@ -13719,8 +12670,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.2.0", - "datestamp": "1750763757", + "version": "2.0.0", + "datestamp": "1713956979", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -13857,7 +12808,7 @@ ], "authors": [ { - "name": "aohrvetpv", + "name": "AohRveTPV", "homepage": "https://www.drupal.org/user/2760115" }, { @@ -13865,7 +12816,7 @@ "homepage": "https://www.drupal.org/user/972" }, { - "name": "kristen pol", + "name": "Kristen Pol", "homepage": "https://www.drupal.org/user/8389" }, { @@ -13925,7 +12876,7 @@ "extra": { "drupal": { "version": "8.x-1.13", - "datestamp": "1739552840", + "datestamp": "1722507672", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -13943,11 +12894,11 @@ ], "authors": [ { - "name": "berdir", + "name": "Berdir", "homepage": "https://www.drupal.org/user/214652" }, { - "name": "dave reid", + "name": "Dave Reid", "homepage": "https://www.drupal.org/user/53892" }, { @@ -13967,62 +12918,6 @@ "documentation": "https://www.drupal.org/docs/8/modules/pathauto" } }, - { - "name": "drupal/pdf_api", - "version": "2.4.4", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/pdf_api.git", - "reference": "2.4.4" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/pdf_api-2.4.4.zip", - "reference": "2.4.4", - "shasum": "345309e4f1e0864ecded71c8226b4de0db95a505" - }, - "require": { - "dompdf/dompdf": ">=2.0.4", - "drupal/core": "^8.8 || ^9 || ^10 || ^11", - "mikehaertl/phpwkhtmltopdf": "^2.3", - "mpdf/mpdf": "^8.2.0", - "tecnickcom/tcpdf": "^6.8 || ^6.7.5" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.4.4", - "datestamp": "1722646728", - "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": "markdorison", - "homepage": "https://www.drupal.org/user/346106" - }, - { - "name": "nigelcunningham", - "homepage": "https://www.drupal.org/user/250105" - }, - { - "name": "sutharsan", - "homepage": "https://www.drupal.org/user/73854" - } - ], - "description": "Provides an API for generating PDFs.", - "homepage": "https://www.drupal.org/project/pdf_api", - "support": { - "source": "https://git.drupalcode.org/project/pdf_api" - } - }, { "name": "drupal/plausible", "version": "2.1.1", @@ -14077,30 +12972,30 @@ }, { "name": "drupal/prepopulate", - "version": "2.5.0", + "version": "2.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/prepopulate.git", - "reference": "8.x-2.5" + "reference": "8.x-2.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/prepopulate-8.x-2.5.zip", - "reference": "8.x-2.5", - "shasum": "9efbac5cba063c79b0cfc4f82bcd87a31e0b123d" + "url": "https://ftp.drupal.org/files/projects/prepopulate-8.x-2.4.zip", + "reference": "8.x-2.4", + "shasum": "5e82bd6cbbaafc8320e8b3e48bc3862de4964e00" }, "require": { - "drupal/core": "^8 || ^9 || ^10 || ^11" + "drupal/core": "^8 || ^9 || ^10" }, "require-dev": { - "drupal/inline_entity_form": "^3.0@rc", - "drupal/og": "^1.x-dev" + "drupal/inline_entity_form": "^1.0@beta", + "drupal/og": "^1.0@alpha" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.5", - "datestamp": "1732903418", + "version": "8.x-2.4", + "datestamp": "1678728834", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -14145,17 +13040,17 @@ }, { "name": "drupal/preview_link", - "version": "2.2.0-alpha2", + "version": "2.2.0-alpha1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/preview_link.git", - "reference": "2.2.0-alpha2" + "reference": "2.2.0-alpha1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/preview_link-2.2.0-alpha2.zip", - "reference": "2.2.0-alpha2", - "shasum": "7a2fd37b7b8d038919f31cfd4fb4b2c43168b6e0" + "url": "https://ftp.drupal.org/files/projects/preview_link-2.2.0-alpha1.zip", + "reference": "2.2.0-alpha1", + "shasum": "3b09be0efcf3ae7f9d1e04de1cdaea16cf3521ee" }, "require": { "drupal/core": "^10.2 || ^11", @@ -14169,8 +13064,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.2.0-alpha2", - "datestamp": "1736820546", + "version": "2.2.0-alpha1", + "datestamp": "1723700774", "security-coverage": { "status": "not-covered", "message": "Alpha releases are not covered by Drupal security advisories." @@ -14203,7 +13098,7 @@ "homepage": "https://www.drupal.org/user/314289" }, { - "name": "sam152", + "name": "Sam152", "homepage": "https://www.drupal.org/user/1485048" } ], @@ -14217,84 +13112,28 @@ "issues": "https://www.drupal.org/project/issues/preview_link" } }, - { - "name": "drupal/printable", - "version": "3.1.3", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/printable.git", - "reference": "3.1.3" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/printable-3.1.3.zip", - "reference": "3.1.3", - "shasum": "da44665d16bc2445fba519cbcc7dc448208d8f46" - }, - "require": { - "drupal/core": "^9.4 || ^10 || ^11", - "drupal/pdf_api": "^2.4.0", - "wa72/htmlpagedom": "^1.3 || ^2.0 || 3.0" - }, - "require-dev": { - "drupal/pdf_api": "*", - "smalot/pdfparser": "^1" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "3.1.3", - "datestamp": "1720679594", - "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": "Nigel Cunningham", - "homepage": "https://www.drupal.org/user/346106", - "email": "nigel@nigelcunningham.com.au" - }, - { - "name": "nigelcunningham", - "homepage": "https://www.drupal.org/user/250105" - } - ], - "description": "Generates printer friendly version of nodes", - "homepage": "https://www.drupal.org/project/printable", - "support": { - "source": "https://git.drupalcode.org/project/printable", - "issues": "https://www.drupal.org/project/issues/printable" - } - }, { "name": "drupal/r4032login", - "version": "2.2.3", + "version": "2.2.2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/r4032login.git", - "reference": "2.2.3" + "reference": "2.2.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/r4032login-2.2.3.zip", - "reference": "2.2.3", - "shasum": "6309c01b42ff6605cb6dd8f24ddde0c493f0fa2a" + "url": "https://ftp.drupal.org/files/projects/r4032login-2.2.2.zip", + "reference": "2.2.2", + "shasum": "1e6d306590ee321f520f0a9ca12ed6303778197f" }, "require": { - "drupal/core": "^9.3 || ^10 || ^11" + "drupal/core": "^9.3 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.2.3", - "datestamp": "1737623532", + "version": "2.2.2", + "datestamp": "1718893090", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -14319,11 +13158,7 @@ "homepage": "https://www.drupal.org/user/972" }, { - "name": "dieterholvoet", - "homepage": "https://www.drupal.org/user/3567222" - }, - { - "name": "grayle", + "name": "Grayle", "homepage": "https://www.drupal.org/user/3145497" }, { @@ -14339,7 +13174,7 @@ "homepage": "https://www.drupal.org/user/108440" }, { - "name": "nixou", + "name": "Nixou", "homepage": "https://www.drupal.org/user/2304734" }, { @@ -14347,7 +13182,7 @@ "homepage": "https://www.drupal.org/user/49851" }, { - "name": "robloach", + "name": "RobLoach", "homepage": "https://www.drupal.org/user/61114" }, { @@ -14418,7 +13253,7 @@ "homepage": "https://www.drupal.org/user/289861" }, { - "name": "dylan donkersgoed", + "name": "Dylan Donkersgoed", "homepage": "https://www.drupal.org/user/2803351" }, { @@ -14448,48 +13283,6 @@ "source": "https://git.drupalcode.org/project/rabbit_hole" } }, - { - "name": "drupal/rat", - "version": "1.0.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/rat.git", - "reference": "28202b02262a39ac8dbbfd43696b67c0c8c46b71" - }, - "dist": { - "type": "zip", - "url": "https://git.drupalcode.org/api/v4/projects/project%2Frat/repository/archive.zip?sha=28202b02262a39ac8dbbfd43696b67c0c8c46b71", - "reference": "28202b02262a39ac8dbbfd43696b67c0c8c46b71", - "shasum": "" - }, - "require": { - "php": "^7.4 || ^8.0" - }, - "require-dev": { - "drupal/core": "^9.4", - "drupal/core-dev": "^9.4" - }, - "type": "library", - "autoload": { - "psr-4": { - "Drupal\\rat\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "gpl-2.0-or-later" - ], - "authors": [ - { - "name": "Merlin", - "email": "merlin@geeks4change.net" - } - ], - "support": { - "source": "https://git.drupalcode.org/project/rat/-/tree/1.0.0" - }, - "time": "2023-07-19T22:22:22+00:00" - }, { "name": "drupal/rdf", "version": "2.1.1", @@ -14569,17 +13362,17 @@ }, { "name": "drupal/redirect", - "version": "1.11.0", + "version": "1.10.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/redirect.git", - "reference": "8.x-1.11" + "reference": "8.x-1.10" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.11.zip", - "reference": "8.x-1.11", - "shasum": "7df8b3524bbde07d254216039636947a689140ef" + "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.10.zip", + "reference": "8.x-1.10", + "shasum": "9d72d7e0717dbdea3ab3306c5d6840da5bd3024c" }, "require": { "drupal/core": "^9.2 || ^10 || ^11" @@ -14587,8 +13380,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.11", - "datestamp": "1737382886", + "version": "8.x-1.10", + "datestamp": "1723277641", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -14601,7 +13394,7 @@ ], "authors": [ { - "name": "berdir", + "name": "Berdir", "homepage": "https://www.drupal.org/user/214652" }, { @@ -14609,7 +13402,7 @@ "homepage": "https://www.drupal.org/user/53892" }, { - "name": "kristen pol", + "name": "Kristen Pol", "homepage": "https://www.drupal.org/user/8389" }, { @@ -14625,7 +13418,7 @@ }, { "name": "drupal/redirect_404", - "version": "1.11.0", + "version": "1.10.0", "require": { "drupal/core": "^9.2 || ^10 || ^11", "drupal/redirect": "*" @@ -14633,8 +13426,8 @@ "type": "metapackage", "extra": { "drupal": { - "version": "8.x-1.11", - "datestamp": "1737382886", + "version": "8.x-1.10", + "datestamp": "1723277641", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -14647,7 +13440,7 @@ ], "authors": [ { - "name": "berdir", + "name": "Berdir", "homepage": "https://www.drupal.org/user/214652" }, { @@ -14655,7 +13448,7 @@ "homepage": "https://www.drupal.org/user/53892" }, { - "name": "kristen pol", + "name": "Kristen Pol", "homepage": "https://www.drupal.org/user/8389" }, { @@ -14669,268 +13462,29 @@ "source": "https://git.drupalcode.org/project/redirect" } }, - { - "name": "drupal/regionincontent", - "version": "1.1.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/regionincontent.git", - "reference": "8.x-1.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/regionincontent-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "3323c1215c4cfc3da3580e8d382c7cc0f691a513" - }, - "require": { - "drupal/core": "^8.8 || ^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.1", - "datestamp": "1699306875", - "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": "MegaKeegMan", - "homepage": "https://www.drupal.org/user/3620027" - }, - { - "name": "mlncn", - "homepage": "https://www.drupal.org/user/64383" - } - ], - "description": "Provides the ability to print regions (the building block of Drupal site building— where blocks are placed) within content (node) templates.", - "homepage": "https://www.drupal.org/project/regionincontent", - "support": { - "source": "https://git.drupalcode.org/project/regionincontent" - } - }, - { - "name": "drupal/registration_role", - "version": "2.0.2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/registration_role.git", - "reference": "2.0.2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/registration_role-2.0.2.zip", - "reference": "2.0.2", - "shasum": "3dcace022bae8fdbc4c66c86fa5b9b0274298a8b" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.2", - "datestamp": "1739480619", - "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": "karthikeyan-manivasagam", - "homepage": "https://www.drupal.org/user/1494424" - }, - { - "name": "melon", - "homepage": "https://www.drupal.org/user/32875" - }, - { - "name": "mlncn", - "homepage": "https://www.drupal.org/user/64383" - }, - { - "name": "pfournier", - "homepage": "https://www.drupal.org/user/160468" - }, - { - "name": "pignaz", - "homepage": "https://www.drupal.org/user/471908" - }, - { - "name": "yogen.prasad", - "homepage": "https://www.drupal.org/user/2115328" - } - ], - "description": "Automatically assign a role to all new users who register.", - "homepage": "https://www.drupal.org/project/registration_role", - "support": { - "source": "https://git.drupalcode.org/project/registration_role" - } - }, - { - "name": "drupal/require_on_publish", - "version": "1.10.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/require_on_publish.git", - "reference": "8.x-1.10" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/require_on_publish-8.x-1.10.zip", - "reference": "8.x-1.10", - "shasum": "4ff1a062cceff6fb100d080cb59a6489e664920a" - }, - "require": { - "drupal/core": "^9.2 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.10", - "datestamp": "1706803317", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "name": "Mike Priscella", - "homepage": "https://drupal.org/u/mpriscella", - "role": "Maintainer" - }, - { - "name": "markdorison", - "homepage": "https://www.drupal.org/user/346106" - }, - { - "name": "mpriscella", - "homepage": "https://www.drupal.org/user/2354820" - }, - { - "name": "pfunklange", - "homepage": "https://www.drupal.org/user/566588" - } - ], - "description": "Adds ability to designate fields as required for publishing only.", - "homepage": "https://www.drupal.org/project/require_on_publish", - "keywords": [ - "field", - "publish", - "require", - "require on publish", - "required field" - ], - "support": { - "source": "https://git.drupalcode.org/project/require_on_publish", - "issues": "https://www.drupal.org/project/issues/require_on_publish" - } - }, - { - "name": "drupal/rh_node", - "version": "1.0.0", - "require": { - "drupal/core": "^9.5 || ^10 || ^11", - "drupal/rabbit_hole": "*" - }, - "type": "metapackage", - "extra": { - "drupal": { - "version": "8.x-1.0", - "datestamp": "1721413113", - "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": "aleksey.tk", - "homepage": "https://www.drupal.org/user/22093" - }, - { - "name": "bohart", - "homepage": "https://www.drupal.org/user/289861" - }, - { - "name": "dylan donkersgoed", - "homepage": "https://www.drupal.org/user/2803351" - }, - { - "name": "japerry", - "homepage": "https://www.drupal.org/user/45640" - }, - { - "name": "matroskeen", - "homepage": "https://www.drupal.org/user/3426249" - }, - { - "name": "mparker17", - "homepage": "https://www.drupal.org/user/536298" - }, - { - "name": "Odd Hill", - "homepage": "https://www.drupal.org/user/789934" - }, - { - "name": "olofbokedal", - "homepage": "https://www.drupal.org/user/1198438" - } - ], - "description": "Adds Rabbit Hole functionality for nodes.", - "homepage": "https://www.drupal.org/project/rabbit_hole", - "support": { - "source": "https://git.drupalcode.org/project/rabbit_hole" - } - }, { "name": "drupal/riddler", - "version": "3.0.2", + "version": "3.0.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/riddler.git", - "reference": "3.0.2" + "reference": "3.0.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/riddler-3.0.2.zip", - "reference": "3.0.2", - "shasum": "c4342ada86895cdb68c8fc83d1229f1e51cd8ecf" + "url": "https://ftp.drupal.org/files/projects/riddler-3.0.1.zip", + "reference": "3.0.1", + "shasum": "dc758aece996787a3429c61aa534df87ccf770a3" }, "require": { "drupal/captcha": "^2", - "drupal/core": "^10 || ^11" + "drupal/core": "^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "3.0.2", - "datestamp": "1738255331", + "version": "3.0.1", + "datestamp": "1686732873", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -14947,7 +13501,7 @@ "homepage": "https://www.drupal.org/user/3317601" }, { - "name": "anybody", + "name": "Anybody", "homepage": "https://www.drupal.org/user/291091" }, { @@ -14955,7 +13509,7 @@ "homepage": "https://www.drupal.org/user/277371" }, { - "name": "grevil", + "name": "Grevil", "homepage": "https://www.drupal.org/user/3668491" }, { @@ -14979,26 +13533,29 @@ }, { "name": "drupal/role_delegation", - "version": "1.4.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/role_delegation.git", - "reference": "8.x-1.4" + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/role_delegation-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "7637fb2506b134bc888c74d3dcfa79c8a0c207aa" + "url": "https://ftp.drupal.org/files/projects/role_delegation-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "e03d9c82d509a2630750e50a3452bd70ca1c55a6" }, "require": { "drupal/core": "^10.3 || ^11" }, + "require-dev": { + "drupal/action": "^0.2" + }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.4", - "datestamp": "1751012870", + "version": "8.x-1.3", + "datestamp": "1726236826", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -15019,10 +13576,6 @@ "name": "benjy", "homepage": "https://www.drupal.org/user/1852732" }, - { - "name": "dieterholvoet", - "homepage": "https://www.drupal.org/user/3567222" - }, { "name": "jeroent", "homepage": "https://www.drupal.org/user/2228934" @@ -15035,95 +13588,23 @@ "issues": "http://drupal.org/project/role_delegation" } }, - { - "name": "drupal/scheduler", - "version": "1.5.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/scheduler.git", - "reference": "8.x-1.5" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/scheduler-8.x-1.5.zip", - "reference": "8.x-1.5", - "shasum": "206a9b6e348273aa2cf97ba429d437112b47469b" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10" - }, - "require-dev": { - "drupal/devel_generate": "^2.0 || >=4", - "drupal/rules": "^3", - "drush/drush": ">=9" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.5", - "datestamp": "1683719323", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - }, - "drush": { - "services": { - "drush.services.yml": "^9 || ^10" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "Eric Schaefer (Eric Schaefer)", - "homepage": "https://www.drupal.org/u/eric-schaefer", - "role": "Maintainer" - }, - { - "name": "Jonathan Smith (jonathan1055)", - "homepage": "https://www.drupal.org/u/jonathan1055", - "role": "Maintainer" - }, - { - "name": "Pieter Frenssen (pfrenssen)", - "homepage": "https://www.drupal.org/u/pfrenssen", - "role": "Maintainer" - }, - { - "name": "Rick Manelius (rickmanelius)", - "homepage": "https://www.drupal.org/u/rickmanelius", - "role": "Maintainer" - } - ], - "description": "Automatically publish and unpublish content at specified dates and times.", - "homepage": "https://drupal.org/project/scheduler", - "support": { - "source": "https://git.drupalcode.org/project/scheduler", - "issues": "https://www.drupal.org/project/issues/scheduler" - } - }, { "name": "drupal/schema_metatag", - "version": "3.0.3", + "version": "2.6.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/schema_metatag.git", - "reference": "3.0.3" + "reference": "8.x-2.6" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/schema_metatag-3.0.3.zip", - "reference": "3.0.3", - "shasum": "54fadabe0b56cb3a5f48a48ff438e8ad5883423c" + "url": "https://ftp.drupal.org/files/projects/schema_metatag-8.x-2.6.zip", + "reference": "8.x-2.6", + "shasum": "a84c126185eabda796348839470a8c3575f78c92" }, "require": { - "drupal/core": "^9 || ^10 || ^11", - "drupal/metatag": "^2.0", - "php": ">=8.0" + "drupal/core": "^9.0 || ^10 || ^11", + "drupal/metatag": "^1.0" }, "require-dev": { "drupal/coder": "^8.3", @@ -15137,8 +13618,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "3.0.3", - "datestamp": "1721141808", + "version": "8.x-2.6", + "datestamp": "1720959928", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -15305,17 +13786,17 @@ }, { "name": "drupal/search_api", - "version": "1.38.0", + "version": "1.36.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/search_api.git", - "reference": "8.x-1.38" + "reference": "8.x-1.36" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.38.zip", - "reference": "8.x-1.38", - "shasum": "d1c83ba74e553eca07d3ea4b15e5d9c7f009a496" + "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.36.zip", + "reference": "8.x-1.36", + "shasum": "1464f21cb924746a0df7f4cb080abaf00804e9a7" }, "require": { "drupal/core": "^10.2 || ^11" @@ -15336,8 +13817,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.38", - "datestamp": "1740298961", + "version": "8.x-1.36", + "datestamp": "1732448767", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -15372,20 +13853,20 @@ }, { "name": "drupal/search_api_autocomplete", - "version": "1.10.0", + "version": "1.9.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/search_api_autocomplete.git", - "reference": "8.x-1.10" + "reference": "8.x-1.9" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/search_api_autocomplete-8.x-1.10.zip", - "reference": "8.x-1.10", - "shasum": "bd7d4a35a595efb866f6f5e2230d62d93b074927" + "url": "https://ftp.drupal.org/files/projects/search_api_autocomplete-8.x-1.9.zip", + "reference": "8.x-1.9", + "shasum": "5cb2d1a09dbd54facba82d6d88907e3a184c1539" }, "require": { - "drupal/core": "^10.2 || ^11", + "drupal/core": "^9.3 || ^10 || ^11", "drupal/search_api": "^1.0" }, "require-dev": { @@ -15394,8 +13875,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.10", - "datestamp": "1736941746", + "version": "8.x-1.9", + "datestamp": "1718551474", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -15426,7 +13907,7 @@ }, { "name": "drupal/search_api_db", - "version": "1.38.0", + "version": "1.36.0", "require": { "drupal/core": "^10.2 || ^11", "drupal/search_api": "*" @@ -15434,8 +13915,8 @@ "type": "metapackage", "extra": { "drupal": { - "version": "8.x-1.38", - "datestamp": "1740298961", + "version": "8.x-1.36", + "datestamp": "1732448767", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -15468,17 +13949,17 @@ }, { "name": "drupal/search_api_saved_searches", - "version": "1.1.0", + "version": "1.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/search_api_saved_searches.git", - "reference": "8.x-1.1" + "reference": "8.x-1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/search_api_saved_searches-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "c5bc1de8f15143344fe2bad2d5589ec05ea280db" + "url": "https://ftp.drupal.org/files/projects/search_api_saved_searches-8.x-1.0.zip", + "reference": "8.x-1.0", + "shasum": "761211352810805b2f3d6a96cdfe79a2f1354c7b" }, "require": { "drupal/core": "^10.1 || ^11", @@ -15491,8 +13972,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.1", - "datestamp": "1740299097", + "version": "8.x-1.0", + "datestamp": "1713699951", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -15584,26 +14065,26 @@ }, { "name": "drupal/select_or_other", - "version": "4.2.0", + "version": "4.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/select_or_other.git", - "reference": "4.2.0" + "reference": "4.1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/select_or_other-4.2.0.zip", - "reference": "4.2.0", - "shasum": "1e33d196a7bc6116c66d5e77b53e2fee6f1e62d9" + "url": "https://ftp.drupal.org/files/projects/select_or_other-4.1.0.zip", + "reference": "4.1.0", + "shasum": "ff73f610623c16ee27ac2afdc2f18e3d3d934081" }, "require": { - "drupal/core": "^10.1 || ^11" + "drupal/core": "^8.8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "4.2.0", - "datestamp": "1733203728", + "version": "4.1.0", + "datestamp": "1686871176", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -15631,10 +14112,6 @@ "name": "hmendes", "homepage": "https://www.drupal.org/user/3673677" }, - { - "name": "ivnish", - "homepage": "https://www.drupal.org/user/3547706" - }, { "name": "legolasbo", "homepage": "https://www.drupal.org/user/2480548" @@ -15780,64 +14257,6 @@ "source": "https://git.drupalcode.org/project/similarterms" } }, - { - "name": "drupal/simple_sitemap", - "version": "4.2.2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/simple_sitemap.git", - "reference": "4.2.2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/simple_sitemap-4.2.2.zip", - "reference": "4.2.2", - "shasum": "1f9c9197d37450fb347a4fa3f10191f5f4b5ef13" - }, - "require": { - "drupal/core": "^10.2 || ^11", - "ext-xmlwriter": "*" - }, - "conflict": { - "drush/drush": "<12.5.1" - }, - "require-dev": { - "drupal/paragraphs": "^1.18" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "4.2.2", - "datestamp": "1750876597", - "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": "Pawel Ginalski (gbyte)", - "homepage": "https://www.drupal.org/u/gbyte", - "email": "contact@gbyte.dev", - "role": "Maintainer" - }, - { - "name": "walkingdexter", - "homepage": "https://www.drupal.org/user/3251330" - } - ], - "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.", - "homepage": "https://drupal.org/project/simple_sitemap", - "support": { - "source": "https://cgit.drupalcode.org/simple_sitemap", - "issues": "https://drupal.org/project/issues/simple_sitemap" - } - }, { "name": "drupal/skins", "version": "2.0.0-alpha1", @@ -15904,20 +14323,20 @@ }, { "name": "drupal/smart_date", - "version": "4.2.4", + "version": "4.2.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/smart_date.git", - "reference": "4.2.4" + "reference": "4.2.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/smart_date-4.2.4.zip", - "reference": "4.2.4", - "shasum": "87638e15bd1878f402cdb9cd40154d481a849881" + "url": "https://ftp.drupal.org/files/projects/smart_date-4.2.1.zip", + "reference": "4.2.1", + "shasum": "fec1d70ec64626a47e67c25f05daa3ba6a8b8a0b" }, "require": { - "drupal/core": "^9 || ^10 || ^11", + "drupal/core": "^9 || ^10 || ^11", "php": ">=8.1", "simshaun/recurr": "^5" }, @@ -15930,8 +14349,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "4.2.4", - "datestamp": "1751143243", + "version": "4.2.1", + "datestamp": "1731590994", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -15970,31 +14389,21 @@ }, { "name": "drupal/sms", - "version": "2.3.0", + "version": "2.2.0-rc1", "require": { - "drupal/core": "^10.3 || ^11", + "drupal/core": "^9.5 || ^10", "drupal/dynamic_entity_reference": "^3 || ^4", "drupal/smsframework": "^2", - "php": ">=8.1" - }, - "conflict": { - "drupal/coder": "<8.3.26" - }, - "require-dev": { - "mglaman/phpstan-drupal": "^1", - "phpstan/extension-installer": "^1.4", - "phpstan/phpstan": "^1.11", - "phpstan/phpstan-deprecation-rules": "*", - "previousnext/coding-standard": "^1.0" + "php": ">=8" }, "type": "metapackage", "extra": { "drupal": { - "version": "2.3.0", - "datestamp": "1733714927", + "version": "2.2.0-rc1", + "datestamp": "1670241566", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "RC releases are not covered by Drupal security advisories." } } }, @@ -16027,46 +14436,30 @@ }, { "name": "drupal/smsframework", - "version": "2.3.0", + "version": "2.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/smsframework.git", - "reference": "2.3.0" + "reference": "2.1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/smsframework-2.3.0.zip", - "reference": "2.3.0", - "shasum": "37e24980f7478eeef38b7a811fba7175606df235" + "url": "https://ftp.drupal.org/files/projects/smsframework-2.1.0.zip", + "reference": "2.1.0", + "shasum": "a929db8db5ed2b82b87d371e36d746bd1270a7e3" }, "require": { - "drupal/core": "^10.3 || ^11", - "drupal/dynamic_entity_reference": "^3 || ^4", - "php": ">=8.1" - }, - "conflict": { - "drupal/coder": "<8.3.26" - }, - "replace": { - "drupal/sms_blast": "self.version", - "drupal/sms_devel": "self.version", - "drupal/sms_sendtophone": "self.version", - "drupal/sms_user": "self.version" + "drupal/core": ">=9.2" }, "require-dev": { "drupal/dynamic_entity_reference": "*", - "drupal/sms": "*", - "mglaman/phpstan-drupal": "^1", - "phpstan/extension-installer": "^1.4", - "phpstan/phpstan": "^1.11", - "phpstan/phpstan-deprecation-rules": "*", - "previousnext/coding-standard": "^1.0" + "drupal/sms": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.3.0", - "datestamp": "1733714927", + "version": "2.1.0", + "datestamp": "1670240395", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -16079,25 +14472,21 @@ ], "authors": [ { - "name": "Aniebiet Udoh", - "homepage": "https://www.drupal.org/u/almaudoh", - "role": "Maintainer" + "name": "almaudoh", + "homepage": "https://www.drupal.org/user/488082" }, { - "name": "Daniel Phin", - "homepage": "http://danielph.in", - "role": "Maintainer" + "name": "batje", + "homepage": "https://www.drupal.org/user/2696" }, { "name": "dpi", "homepage": "https://www.drupal.org/user/81431" } ], - "description": "Provides an extensible API that facilitates communication between Drupal and various SMS gateways.", - "homepage": "http://drupal.org/project/smsframework", + "homepage": "https://www.drupal.org/project/smsframework", "support": { - "source": "https://git.drupalcode.org/project/smsframework", - "issues": "https://www.drupal.org/project/issues/smsframework" + "source": "https://git.drupalcode.org/project/smsframework" } }, { @@ -16303,11 +14692,11 @@ "source": { "type": "git", "url": "https://git.drupalcode.org/project/social_post_facebook.git", - "reference": "af3fce0c31533b5f074be3830ade383364ffec04" + "reference": "6286f5bc5891c08665b5a14390b746634435e1f5" }, "require": { "agaric/php-facebook": "dev-main", - "drupal/core": "^8 || ^9 || ^10 || ^11", + "drupal/core": "^8 || ^9 || ^10", "drupal/social_post": "^3" }, "type": "drupal-module", @@ -16317,7 +14706,7 @@ }, "drupal": { "version": "3.0.x-dev", - "datestamp": "1752867749", + "datestamp": "1707335201", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -16344,7 +14733,7 @@ "homepage": "https://www.drupal.org/user/3513954" }, { - "name": "megakeegman", + "name": "MegaKeegMan", "homepage": "https://www.drupal.org/user/3620027" }, { @@ -16530,7 +14919,7 @@ "homepage": "https://www.drupal.org/user/516420" }, { - "name": "nitesh sethia", + "name": "Nitesh Sethia", "homepage": "https://www.drupal.org/user/2474982" }, { @@ -16542,7 +14931,7 @@ "homepage": "https://www.drupal.org/user/35821" }, { - "name": "robloach", + "name": "RobLoach", "homepage": "https://www.drupal.org/user/61114" }, { @@ -16714,7 +15103,7 @@ ], "authors": [ { - "name": "aswathyajish", + "name": "AswathyAjish", "homepage": "https://www.drupal.org/user/2584696" }, { @@ -16730,7 +15119,7 @@ "homepage": "https://www.drupal.org/user/2603884" }, { - "name": "tolstoydotcom", + "name": "TolstoyDotCom", "homepage": "https://www.drupal.org/user/103055" }, { @@ -16752,20 +15141,20 @@ }, { "name": "drupal/taxonomy_manager", - "version": "2.0.22", + "version": "2.0.15", "source": { "type": "git", "url": "https://git.drupalcode.org/project/taxonomy_manager.git", - "reference": "2.0.22" + "reference": "2.0.15" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/taxonomy_manager-2.0.22.zip", - "reference": "2.0.22", - "shasum": "45b69b6ab71d7072092505d315e2b9b7a9ed168e" + "url": "https://ftp.drupal.org/files/projects/taxonomy_manager-2.0.15.zip", + "reference": "2.0.15", + "shasum": "b3a7af31c310047587ec730114f991d274dda646" }, "require": { - "drupal/core": "^10.3 || ^11.0", + "drupal/core": "^10.2 || ^11.0", "drupal/jquery_ui": "^1.7" }, "require-dev": { @@ -16778,8 +15167,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.22", - "datestamp": "1751032949", + "version": "2.0.15", + "datestamp": "1726572388", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -16841,26 +15230,26 @@ }, { "name": "drupal/textarea_widget_for_text", - "version": "1.4.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/textarea_widget_for_text.git", - "reference": "8.x-1.4" + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/textarea_widget_for_text-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "8d77a7330cc12f0f54f239a42baa8c28ff8280e0" + "url": "https://ftp.drupal.org/files/projects/textarea_widget_for_text-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "4bd7c1b0eb25574efa1b959636eb7445f6ba5596" }, "require": { - "drupal/core": "^8 || ^9 || ^10 || ^11" + "drupal/core": "^8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.4", - "datestamp": "1745957094", + "version": "8.x-1.3", + "datestamp": "1699891368", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -16994,7 +15383,7 @@ ], "authors": [ { - "name": "elkaro", + "name": "lelkneralfaro", "homepage": "https://www.drupal.org/user/3577260" }, { @@ -17062,17 +15451,17 @@ }, { "name": "drupal/twig_tweak", - "version": "3.4.1", + "version": "3.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/twig_tweak.git", - "reference": "3.4.1" + "reference": "3.4.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/twig_tweak-3.4.1.zip", - "reference": "3.4.1", - "shasum": "ceaa5ea8f357ce8827c728f22871265f0f7cd74f" + "url": "https://ftp.drupal.org/files/projects/twig_tweak-3.4.0.zip", + "reference": "3.4.0", + "shasum": "1f47f71b4cfbad97fff11db1adc72c311bb1645e" }, "require": { "drupal/core": "^10.3 || ^11.0", @@ -17086,8 +15475,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "3.4.1", - "datestamp": "1748530577", + "version": "3.4.0", + "datestamp": "1721562308", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -17105,7 +15494,7 @@ ], "authors": [ { - "name": "chi", + "name": "Chi", "homepage": "https://www.drupal.org/user/556138" } ], @@ -17122,26 +15511,26 @@ }, { "name": "drupal/twigsuggest", - "version": "2.0.0-rc4", + "version": "1.0.0-rc2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/twigsuggest.git", - "reference": "2.0.0-rc4" + "reference": "8.x-1.0-rc2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/twigsuggest-2.0.0-rc4.zip", - "reference": "2.0.0-rc4", - "shasum": "e629ff389a2d5380c9e43bd2fc770fe443d7711d" + "url": "https://ftp.drupal.org/files/projects/twigsuggest-8.x-1.0-rc2.zip", + "reference": "8.x-1.0-rc2", + "shasum": "69d765e40b9eb2e423d63378c69acf8a0248bffb" }, "require": { - "drupal/core": "^8 || ^9 || ^10 || ^11" + "drupal/core": "^8 || ^9 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.0-rc4", - "datestamp": "1734604997", + "version": "8.x-1.0-rc2", + "datestamp": "1682360823", "security-coverage": { "status": "not-covered", "message": "RC releases are not covered by Drupal security advisories." @@ -17186,30 +15575,30 @@ }, { "name": "drupal/ui_patterns", - "version": "1.13.0", + "version": "1.10.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/ui_patterns.git", - "reference": "8.x-1.13" + "reference": "8.x-1.10" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/ui_patterns-8.x-1.13.zip", - "reference": "8.x-1.13", - "shasum": "8fc716810b51fb0b050407bb04649ba1549f183a" + "url": "https://ftp.drupal.org/files/projects/ui_patterns-8.x-1.10.zip", + "reference": "8.x-1.10", + "shasum": "bdb6f84ae8b82679380641cdc3d78b0fafe98614" }, "require": { "drupal/core": "^9 || ^10 || ^11" }, "require-dev": { "drupal/ds": "^3.18", - "drupal/field_group": "^4" + "drupal/field_group": "^3.4" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.13", - "datestamp": "1750172163", + "version": "8.x-1.10", + "datestamp": "1729182058", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -17266,7 +15655,7 @@ }, { "name": "drupal/ui_patterns_ds", - "version": "1.13.0", + "version": "1.10.0", "require": { "drupal/core": "^9 || ^10 || ^11", "drupal/ds": "*", @@ -17275,8 +15664,8 @@ "type": "metapackage", "extra": { "drupal": { - "version": "8.x-1.13", - "datestamp": "1750172163", + "version": "8.x-1.10", + "datestamp": "1729182058", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -17333,16 +15722,16 @@ }, { "name": "drupal/ui_patterns_layouts", - "version": "2.0.5", + "version": "1.10.0", "require": { - "drupal/core": "^10.3 || ^11", + "drupal/core": "^9 || ^10 || ^11", "drupal/ui_patterns": "*" }, "type": "metapackage", "extra": { "drupal": { - "version": "2.0.5", - "datestamp": "1750939746", + "version": "8.x-1.10", + "datestamp": "1729182058", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -17391,7 +15780,7 @@ "homepage": "https://www.drupal.org/user/436244" } ], - "description": "Use UI components as layouts plugins.", + "description": "Use patterns as layouts via the Layout Discovery module.", "homepage": "https://www.drupal.org/project/ui_patterns", "support": { "source": "https://git.drupalcode.org/project/ui_patterns" @@ -17399,16 +15788,16 @@ }, { "name": "drupal/ui_patterns_library", - "version": "2.0.5", + "version": "1.10.0", "require": { - "drupal/core": "^10.3 || ^11", + "drupal/core": "^9 || ^10 || ^11", "drupal/ui_patterns": "*" }, "type": "metapackage", "extra": { "drupal": { - "version": "2.0.5", - "datestamp": "1750939746", + "version": "8.x-1.10", + "datestamp": "1729182058", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -17457,62 +15846,12 @@ "homepage": "https://www.drupal.org/user/436244" } ], - "description": "Browse UI components in library pages.", + "description": "Exposed patterns in you modules and themes and display them in a pattern library page.", "homepage": "https://www.drupal.org/project/ui_patterns", "support": { "source": "https://git.drupalcode.org/project/ui_patterns" } }, - { - "name": "drupal/unique_content_field_validation", - "version": "1.1.1", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/unique_content_field_validation.git", - "reference": "1.1.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/unique_content_field_validation-1.1.1.zip", - "reference": "1.1.1", - "shasum": "a6fdc0b33e3a022fbc8f2decc8b0488ebe79cb82" - }, - "require": { - "drupal/core": "^9.1 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "1.1.1", - "datestamp": "1688169108", - "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": "Fabian Sierra", - "homepage": "https://www.drupal.org/u/fabiansierra5191", - "role": "Maintainer" - }, - { - "name": "mably", - "homepage": "https://www.drupal.org/user/3375160" - } - ], - "description": "Validate the uniqueness of the entities fields or title.", - "homepage": "http://drupal.org/project/unique_content_field_validation", - "support": { - "source": "https://cgit.drupalcode.org/unique_content_field_validation", - "issues": "https://drupal.org/project/issues/unique_content_field_validation" - } - }, { "name": "drupal/video_embed_field", "version": "2.5.0", @@ -17831,17 +16170,17 @@ }, { "name": "drupal/visitors", - "version": "2.31.0", + "version": "2.21.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/visitors.git", - "reference": "8.x-2.31" + "reference": "8.x-2.21" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/visitors-8.x-2.31.zip", - "reference": "8.x-2.31", - "shasum": "90822da7925588b0e8bc3b7d61ddd5761c0804a8" + "url": "https://ftp.drupal.org/files/projects/visitors-8.x-2.21.zip", + "reference": "8.x-2.21", + "shasum": "40b9aedc2388185a32950ec2ef18a29381d2e0f4" }, "require": { "drupal/charts": "^5", @@ -17851,14 +16190,13 @@ "matomo/device-detector": "^6.1" }, "require-dev": { - "drupal/statistics": "~1", "drush/drush": "^12 || ^13" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.31", - "datestamp": "1748725092", + "version": "8.x-2.21", + "datestamp": "1731453666", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -17892,20 +16230,20 @@ }, { "name": "drupal/webform", - "version": "6.2.9", + "version": "6.2.7", "source": { "type": "git", "url": "https://git.drupalcode.org/project/webform.git", - "reference": "6.2.9" + "reference": "6.2.7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/webform-6.2.9.zip", - "reference": "6.2.9", - "shasum": "650752c3cc6d0144c6f378b8d25d45c083e23600" + "url": "https://ftp.drupal.org/files/projects/webform-6.2.7.zip", + "reference": "6.2.7", + "shasum": "7e0520773f2521d70837371b08e09a13704b4274" }, "require": { - "drupal/core": "^10.2", + "drupal/core": "^10.1", "php": ">=8.1" }, "require-dev": { @@ -17952,8 +16290,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "6.2.9", - "datestamp": "1733851063", + "version": "6.2.7", + "datestamp": "1721425228", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -17984,13 +16322,13 @@ "name": "liam morland", "homepage": "https://www.drupal.org/user/493050" }, - { - "name": "mandclu", - "homepage": "https://www.drupal.org/user/52136" - }, { "name": "quicksketch", "homepage": "https://www.drupal.org/user/35821" + }, + { + "name": "torotil", + "homepage": "https://www.drupal.org/user/865256" } ], "description": "Enables the creation of webforms and questionnaires.", @@ -18071,26 +16409,29 @@ }, { "name": "drupal/workflow_buttons", - "version": "dev-1.x", + "version": "1.0.0-beta6", "source": { "type": "git", "url": "https://git.drupalcode.org/project/workflow_buttons.git", - "reference": "722e0651d9dc763b9582a9e33ef949ad74534ea6" + "reference": "8.x-1.0-beta6" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/workflow_buttons-8.x-1.0-beta6.zip", + "reference": "8.x-1.0-beta6", + "shasum": "3becb7ccfd7946cfd6448caae32a6f8aa8d89d33" }, "require": { - "drupal/core": "^9 || ^10 || ^11" + "drupal/core": "^9 || ^10" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.0-beta7+4-dev", - "datestamp": "1753464111", + "version": "8.x-1.0-beta6", + "datestamp": "1702440893", "security-coverage": { "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." + "message": "Beta releases are not covered by Drupal security advisories." } } }, @@ -18103,17 +16444,13 @@ "name": "beunerd", "homepage": "https://www.drupal.org/user/1312798" }, - { - "name": "elkaro", - "homepage": "https://www.drupal.org/user/3577260" - }, { "name": "gnuget", "homepage": "https://www.drupal.org/user/992990" }, { - "name": "kelly.m.jacobs", - "homepage": "https://www.drupal.org/user/3397374" + "name": "lelkneralfaro", + "homepage": "https://www.drupal.org/user/3577260" }, { "name": "mlncn", @@ -18142,16 +16479,16 @@ }, { "name": "drupal/workflow_buttons_trash", - "version": "1.0.0-beta7", + "version": "1.0.0-beta6", "require": { - "drupal/core": "^9 || ^10 || ^11", + "drupal/core": "^9 || ^10", "drupal/workflow_buttons": "^1" }, "type": "metapackage", "extra": { "drupal": { - "version": "8.x-1.0-beta7", - "datestamp": "1746664585", + "version": "8.x-1.0-beta6", + "datestamp": "1702440893", "security-coverage": { "status": "not-covered", "message": "Beta releases are not covered by Drupal security advisories." @@ -18167,17 +16504,13 @@ "name": "beunerd", "homepage": "https://www.drupal.org/user/1312798" }, - { - "name": "elkaro", - "homepage": "https://www.drupal.org/user/3577260" - }, { "name": "gnuget", "homepage": "https://www.drupal.org/user/992990" }, { - "name": "kelly.m.jacobs", - "homepage": "https://www.drupal.org/user/3397374" + "name": "lelkneralfaro", + "homepage": "https://www.drupal.org/user/3577260" }, { "name": "mlncn", @@ -18363,23 +16696,23 @@ "sut/libraries/{$name}": [ "type:drupal-library" ], - "sut/themes/unish/{$name}": [ - "drupal/empty_theme" - ], - "sut/drush/contrib/{$name}": [ - "type:drupal-drush" - ], "sut/modules/unish/{$name}": [ "drupal/devel" ], - "sut/themes/contrib/{$name}": [ - "type:drupal-theme" + "sut/themes/unish/{$name}": [ + "drupal/empty_theme" ], "sut/modules/contrib/{$name}": [ "type:drupal-module" ], "sut/profiles/contrib/{$name}": [ "type:drupal-profile" + ], + "sut/themes/contrib/{$name}": [ + "type:drupal-theme" + ], + "sut/drush/contrib/{$name}": [ + "type:drupal-drush" ] } }, @@ -18448,20 +16781,20 @@ "version": "2.0.x-dev", "source": { "type": "git", - "url": "https://gitlab.com/drutopia/drutopia.git", - "reference": "2192b03e0c0dba53dd1181c19c5c3c3ece643ba6" + "url": "git@gitlab.com:drutopia/drutopia.git", + "reference": "04f95b36c8fb2a227fd4bf4526566feacb1dd81b" }, "dist": { "type": "zip", - "url": "https://gitlab.com/api/v4/projects/drutopia%2Fdrutopia/repository/archive.zip?sha=2192b03e0c0dba53dd1181c19c5c3c3ece643ba6", - "reference": "2192b03e0c0dba53dd1181c19c5c3c3ece643ba6", + "url": "https://gitlab.com/api/v4/projects/drutopia%2Fdrutopia/repository/archive.zip?sha=04f95b36c8fb2a227fd4bf4526566feacb1dd81b", + "reference": "04f95b36c8fb2a227fd4bf4526566feacb1dd81b", "shasum": "" }, "require": { "cweagans/composer-patches": "^1", "drupal/antibot": "^2", "drupal/block_visibility_groups": "^2", - "drupal/bulma_components": "^1", + "drupal/bulma_components": "^1.0@alpha", "drupal/config_actions_provider": "^1", "drupal/config_sync": "^3", "drupal/config_update": "^2", @@ -18485,19 +16818,19 @@ "drupal/drutopia_social": "^2", "drupal/drutopia_storyline": "^2", "drupal/drutopia_user": "^2", - "drupal/eu_cookie_compliance": "^1", + "drupal/eu_cookie_compliance": "^1.9", "drupal/features": "^3", - "drupal/gdpr": "^3", - "drupal/gin": "^4", - "drupal/gin_toolbar": "^2", - "drupal/honeypot": "^2", - "drupal/menu_block": "^1", + "drupal/gdpr": "^3.0@alpha", + "drupal/gin": "^3.0", + "drupal/gin_toolbar": "^1.0@beta", + "drupal/honeypot": "^2.0", + "drupal/menu_block": "^1.6", "drupal/octavia": "^2", - "drupal/paranoia": "^1", + "drupal/paranoia": "^1.0-rc1", "drupal/riddler": "^3", "drupal/subprofiles": "^2", - "drupal/twigsuggest": "^2", - "drupal/yaml_content": "^1", + "drupal/twigsuggest": "^1.0", + "drupal/yaml_content": "^1.0-alpha7", "geeks4change/composer-pin": "*" }, "require-dev": { @@ -18512,31 +16845,27 @@ }, "type": "drupal-profile", "extra": { - "patches": { - "drupal/ds": { - "Parent theme template inheritance bug": "https://www.drupal.org/files/issues/2021-02-22/2895316-12.patch" - }, - "drupal/core": { - "Invoke hook after a site install is complete": "https://git.drupalcode.org/project/drupal/-/merge_requests/1512.diff" - } - }, "drupal-scaffold": { "locations": { "web-root": "web/" } }, - "enable-patching": true + "enable-patching": true, + "patches": { + "drupal/core": { + "Invoke hook after a site install is complete": "https://git.drupalcode.org/project/drupal/-/merge_requests/1512.diff" + }, + "drupal/ds": { + "Parent theme template inheritance bug": "https://www.drupal.org/files/issues/2021-02-22/2895316-12.patch" + } + } }, "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Drutopia's base distribution provides an enhanced starting place for building sites for grassroots organizations and other purposes.", - "support": { - "issues": "https://gitlab.com/drutopia/drutopia/-/issues", - "source": "https://gitlab.com/drutopia/drutopia/-/tree/2.0.x" - }, - "time": "2025-02-07T15:24:33+00:00" + "time": "2023-11-30T23:44:28+00:00" }, { "name": "easyrdf/easyrdf", @@ -18615,16 +16944,16 @@ }, { "name": "egulias/email-validator", - "version": "4.0.4", + "version": "4.0.2", "source": { "type": "git", "url": "https://github.com/egulias/EmailValidator.git", - "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa" + "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa", - "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e", + "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e", "shasum": "" }, "require": { @@ -18670,7 +16999,7 @@ ], "support": { "issues": "https://github.com/egulias/EmailValidator/issues", - "source": "https://github.com/egulias/EmailValidator/tree/4.0.4" + "source": "https://github.com/egulias/EmailValidator/tree/4.0.2" }, "funding": [ { @@ -18678,7 +17007,7 @@ "type": "github" } ], - "time": "2025-03-06T22:45:56+00:00" + "time": "2023-10-06T06:47:41+00:00" }, { "name": "ezyang/htmlpurifier", @@ -18840,7 +17169,7 @@ ], "description": "Provides helper commands to do project level version/hash pinning.", "support": { - "issues": "https://gitlab.com/geeks4change/packages/composer-pin/-/issues", + "issues": "https://gitlab.com/api/v4/projects/12048815/issues", "source": "https://gitlab.com/geeks4change/packages/composer-pin/-/tree/master" }, "time": "2020-06-02T10:38:25+00:00" @@ -18967,16 +17296,16 @@ }, { "name": "grasmash/expander", - "version": "3.0.1", + "version": "3.0.0", "source": { "type": "git", "url": "https://github.com/grasmash/expander.git", - "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4" + "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/grasmash/expander/zipball/eea11b9afb0c32483b18b9009f4ca07b770e39f4", - "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4", + "url": "https://api.github.com/repos/grasmash/expander/zipball/bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82", + "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82", "shasum": "" }, "require": { @@ -19013,9 +17342,9 @@ "description": "Expands internal property references in PHP arrays file.", "support": { "issues": "https://github.com/grasmash/expander/issues", - "source": "https://github.com/grasmash/expander/tree/3.0.1" + "source": "https://github.com/grasmash/expander/tree/3.0.0" }, - "time": "2024-11-25T23:28:05+00:00" + "time": "2022-05-10T13:14:49+00:00" }, { "name": "grasmash/yaml-cli", @@ -19075,22 +17404,22 @@ }, { "name": "guzzlehttp/guzzle", - "version": "7.9.3", + "version": "7.8.2", "source": { "type": "git", "url": "https://github.com/guzzle/guzzle.git", - "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77" + "reference": "f4152d9eb85c445fe1f992001d1748e8bec070d2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7b2f29fe81dc4da0ca0ea7d42107a0845946ea77", - "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/f4152d9eb85c445fe1f992001d1748e8bec070d2", + "reference": "f4152d9eb85c445fe1f992001d1748e8bec070d2", "shasum": "" }, "require": { "ext-json": "*", "guzzlehttp/promises": "^1.5.3 || ^2.0.3", - "guzzlehttp/psr7": "^2.7.0", + "guzzlehttp/psr7": "^1.9.1 || ^2.6.3", "php": "^7.2.5 || ^8.0", "psr/http-client": "^1.0", "symfony/deprecation-contracts": "^2.2 || ^3.0" @@ -19181,7 +17510,7 @@ ], "support": { "issues": "https://github.com/guzzle/guzzle/issues", - "source": "https://github.com/guzzle/guzzle/tree/7.9.3" + "source": "https://github.com/guzzle/guzzle/tree/7.8.2" }, "funding": [ { @@ -19197,20 +17526,20 @@ "type": "tidelift" } ], - "time": "2025-03-27T13:37:11+00:00" + "time": "2024-07-18T11:12:18+00:00" }, { "name": "guzzlehttp/promises", - "version": "2.2.0", + "version": "2.0.4", "source": { "type": "git", "url": "https://github.com/guzzle/promises.git", - "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c" + "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/7c69f28996b0a6920945dd20b3857e499d9ca96c", - "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c", + "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455", + "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455", "shasum": "" }, "require": { @@ -19264,7 +17593,7 @@ ], "support": { "issues": "https://github.com/guzzle/promises/issues", - "source": "https://github.com/guzzle/promises/tree/2.2.0" + "source": "https://github.com/guzzle/promises/tree/2.0.4" }, "funding": [ { @@ -19280,20 +17609,20 @@ "type": "tidelift" } ], - "time": "2025-03-27T13:27:01+00:00" + "time": "2024-10-17T10:06:22+00:00" }, { "name": "guzzlehttp/psr7", - "version": "2.7.1", + "version": "2.6.3", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16" + "reference": "6de29867b18790c0d2c846af4c13a24cc3ad56f3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/c2270caaabe631b3b44c85f99e5a04bbb8060d16", - "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/6de29867b18790c0d2c846af4c13a24cc3ad56f3", + "reference": "6de29867b18790c0d2c846af4c13a24cc3ad56f3", "shasum": "" }, "require": { @@ -19380,7 +17709,7 @@ ], "support": { "issues": "https://github.com/guzzle/psr7/issues", - "source": "https://github.com/guzzle/psr7/tree/2.7.1" + "source": "https://github.com/guzzle/psr7/tree/2.6.3" }, "funding": [ { @@ -19396,7 +17725,7 @@ "type": "tidelift" } ], - "time": "2025-03-27T12:30:47+00:00" + "time": "2024-07-18T09:59:12+00:00" }, { "name": "indieauth/client", @@ -19650,16 +17979,16 @@ }, { "name": "laminas/laminas-escaper", - "version": "2.17.0", + "version": "2.14.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-escaper.git", - "reference": "df1ef9503299a8e3920079a16263b578eaf7c3ba" + "reference": "0f7cb975f4443cf22f33408925c231225cfba8cb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/df1ef9503299a8e3920079a16263b578eaf7c3ba", - "reference": "df1ef9503299a8e3920079a16263b578eaf7c3ba", + "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/0f7cb975f4443cf22f33408925c231225cfba8cb", + "reference": "0f7cb975f4443cf22f33408925c231225cfba8cb", "shasum": "" }, "require": { @@ -19671,11 +18000,12 @@ "zendframework/zend-escaper": "*" }, "require-dev": { - "infection/infection": "^0.29.8", - "laminas/laminas-coding-standard": "~3.0.1", - "phpunit/phpunit": "^10.5.45", - "psalm/plugin-phpunit": "^0.19.2", - "vimeo/psalm": "^6.6.2" + "infection/infection": "^0.27.9", + "laminas/laminas-coding-standard": "~3.0.0", + "maglnet/composer-require-checker": "^3.8.0", + "phpunit/phpunit": "^9.6.16", + "psalm/plugin-phpunit": "^0.19.0", + "vimeo/psalm": "^5.21.1" }, "type": "library", "autoload": { @@ -19707,25 +18037,24 @@ "type": "community_bridge" } ], - "time": "2025-05-06T19:29:36+00:00" + "time": "2024-10-24T10:12:53+00:00" }, { "name": "laminas/laminas-feed", - "version": "2.24.0", + "version": "2.23.0", "source": { "type": "git", "url": "https://github.com/laminas/laminas-feed.git", - "reference": "3df6dfe39ce1f53df64eb12f9fcf9bb29074cd50" + "reference": "23807e692b3174750b426143bd93572b71b6739a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/3df6dfe39ce1f53df64eb12f9fcf9bb29074cd50", - "reference": "3df6dfe39ce1f53df64eb12f9fcf9bb29074cd50", + "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/23807e692b3174750b426143bd93572b71b6739a", + "reference": "23807e692b3174750b426143bd93572b71b6739a", "shasum": "" }, "require": { "ext-dom": "*", - "ext-filter": "*", "ext-libxml": "*", "laminas/laminas-escaper": "^2.9", "laminas/laminas-stdlib": "^3.6", @@ -19788,7 +18117,7 @@ "type": "community_bridge" } ], - "time": "2025-06-25T12:37:12+00:00" + "time": "2024-10-09T10:53:30+00:00" }, { "name": "laminas/laminas-stdlib", @@ -19911,21 +18240,21 @@ }, { "name": "lcobucci/clock", - "version": "3.0.0", + "version": "2.3.0", "source": { "type": "git", "url": "https://github.com/lcobucci/clock.git", - "reference": "039ef98c6b57b101d10bd11d8fdfda12cbd996dc" + "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/lcobucci/clock/zipball/039ef98c6b57b101d10bd11d8fdfda12cbd996dc", - "reference": "039ef98c6b57b101d10bd11d8fdfda12cbd996dc", + "url": "https://api.github.com/repos/lcobucci/clock/zipball/c7aadcd6fd97ed9e199114269c0be3f335e38876", + "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876", "shasum": "" }, "require": { "php": "~8.1.0 || ~8.2.0", - "psr/clock": "^1.0" + "stella-maris/clock": "^0.1.7" }, "provide": { "psr/clock-implementation": "1.0" @@ -19959,7 +18288,7 @@ "description": "Yet another clock abstraction", "support": { "issues": "https://github.com/lcobucci/clock/issues", - "source": "https://github.com/lcobucci/clock/tree/3.0.0" + "source": "https://github.com/lcobucci/clock/tree/2.3.0" }, "funding": [ { @@ -19971,45 +18300,47 @@ "type": "patreon" } ], - "time": "2022-12-19T15:00:24+00:00" + "time": "2022-12-19T14:38:11+00:00" }, { "name": "lcobucci/jwt", - "version": "4.3.0", + "version": "4.0.4", "source": { "type": "git", "url": "https://github.com/lcobucci/jwt.git", - "reference": "4d7de2fe0d51a96418c0d04004986e410e87f6b4" + "reference": "55564265fddf810504110bd68ca311932324b0e9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/lcobucci/jwt/zipball/4d7de2fe0d51a96418c0d04004986e410e87f6b4", - "reference": "4d7de2fe0d51a96418c0d04004986e410e87f6b4", + "url": "https://api.github.com/repos/lcobucci/jwt/zipball/55564265fddf810504110bd68ca311932324b0e9", + "reference": "55564265fddf810504110bd68ca311932324b0e9", "shasum": "" }, "require": { - "ext-hash": "*", - "ext-json": "*", "ext-mbstring": "*", "ext-openssl": "*", - "ext-sodium": "*", - "lcobucci/clock": "^2.0 || ^3.0", + "lcobucci/clock": "^2.0", "php": "^7.4 || ^8.0" }, "require-dev": { - "infection/infection": "^0.21", + "infection/infection": "^0.20", "lcobucci/coding-standard": "^6.0", - "mikey179/vfsstream": "^1.6.7", - "phpbench/phpbench": "^1.2", + "mikey179/vfsstream": "^1.6", + "phpbench/phpbench": "^0.17", "phpstan/extension-installer": "^1.0", - "phpstan/phpstan": "^1.4", - "phpstan/phpstan-deprecation-rules": "^1.0", - "phpstan/phpstan-phpunit": "^1.0", - "phpstan/phpstan-strict-rules": "^1.0", + "phpstan/phpstan": "^0.12", + "phpstan/phpstan-deprecation-rules": "^0.12", + "phpstan/phpstan-phpunit": "^0.12", + "phpstan/phpstan-strict-rules": "^0.12", "phpunit/php-invoker": "^3.1", - "phpunit/phpunit": "^9.5" + "phpunit/phpunit": "^9.4" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, "autoload": { "psr-4": { "Lcobucci\\JWT\\": "src" @@ -20033,7 +18364,7 @@ ], "support": { "issues": "https://github.com/lcobucci/jwt/issues", - "source": "https://github.com/lcobucci/jwt/tree/4.3.0" + "source": "https://github.com/lcobucci/jwt/tree/4.0.4" }, "funding": [ { @@ -20045,7 +18376,7 @@ "type": "patreon" } ], - "time": "2023-01-02T13:28:00+00:00" + "time": "2021-09-28T19:18:28+00:00" }, { "name": "league/commonmark", @@ -20142,16 +18473,16 @@ }, { "name": "league/container", - "version": "4.2.5", + "version": "4.2.4", "source": { "type": "git", "url": "https://github.com/thephpleague/container.git", - "reference": "d3cebb0ff4685ff61c749e54b27db49319e2ec00" + "reference": "7ea728b013b9a156c409c6f0fc3624071b742dec" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/container/zipball/d3cebb0ff4685ff61c749e54b27db49319e2ec00", - "reference": "d3cebb0ff4685ff61c749e54b27db49319e2ec00", + "url": "https://api.github.com/repos/thephpleague/container/zipball/7ea728b013b9a156c409c6f0fc3624071b742dec", + "reference": "7ea728b013b9a156c409c6f0fc3624071b742dec", "shasum": "" }, "require": { @@ -20176,11 +18507,11 @@ "type": "library", "extra": { "branch-alias": { - "dev-1.x": "1.x-dev", - "dev-2.x": "2.x-dev", - "dev-3.x": "3.x-dev", + "dev-master": "4.x-dev", "dev-4.x": "4.x-dev", - "dev-master": "4.x-dev" + "dev-3.x": "3.x-dev", + "dev-2.x": "2.x-dev", + "dev-1.x": "1.x-dev" } }, "autoload": { @@ -20212,7 +18543,7 @@ ], "support": { "issues": "https://github.com/thephpleague/container/issues", - "source": "https://github.com/thephpleague/container/tree/4.2.5" + "source": "https://github.com/thephpleague/container/tree/4.2.4" }, "funding": [ { @@ -20220,20 +18551,20 @@ "type": "github" } ], - "time": "2025-05-20T12:55:37+00:00" + "time": "2024-11-10T12:42:13+00:00" }, { "name": "league/csv", - "version": "9.24.1", + "version": "9.18.0", "source": { "type": "git", "url": "https://github.com/thephpleague/csv.git", - "reference": "e0221a3f16aa2a823047d59fab5809d552e29bc8" + "reference": "b02d010e4055ae992247f6ffd1e7b103ef2a0790" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/csv/zipball/e0221a3f16aa2a823047d59fab5809d552e29bc8", - "reference": "e0221a3f16aa2a823047d59fab5809d552e29bc8", + "url": "https://api.github.com/repos/thephpleague/csv/zipball/b02d010e4055ae992247f6ffd1e7b103ef2a0790", + "reference": "b02d010e4055ae992247f6ffd1e7b103ef2a0790", "shasum": "" }, "require": { @@ -20243,23 +18574,19 @@ "require-dev": { "ext-dom": "*", "ext-xdebug": "*", - "friendsofphp/php-cs-fixer": "^3.75.0", - "phpbench/phpbench": "^1.4.1", - "phpstan/phpstan": "^1.12.27", + "friendsofphp/php-cs-fixer": "^3.64.0", + "phpbench/phpbench": "^1.3.1", + "phpstan/phpstan": "^1.12.6", "phpstan/phpstan-deprecation-rules": "^1.2.1", - "phpstan/phpstan-phpunit": "^1.4.2", - "phpstan/phpstan-strict-rules": "^1.6.2", - "phpunit/phpunit": "^10.5.16 || ^11.5.22", - "symfony/var-dumper": "^6.4.8 || ^7.3.0" + "phpstan/phpstan-phpunit": "^1.4.0", + "phpstan/phpstan-strict-rules": "^1.6.1", + "phpunit/phpunit": "^10.5.16 || ^11.4.1", + "symfony/var-dumper": "^6.4.8 || ^7.1.5" }, "suggest": { "ext-dom": "Required to use the XMLConverter and the HTMLConverter classes", "ext-iconv": "Needed to ease transcoding CSV using iconv stream filters", - "ext-mbstring": "Needed to ease transcoding CSV using mb stream filters", - "ext-mysqli": "Requiered to use the package with the MySQLi extension", - "ext-pdo": "Required to use the package with the PDO extension", - "ext-pgsql": "Requiered to use the package with the PgSQL extension", - "ext-sqlite3": "Required to use the package with the SQLite3 extension" + "ext-mbstring": "Needed to ease transcoding CSV using mb stream filters" }, "type": "library", "extra": { @@ -20272,7 +18599,7 @@ "src/functions_include.php" ], "psr-4": { - "League\\Csv\\": "src" + "League\\Csv\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -20311,34 +18638,39 @@ "type": "github" } ], - "time": "2025-06-25T14:53:51+00:00" + "time": "2024-10-18T08:14:48+00:00" }, { "name": "league/oauth2-client", - "version": "2.8.1", + "version": "2.7.0", "source": { "type": "git", "url": "https://github.com/thephpleague/oauth2-client.git", - "reference": "9df2924ca644736c835fc60466a3a60390d334f9" + "reference": "160d6274b03562ebeb55ed18399281d8118b76c8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/oauth2-client/zipball/9df2924ca644736c835fc60466a3a60390d334f9", - "reference": "9df2924ca644736c835fc60466a3a60390d334f9", + "url": "https://api.github.com/repos/thephpleague/oauth2-client/zipball/160d6274b03562ebeb55ed18399281d8118b76c8", + "reference": "160d6274b03562ebeb55ed18399281d8118b76c8", "shasum": "" }, "require": { - "ext-json": "*", - "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5", - "php": "^7.1 || >=8.0.0 <8.5.0" + "guzzlehttp/guzzle": "^6.0 || ^7.0", + "paragonie/random_compat": "^1 || ^2 || ^9.99", + "php": "^5.6 || ^7.0 || ^8.0" }, "require-dev": { "mockery/mockery": "^1.3.5", - "php-parallel-lint/php-parallel-lint": "^1.4", - "phpunit/phpunit": "^7 || ^8 || ^9 || ^10 || ^11", - "squizlabs/php_codesniffer": "^3.11" + "php-parallel-lint/php-parallel-lint": "^1.3.1", + "phpunit/phpunit": "^5.7 || ^6.0 || ^9.5", + "squizlabs/php_codesniffer": "^2.3 || ^3.0" }, "type": "library", + "extra": { + "branch-alias": { + "dev-2.x": "2.0.x-dev" + } + }, "autoload": { "psr-4": { "League\\OAuth2\\Client\\": "src/" @@ -20374,9 +18706,9 @@ ], "support": { "issues": "https://github.com/thephpleague/oauth2-client/issues", - "source": "https://github.com/thephpleague/oauth2-client/tree/2.8.1" + "source": "https://github.com/thephpleague/oauth2-client/tree/2.7.0" }, - "time": "2025-02-26T04:37:30+00:00" + "time": "2023-04-16T18:19:15+00:00" }, { "name": "league/oauth2-facebook", @@ -20503,16 +18835,16 @@ }, { "name": "matomo/device-detector", - "version": "6.4.6", + "version": "6.4.1", "source": { "type": "git", "url": "https://github.com/matomo-org/device-detector.git", - "reference": "6f07f615199851548db47a900815d2ea2cdcde08" + "reference": "0d364e0dd6c177da3c24cd4049178026324fd7ac" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/matomo-org/device-detector/zipball/6f07f615199851548db47a900815d2ea2cdcde08", - "reference": "6f07f615199851548db47a900815d2ea2cdcde08", + "url": "https://api.github.com/repos/matomo-org/device-detector/zipball/0d364e0dd6c177da3c24cd4049178026324fd7ac", + "reference": "0d364e0dd6c177da3c24cd4049178026324fd7ac", "shasum": "" }, "require": { @@ -20529,7 +18861,6 @@ "phpunit/phpunit": "^8.5.8", "psr/cache": "^1.0.1", "psr/simple-cache": "^1.0.1", - "slevomat/coding-standard": "<8.16.0", "symfony/yaml": "^5.1.7" }, "suggest": { @@ -20569,20 +18900,20 @@ "source": "https://github.com/matomo-org/matomo", "wiki": "https://dev.matomo.org/" }, - "time": "2025-06-10T10:00:59+00:00" + "time": "2024-09-24T13:50:04+00:00" }, { "name": "maxmind-db/reader", - "version": "v1.12.1", + "version": "v1.12.0", "source": { "type": "git", "url": "https://github.com/maxmind/MaxMind-DB-Reader-php.git", - "reference": "815939e006b7e68062b540ec9e86aaa8be2b6ce4" + "reference": "5b2d7a721dedfaef9dc20822c5fe7d26f9f8eb90" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/815939e006b7e68062b540ec9e86aaa8be2b6ce4", - "reference": "815939e006b7e68062b540ec9e86aaa8be2b6ce4", + "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/5b2d7a721dedfaef9dc20822c5fe7d26f9f8eb90", + "reference": "5b2d7a721dedfaef9dc20822c5fe7d26f9f8eb90", "shasum": "" }, "require": { @@ -20630,9 +18961,9 @@ ], "support": { "issues": "https://github.com/maxmind/MaxMind-DB-Reader-php/issues", - "source": "https://github.com/maxmind/MaxMind-DB-Reader-php/tree/v1.12.1" + "source": "https://github.com/maxmind/MaxMind-DB-Reader-php/tree/v1.12.0" }, - "time": "2025-05-05T20:56:32+00:00" + "time": "2024-11-14T22:43:47+00:00" }, { "name": "maxmind/web-service-common", @@ -20687,16 +19018,16 @@ }, { "name": "mck89/peast", - "version": "v1.17.2", + "version": "v1.16.3", "source": { "type": "git", "url": "https://github.com/mck89/peast.git", - "reference": "465810689c477fbba17f4f949b75e4d0bdab13ea" + "reference": "645ec21b650bc2aced18285c85f220d22afc1430" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mck89/peast/zipball/465810689c477fbba17f4f949b75e4d0bdab13ea", - "reference": "465810689c477fbba17f4f949b75e4d0bdab13ea", + "url": "https://api.github.com/repos/mck89/peast/zipball/645ec21b650bc2aced18285c85f220d22afc1430", + "reference": "645ec21b650bc2aced18285c85f220d22afc1430", "shasum": "" }, "require": { @@ -20709,7 +19040,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.17.2-dev" + "dev-master": "1.16.3-dev" } }, "autoload": { @@ -20730,9 +19061,9 @@ "description": "Peast is PHP library that generates AST for JavaScript code", "support": { "issues": "https://github.com/mck89/peast/issues", - "source": "https://github.com/mck89/peast/tree/v1.17.2" + "source": "https://github.com/mck89/peast/tree/v1.16.3" }, - "time": "2025-07-01T09:30:45+00:00" + "time": "2024-07-23T14:00:32+00:00" }, { "name": "mf2/mf2", @@ -20796,147 +19127,6 @@ }, "time": "2022-02-10T01:05:27+00:00" }, - { - "name": "mikehaertl/php-shellcommand", - "version": "1.7.0", - "source": { - "type": "git", - "url": "https://github.com/mikehaertl/php-shellcommand.git", - "reference": "e79ea528be155ffdec6f3bf1a4a46307bb49e545" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/mikehaertl/php-shellcommand/zipball/e79ea528be155ffdec6f3bf1a4a46307bb49e545", - "reference": "e79ea528be155ffdec6f3bf1a4a46307bb49e545", - "shasum": "" - }, - "require": { - "php": ">= 5.3.0" - }, - "require-dev": { - "phpunit/phpunit": ">4.0 <=9.4" - }, - "type": "library", - "autoload": { - "psr-4": { - "mikehaertl\\shellcommand\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Michael Härtl", - "email": "haertl.mike@gmail.com" - } - ], - "description": "An object oriented interface to shell commands", - "keywords": [ - "shell" - ], - "support": { - "issues": "https://github.com/mikehaertl/php-shellcommand/issues", - "source": "https://github.com/mikehaertl/php-shellcommand/tree/1.7.0" - }, - "time": "2023-04-19T08:25:22+00:00" - }, - { - "name": "mikehaertl/php-tmpfile", - "version": "1.3.0", - "source": { - "type": "git", - "url": "https://github.com/mikehaertl/php-tmpfile.git", - "reference": "a5392bed91f67e2849a7cb24075d346468e1b1a8" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/mikehaertl/php-tmpfile/zipball/a5392bed91f67e2849a7cb24075d346468e1b1a8", - "reference": "a5392bed91f67e2849a7cb24075d346468e1b1a8", - "shasum": "" - }, - "require-dev": { - "php": ">=5.3.0", - "phpunit/phpunit": ">4.0 <=9.4" - }, - "type": "library", - "autoload": { - "psr-4": { - "mikehaertl\\tmp\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Michael Härtl", - "email": "haertl.mike@gmail.com" - } - ], - "description": "A convenience class for temporary files", - "keywords": [ - "files" - ], - "support": { - "issues": "https://github.com/mikehaertl/php-tmpfile/issues", - "source": "https://github.com/mikehaertl/php-tmpfile/tree/1.3.0" - }, - "time": "2024-10-14T16:12:48+00:00" - }, - { - "name": "mikehaertl/phpwkhtmltopdf", - "version": "2.5.0", - "source": { - "type": "git", - "url": "https://github.com/mikehaertl/phpwkhtmltopdf.git", - "reference": "17ee71341591415d942774eda2c98d8ba7ea9e90" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/mikehaertl/phpwkhtmltopdf/zipball/17ee71341591415d942774eda2c98d8ba7ea9e90", - "reference": "17ee71341591415d942774eda2c98d8ba7ea9e90", - "shasum": "" - }, - "require": { - "mikehaertl/php-shellcommand": "^1.5.0", - "mikehaertl/php-tmpfile": "^1.2.1", - "php": ">=5.0.0" - }, - "require-dev": { - "phpunit/phpunit": ">4.0 <9.4" - }, - "type": "library", - "autoload": { - "psr-4": { - "mikehaertl\\wkhtmlto\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Michael Haertl", - "email": "haertl.mike@gmail.com" - } - ], - "description": "A slim PHP wrapper around wkhtmltopdf with an easy to use and clean OOP interface", - "homepage": "http://mikehaertl.github.com/phpwkhtmltopdf/", - "keywords": [ - "pdf", - "wkhtmltoimage", - "wkhtmltopdf" - ], - "support": { - "issues": "https://github.com/mikehaertl/phpwkhtmltopdf/issues", - "source": "https://github.com/mikehaertl/phpwkhtmltopdf/tree/2.5.0" - }, - "time": "2021-03-01T19:41:06+00:00" - }, { "name": "mkalkbrenner/php-htmldiff-advanced", "version": "0.0.8", @@ -20978,179 +19168,6 @@ }, "time": "2016-07-25T17:07:32+00:00" }, - { - "name": "mpdf/mpdf", - "version": "v8.2.5", - "source": { - "type": "git", - "url": "https://github.com/mpdf/mpdf.git", - "reference": "e175b05e3e00977b85feb96a8cccb174ac63621f" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/mpdf/mpdf/zipball/e175b05e3e00977b85feb96a8cccb174ac63621f", - "reference": "e175b05e3e00977b85feb96a8cccb174ac63621f", - "shasum": "" - }, - "require": { - "ext-gd": "*", - "ext-mbstring": "*", - "mpdf/psr-http-message-shim": "^1.0 || ^2.0", - "mpdf/psr-log-aware-trait": "^2.0 || ^3.0", - "myclabs/deep-copy": "^1.7", - "paragonie/random_compat": "^1.4|^2.0|^9.99.99", - "php": "^5.6 || ^7.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0", - "psr/http-message": "^1.0 || ^2.0", - "psr/log": "^1.0 || ^2.0 || ^3.0", - "setasign/fpdi": "^2.1" - }, - "require-dev": { - "mockery/mockery": "^1.3.0", - "mpdf/qrcode": "^1.1.0", - "squizlabs/php_codesniffer": "^3.5.0", - "tracy/tracy": "~2.5", - "yoast/phpunit-polyfills": "^1.0" - }, - "suggest": { - "ext-bcmath": "Needed for generation of some types of barcodes", - "ext-xml": "Needed mainly for SVG manipulation", - "ext-zlib": "Needed for compression of embedded resources, such as fonts" - }, - "type": "library", - "autoload": { - "files": [ - "src/functions.php" - ], - "psr-4": { - "Mpdf\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-only" - ], - "authors": [ - { - "name": "Matěj Humpál", - "role": "Developer, maintainer" - }, - { - "name": "Ian Back", - "role": "Developer (retired)" - } - ], - "description": "PHP library generating PDF files from UTF-8 encoded HTML", - "homepage": "https://mpdf.github.io", - "keywords": [ - "pdf", - "php", - "utf-8" - ], - "support": { - "docs": "https://mpdf.github.io", - "issues": "https://github.com/mpdf/mpdf/issues", - "source": "https://github.com/mpdf/mpdf" - }, - "funding": [ - { - "url": "https://www.paypal.me/mpdf", - "type": "custom" - } - ], - "time": "2024-11-18T15:30:42+00:00" - }, - { - "name": "mpdf/psr-http-message-shim", - "version": "v2.0.1", - "source": { - "type": "git", - "url": "https://github.com/mpdf/psr-http-message-shim.git", - "reference": "f25a0153d645e234f9db42e5433b16d9b113920f" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/mpdf/psr-http-message-shim/zipball/f25a0153d645e234f9db42e5433b16d9b113920f", - "reference": "f25a0153d645e234f9db42e5433b16d9b113920f", - "shasum": "" - }, - "require": { - "psr/http-message": "^2.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Mpdf\\PsrHttpMessageShim\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Mark Dorison", - "email": "mark@chromatichq.com" - }, - { - "name": "Kristofer Widholm", - "email": "kristofer@chromatichq.com" - }, - { - "name": "Nigel Cunningham", - "email": "nigel.cunningham@technocrat.com.au" - } - ], - "description": "Shim to allow support of different psr/message versions.", - "support": { - "issues": "https://github.com/mpdf/psr-http-message-shim/issues", - "source": "https://github.com/mpdf/psr-http-message-shim/tree/v2.0.1" - }, - "time": "2023-10-02T14:34:03+00:00" - }, - { - "name": "mpdf/psr-log-aware-trait", - "version": "v3.0.0", - "source": { - "type": "git", - "url": "https://github.com/mpdf/psr-log-aware-trait.git", - "reference": "a633da6065e946cc491e1c962850344bb0bf3e78" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/mpdf/psr-log-aware-trait/zipball/a633da6065e946cc491e1c962850344bb0bf3e78", - "reference": "a633da6065e946cc491e1c962850344bb0bf3e78", - "shasum": "" - }, - "require": { - "psr/log": "^3.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Mpdf\\PsrLogAwareTrait\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Mark Dorison", - "email": "mark@chromatichq.com" - }, - { - "name": "Kristofer Widholm", - "email": "kristofer@chromatichq.com" - } - ], - "description": "Trait to allow support of different psr/log versions.", - "support": { - "issues": "https://github.com/mpdf/psr-log-aware-trait/issues", - "source": "https://github.com/mpdf/psr-log-aware-trait/tree/v3.0.0" - }, - "time": "2023-05-03T06:19:36+00:00" - }, { "name": "mtownsend/xml-to-array", "version": "2.0.0", @@ -21258,78 +19275,18 @@ }, "time": "2019-09-10T13:16:29+00:00" }, - { - "name": "myclabs/deep-copy", - "version": "1.13.3", - "source": { - "type": "git", - "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "faed855a7b5f4d4637717c2b3863e277116beb36" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/faed855a7b5f4d4637717c2b3863e277116beb36", - "reference": "faed855a7b5f4d4637717c2b3863e277116beb36", - "shasum": "" - }, - "require": { - "php": "^7.1 || ^8.0" - }, - "conflict": { - "doctrine/collections": "<1.6.8", - "doctrine/common": "<2.13.3 || >=3 <3.2.2" - }, - "require-dev": { - "doctrine/collections": "^1.6.8", - "doctrine/common": "^2.13.3 || ^3.2.2", - "phpspec/prophecy": "^1.10", - "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" - }, - "type": "library", - "autoload": { - "files": [ - "src/DeepCopy/deep_copy.php" - ], - "psr-4": { - "DeepCopy\\": "src/DeepCopy/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "description": "Create deep copies (clones) of your objects", - "keywords": [ - "clone", - "copy", - "duplicate", - "object", - "object graph" - ], - "support": { - "issues": "https://github.com/myclabs/DeepCopy/issues", - "source": "https://github.com/myclabs/DeepCopy/tree/1.13.3" - }, - "funding": [ - { - "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", - "type": "tidelift" - } - ], - "time": "2025-07-05T12:25:42+00:00" - }, { "name": "nikic/php-parser", - "version": "v5.6.0", + "version": "v5.3.1", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "221b0d0fdf1369c71047ad1d18bb5880017bbc56" + "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/221b0d0fdf1369c71047ad1d18bb5880017bbc56", - "reference": "221b0d0fdf1369c71047ad1d18bb5880017bbc56", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/8eea230464783aa9671db8eea6f8c6ac5285794b", + "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b", "shasum": "" }, "require": { @@ -21372,9 +19329,9 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v5.6.0" + "source": "https://github.com/nikic/PHP-Parser/tree/v5.3.1" }, - "time": "2025-07-27T20:03:57+00:00" + "time": "2024-10-08T18:51:32+00:00" }, { "name": "p3k/http", @@ -22237,44 +20194,6 @@ }, "time": "2021-09-22T16:57:06+00:00" }, - { - "name": "politsin/jquery-ui-touch-punch", - "version": "1.0", - "source": { - "type": "git", - "url": "https://github.com/politsin/jquery-ui-touch-punch.git", - "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/politsin/jquery-ui-touch-punch/zipball/2fe375e05821e267f0f3c0e063197f5c406896dd", - "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd", - "shasum": "" - }, - "type": "drupal-library", - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Dave Furfero", - "email": "furf@furf.com" - } - ], - "description": "Extension to jQuery UI for mobile touch event support.", - "homepage": "http://touchpunch.furf.com/", - "keywords": [ - "gestures", - "mobile", - "touch" - ], - "support": { - "issues": "https://github.com/politsin/jquery-ui-touch-punch/issues", - "source": "https://github.com/politsin/jquery-ui-touch-punch/tree/1.0" - }, - "time": "2020-12-15T10:26:18+00:00" - }, { "name": "psr/cache", "version": "3.0.0", @@ -22687,16 +20606,16 @@ }, { "name": "psy/psysh", - "version": "v0.12.9", + "version": "v0.12.4", "source": { "type": "git", "url": "https://github.com/bobthecow/psysh.git", - "reference": "1b801844becfe648985372cb4b12ad6840245ace" + "reference": "2fd717afa05341b4f8152547f142cd2f130f6818" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bobthecow/psysh/zipball/1b801844becfe648985372cb4b12ad6840245ace", - "reference": "1b801844becfe648985372cb4b12ad6840245ace", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/2fd717afa05341b4f8152547f142cd2f130f6818", + "reference": "2fd717afa05341b4f8152547f142cd2f130f6818", "shasum": "" }, "require": { @@ -22723,12 +20642,12 @@ ], "type": "library", "extra": { + "branch-alias": { + "dev-main": "0.12.x-dev" + }, "bamarni-bin": { "bin-links": false, "forward-command": false - }, - "branch-alias": { - "dev-main": "0.12.x-dev" } }, "autoload": { @@ -22760,9 +20679,9 @@ ], "support": { "issues": "https://github.com/bobthecow/psysh/issues", - "source": "https://github.com/bobthecow/psysh/tree/v0.12.9" + "source": "https://github.com/bobthecow/psysh/tree/v0.12.4" }, - "time": "2025-06-23T02:35:06+00:00" + "time": "2024-06-10T01:18:23+00:00" }, { "name": "ralouphie/getallheaders", @@ -22808,72 +20727,6 @@ }, "time": "2019-03-08T08:55:37+00:00" }, - { - "name": "sabberworm/php-css-parser", - "version": "v8.9.0", - "source": { - "type": "git", - "url": "https://github.com/MyIntervals/PHP-CSS-Parser.git", - "reference": "d8e916507b88e389e26d4ab03c904a082aa66bb9" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/MyIntervals/PHP-CSS-Parser/zipball/d8e916507b88e389e26d4ab03c904a082aa66bb9", - "reference": "d8e916507b88e389e26d4ab03c904a082aa66bb9", - "shasum": "" - }, - "require": { - "ext-iconv": "*", - "php": "^5.6.20 || ^7.0.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0" - }, - "require-dev": { - "phpunit/phpunit": "5.7.27 || 6.5.14 || 7.5.20 || 8.5.41", - "rawr/cross-data-providers": "^2.0.0" - }, - "suggest": { - "ext-mbstring": "for parsing UTF-8 CSS" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "9.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Sabberworm\\CSS\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Raphael Schweikert" - }, - { - "name": "Oliver Klee", - "email": "github@oliverklee.de" - }, - { - "name": "Jake Hotson", - "email": "jake.github@qzdesign.co.uk" - } - ], - "description": "Parser for CSS Files written in PHP", - "homepage": "https://www.sabberworm.com/blog/2010/6/10/php-css-parser", - "keywords": [ - "css", - "parser", - "stylesheet" - ], - "support": { - "issues": "https://github.com/MyIntervals/PHP-CSS-Parser/issues", - "source": "https://github.com/MyIntervals/PHP-CSS-Parser/tree/v8.9.0" - }, - "time": "2025-07-11T13:20:48+00:00" - }, { "name": "sebastian/diff", "version": "4.0.6", @@ -22940,90 +20793,18 @@ ], "time": "2024-03-02T06:30:58+00:00" }, - { - "name": "setasign/fpdi", - "version": "v2.6.3", - "source": { - "type": "git", - "url": "https://github.com/Setasign/FPDI.git", - "reference": "67c31f5e50c93c20579ca9e23035d8c540b51941" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Setasign/FPDI/zipball/67c31f5e50c93c20579ca9e23035d8c540b51941", - "reference": "67c31f5e50c93c20579ca9e23035d8c540b51941", - "shasum": "" - }, - "require": { - "ext-zlib": "*", - "php": "^7.1 || ^8.0" - }, - "conflict": { - "setasign/tfpdf": "<1.31" - }, - "require-dev": { - "phpunit/phpunit": "^7", - "setasign/fpdf": "~1.8.6", - "setasign/tfpdf": "~1.33", - "squizlabs/php_codesniffer": "^3.5", - "tecnickcom/tcpdf": "^6.2" - }, - "suggest": { - "setasign/fpdf": "FPDI will extend this class but as it is also possible to use TCPDF or tFPDF as an alternative. There's no fixed dependency configured." - }, - "type": "library", - "autoload": { - "psr-4": { - "setasign\\Fpdi\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Jan Slabon", - "email": "jan.slabon@setasign.com", - "homepage": "https://www.setasign.com" - }, - { - "name": "Maximilian Kresse", - "email": "maximilian.kresse@setasign.com", - "homepage": "https://www.setasign.com" - } - ], - "description": "FPDI is a collection of PHP classes facilitating developers to read pages from existing PDF documents and use them as templates in FPDF. Because it is also possible to use FPDI with TCPDF, there are no fixed dependencies defined. Please see suggestions for packages which evaluates the dependencies automatically.", - "homepage": "https://www.setasign.com/fpdi", - "keywords": [ - "fpdf", - "fpdi", - "pdf" - ], - "support": { - "issues": "https://github.com/Setasign/FPDI/issues", - "source": "https://github.com/Setasign/FPDI/tree/v2.6.3" - }, - "funding": [ - { - "url": "https://tidelift.com/funding/github/packagist/setasign/fpdi", - "type": "tidelift" - } - ], - "time": "2025-02-05T13:22:35+00:00" - }, { "name": "simshaun/recurr", - "version": "v5.0.3", + "version": "v5.0.2", "source": { "type": "git", "url": "https://github.com/simshaun/recurr.git", - "reference": "7b136768d64f257065e38a804ee6d2f9af6ba6d1" + "reference": "1aff62e6e0ee875b3f2487352542605123ee9172" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simshaun/recurr/zipball/7b136768d64f257065e38a804ee6d2f9af6ba6d1", - "reference": "7b136768d64f257065e38a804ee6d2f9af6ba6d1", + "url": "https://api.github.com/repos/simshaun/recurr/zipball/1aff62e6e0ee875b3f2487352542605123ee9172", + "reference": "1aff62e6e0ee875b3f2487352542605123ee9172", "shasum": "" }, "require": { @@ -23067,22 +20848,69 @@ ], "support": { "issues": "https://github.com/simshaun/recurr/issues", - "source": "https://github.com/simshaun/recurr/tree/v5.0.3" + "source": "https://github.com/simshaun/recurr/tree/v5.0.2" }, - "time": "2024-12-12T15:39:24+00:00" + "time": "2023-09-26T20:31:33+00:00" }, { - "name": "symfony/console", - "version": "v6.4.23", + "name": "stella-maris/clock", + "version": "0.1.7", "source": { "type": "git", - "url": "https://github.com/symfony/console.git", - "reference": "9056771b8eca08d026cd3280deeec3cfd99c4d93" + "url": "https://github.com/stella-maris-solutions/clock.git", + "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/9056771b8eca08d026cd3280deeec3cfd99c4d93", - "reference": "9056771b8eca08d026cd3280deeec3cfd99c4d93", + "url": "https://api.github.com/repos/stella-maris-solutions/clock/zipball/fa23ce16019289a18bb3446fdecd45befcdd94f8", + "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8", + "shasum": "" + }, + "require": { + "php": "^7.0|^8.0", + "psr/clock": "^1.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "StellaMaris\\Clock\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Andreas Heigl", + "role": "Maintainer" + } + ], + "description": "A pre-release of the proposed PSR-20 Clock-Interface", + "homepage": "https://gitlab.com/stella-maris/clock", + "keywords": [ + "clock", + "datetime", + "point in time", + "psr20" + ], + "support": { + "source": "https://github.com/stella-maris-solutions/clock/tree/0.1.7" + }, + "time": "2022-11-25T16:15:06+00:00" + }, + { + "name": "symfony/console", + "version": "v6.4.15", + "source": { + "type": "git", + "url": "https://github.com/symfony/console.git", + "reference": "f1fc6f47283e27336e7cebb9e8946c8de7bff9bd" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/console/zipball/f1fc6f47283e27336e7cebb9e8946c8de7bff9bd", + "reference": "f1fc6f47283e27336e7cebb9e8946c8de7bff9bd", "shasum": "" }, "require": { @@ -23147,7 +20975,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v6.4.23" + "source": "https://github.com/symfony/console/tree/v6.4.15" }, "funding": [ { @@ -23163,85 +20991,20 @@ "type": "tidelift" } ], - "time": "2025-06-27T19:37:22+00:00" - }, - { - "name": "symfony/css-selector", - "version": "v6.4.13", - "source": { - "type": "git", - "url": "https://github.com/symfony/css-selector.git", - "reference": "cb23e97813c5837a041b73a6d63a9ddff0778f5e" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/cb23e97813c5837a041b73a6d63a9ddff0778f5e", - "reference": "cb23e97813c5837a041b73a6d63a9ddff0778f5e", - "shasum": "" - }, - "require": { - "php": ">=8.1" - }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\CssSelector\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Jean-François Simon", - "email": "jeanfrancois.simon@sensiolabs.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Converts CSS selectors to XPath expressions", - "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/css-selector/tree/v6.4.13" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2024-09-25T14:18:03+00:00" + "time": "2024-11-06T14:19:14+00:00" }, { "name": "symfony/dependency-injection", - "version": "v6.4.23", + "version": "v6.4.15", "source": { "type": "git", "url": "https://github.com/symfony/dependency-injection.git", - "reference": "0d9f24f3de0a83573fce5c9ed025d6306c6e166b" + "reference": "70ab1f65a4516ef741e519ea938e6aa465e6aa36" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/0d9f24f3de0a83573fce5c9ed025d6306c6e166b", - "reference": "0d9f24f3de0a83573fce5c9ed025d6306c6e166b", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/70ab1f65a4516ef741e519ea938e6aa465e6aa36", + "reference": "70ab1f65a4516ef741e519ea938e6aa465e6aa36", "shasum": "" }, "require": { @@ -23249,7 +21012,7 @@ "psr/container": "^1.1|^2.0", "symfony/deprecation-contracts": "^2.5|^3", "symfony/service-contracts": "^2.5|^3.0", - "symfony/var-exporter": "^6.4.20|^7.2.5" + "symfony/var-exporter": "^6.2.10|^7.0" }, "conflict": { "ext-psr": "<1.1|>=2", @@ -23293,7 +21056,7 @@ "description": "Allows you to standardize and centralize the way objects are constructed in your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/dependency-injection/tree/v6.4.23" + "source": "https://github.com/symfony/dependency-injection/tree/v6.4.15" }, "funding": [ { @@ -23309,20 +21072,20 @@ "type": "tidelift" } ], - "time": "2025-06-23T06:49:06+00:00" + "time": "2024-11-09T06:56:25+00:00" }, { "name": "symfony/deprecation-contracts", - "version": "v3.5.1", + "version": "v3.5.0", "source": { "type": "git", "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6" + "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6", - "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1", + "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1", "shasum": "" }, "require": { @@ -23330,12 +21093,12 @@ }, "type": "library", "extra": { - "thanks": { - "url": "https://github.com/symfony/contracts", - "name": "symfony/contracts" - }, "branch-alias": { "dev-main": "3.5-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" } }, "autoload": { @@ -23360,7 +21123,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.5.1" + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0" }, "funding": [ { @@ -23376,87 +21139,20 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:20:29+00:00" - }, - { - "name": "symfony/dom-crawler", - "version": "v6.4.23", - "source": { - "type": "git", - "url": "https://github.com/symfony/dom-crawler.git", - "reference": "22210aacb35dbadd772325d759d17bce2374a84d" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/22210aacb35dbadd772325d759d17bce2374a84d", - "reference": "22210aacb35dbadd772325d759d17bce2374a84d", - "shasum": "" - }, - "require": { - "masterminds/html5": "^2.6", - "php": ">=8.1", - "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-mbstring": "~1.0" - }, - "require-dev": { - "symfony/css-selector": "^5.4|^6.0|^7.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\DomCrawler\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Eases DOM navigation for HTML and XML documents", - "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/dom-crawler/tree/v6.4.23" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2025-06-13T12:10:00+00:00" + "time": "2024-04-18T09:32:20+00:00" }, { "name": "symfony/error-handler", - "version": "v6.4.23", + "version": "v6.4.14", "source": { "type": "git", "url": "https://github.com/symfony/error-handler.git", - "reference": "b088e0b175c30b4e06d8085200fa465b586f44fa" + "reference": "9e024324511eeb00983ee76b9aedc3e6ecd993d9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/b088e0b175c30b4e06d8085200fa465b586f44fa", - "reference": "b088e0b175c30b4e06d8085200fa465b586f44fa", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/9e024324511eeb00983ee76b9aedc3e6ecd993d9", + "reference": "9e024324511eeb00983ee76b9aedc3e6ecd993d9", "shasum": "" }, "require": { @@ -23502,7 +21198,7 @@ "description": "Provides tools to manage errors and ease debugging PHP code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/error-handler/tree/v6.4.23" + "source": "https://github.com/symfony/error-handler/tree/v6.4.14" }, "funding": [ { @@ -23518,7 +21214,7 @@ "type": "tidelift" } ], - "time": "2025-06-13T07:39:48+00:00" + "time": "2024-11-05T15:34:40+00:00" }, { "name": "symfony/event-dispatcher", @@ -23602,16 +21298,16 @@ }, { "name": "symfony/event-dispatcher-contracts", - "version": "v3.5.1", + "version": "v3.5.0", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher-contracts.git", - "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f" + "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f", - "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50", + "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50", "shasum": "" }, "require": { @@ -23620,12 +21316,12 @@ }, "type": "library", "extra": { - "thanks": { - "url": "https://github.com/symfony/contracts", - "name": "symfony/contracts" - }, "branch-alias": { "dev-main": "3.5-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" } }, "autoload": { @@ -23658,7 +21354,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1" + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0" }, "funding": [ { @@ -23674,7 +21370,7 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:20:29+00:00" + "time": "2024-04-18T09:32:20+00:00" }, { "name": "symfony/filesystem", @@ -23744,16 +21440,16 @@ }, { "name": "symfony/finder", - "version": "v6.4.17", + "version": "v6.4.13", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7" + "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7", - "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7", + "url": "https://api.github.com/repos/symfony/finder/zipball/daea9eca0b08d0ed1dc9ab702a46128fd1be4958", + "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958", "shasum": "" }, "require": { @@ -23788,7 +21484,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v6.4.17" + "source": "https://github.com/symfony/finder/tree/v6.4.13" }, "funding": [ { @@ -23804,20 +21500,20 @@ "type": "tidelift" } ], - "time": "2024-12-29T13:51:37+00:00" + "time": "2024-10-01T08:30:56+00:00" }, { "name": "symfony/http-foundation", - "version": "v6.4.23", + "version": "v6.4.15", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "452d19f945ee41345fd8a50c18b60783546b7bd3" + "reference": "9b3165eb2f04aeaa1a5a2cfef73e63fe3b22dff6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/452d19f945ee41345fd8a50c18b60783546b7bd3", - "reference": "452d19f945ee41345fd8a50c18b60783546b7bd3", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/9b3165eb2f04aeaa1a5a2cfef73e63fe3b22dff6", + "reference": "9b3165eb2f04aeaa1a5a2cfef73e63fe3b22dff6", "shasum": "" }, "require": { @@ -23865,7 +21561,7 @@ "description": "Defines an object-oriented layer for the HTTP specification", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-foundation/tree/v6.4.23" + "source": "https://github.com/symfony/http-foundation/tree/v6.4.15" }, "funding": [ { @@ -23881,20 +21577,20 @@ "type": "tidelift" } ], - "time": "2025-05-26T09:17:58+00:00" + "time": "2024-11-08T16:09:24+00:00" }, { "name": "symfony/http-kernel", - "version": "v6.4.23", + "version": "v6.4.15", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "2bb2cba685aabd859f22cf6946554e8e7f3c329a" + "reference": "b002a5b3947653c5aee3adac2a024ea615fd3ff5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/2bb2cba685aabd859f22cf6946554e8e7f3c329a", - "reference": "2bb2cba685aabd859f22cf6946554e8e7f3c329a", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/b002a5b3947653c5aee3adac2a024ea615fd3ff5", + "reference": "b002a5b3947653c5aee3adac2a024ea615fd3ff5", "shasum": "" }, "require": { @@ -23979,7 +21675,7 @@ "description": "Provides a structured process for converting a Request into a Response", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-kernel/tree/v6.4.23" + "source": "https://github.com/symfony/http-kernel/tree/v6.4.15" }, "funding": [ { @@ -23995,20 +21691,20 @@ "type": "tidelift" } ], - "time": "2025-06-28T08:14:51+00:00" + "time": "2024-11-13T13:57:37+00:00" }, { "name": "symfony/mailer", - "version": "v6.4.23", + "version": "v6.4.13", "source": { "type": "git", "url": "https://github.com/symfony/mailer.git", - "reference": "a480322ddf8e54de262c9bca31fdcbe26b553de5" + "reference": "c2f7e0d8d7ac8fe25faccf5d8cac462805db2663" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mailer/zipball/a480322ddf8e54de262c9bca31fdcbe26b553de5", - "reference": "a480322ddf8e54de262c9bca31fdcbe26b553de5", + "url": "https://api.github.com/repos/symfony/mailer/zipball/c2f7e0d8d7ac8fe25faccf5d8cac462805db2663", + "reference": "c2f7e0d8d7ac8fe25faccf5d8cac462805db2663", "shasum": "" }, "require": { @@ -24059,7 +21755,7 @@ "description": "Helps sending emails", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/mailer/tree/v6.4.23" + "source": "https://github.com/symfony/mailer/tree/v6.4.13" }, "funding": [ { @@ -24075,20 +21771,20 @@ "type": "tidelift" } ], - "time": "2025-06-26T21:24:02+00:00" + "time": "2024-09-25T14:18:03+00:00" }, { "name": "symfony/mime", - "version": "v6.4.21", + "version": "v6.4.13", "source": { "type": "git", "url": "https://github.com/symfony/mime.git", - "reference": "fec8aa5231f3904754955fad33c2db50594d22d1" + "reference": "1de1cf14d99b12c7ebbb850491ec6ae3ed468855" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/fec8aa5231f3904754955fad33c2db50594d22d1", - "reference": "fec8aa5231f3904754955fad33c2db50594d22d1", + "url": "https://api.github.com/repos/symfony/mime/zipball/1de1cf14d99b12c7ebbb850491ec6ae3ed468855", + "reference": "1de1cf14d99b12c7ebbb850491ec6ae3ed468855", "shasum": "" }, "require": { @@ -24144,7 +21840,7 @@ "mime-type" ], "support": { - "source": "https://github.com/symfony/mime/tree/v6.4.21" + "source": "https://github.com/symfony/mime/tree/v6.4.13" }, "funding": [ { @@ -24160,24 +21856,24 @@ "type": "tidelift" } ], - "time": "2025-04-27T13:27:38+00:00" + "time": "2024-10-25T15:07:50+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.31.0", + "version": "v1.29.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638" + "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638", - "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4", + "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4", "shasum": "" }, "require": { - "php": ">=7.2" + "php": ">=7.1" }, "provide": { "ext-ctype": "*" @@ -24188,8 +21884,8 @@ "type": "library", "extra": { "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { @@ -24223,7 +21919,7 @@ "portable" ], "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0" }, "funding": [ { @@ -24239,24 +21935,24 @@ "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" + "time": "2024-01-29T20:11:03+00:00" }, { "name": "symfony/polyfill-iconv", - "version": "v1.31.0", + "version": "v1.29.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-iconv.git", - "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956" + "reference": "cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/48becf00c920479ca2e910c22a5a39e5d47ca956", - "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956", + "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f", + "reference": "cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f", "shasum": "" }, "require": { - "php": ">=7.2" + "php": ">=7.1" }, "provide": { "ext-iconv": "*" @@ -24267,8 +21963,8 @@ "type": "library", "extra": { "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { @@ -24303,7 +21999,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-iconv/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-iconv/tree/v1.29.0" }, "funding": [ { @@ -24319,24 +22015,24 @@ "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" + "time": "2024-01-29T20:11:03+00:00" }, { "name": "symfony/polyfill-intl-grapheme", - "version": "v1.31.0", + "version": "v1.29.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-grapheme.git", - "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe" + "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", - "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", + "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f", + "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f", "shasum": "" }, "require": { - "php": ">=7.2" + "php": ">=7.1" }, "suggest": { "ext-intl": "For best performance" @@ -24344,8 +22040,8 @@ "type": "library", "extra": { "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { @@ -24381,7 +22077,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0" }, "funding": [ { @@ -24397,25 +22093,26 @@ "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" + "time": "2024-01-29T20:11:03+00:00" }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.31.0", + "version": "v1.29.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773" + "reference": "a287ed7475f85bf6f61890146edbc932c0fff919" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773", - "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a287ed7475f85bf6f61890146edbc932c0fff919", + "reference": "a287ed7475f85bf6f61890146edbc932c0fff919", "shasum": "" }, "require": { - "php": ">=7.2", - "symfony/polyfill-intl-normalizer": "^1.10" + "php": ">=7.1", + "symfony/polyfill-intl-normalizer": "^1.10", + "symfony/polyfill-php72": "^1.10" }, "suggest": { "ext-intl": "For best performance" @@ -24423,8 +22120,8 @@ "type": "library", "extra": { "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { @@ -24464,7 +22161,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.29.0" }, "funding": [ { @@ -24480,24 +22177,24 @@ "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" + "time": "2024-01-29T20:11:03+00:00" }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.31.0", + "version": "v1.29.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "3833d7255cc303546435cb650316bff708a1c75c" + "reference": "bc45c394692b948b4d383a08d7753968bed9a83d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c", - "reference": "3833d7255cc303546435cb650316bff708a1c75c", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d", + "reference": "bc45c394692b948b4d383a08d7753968bed9a83d", "shasum": "" }, "require": { - "php": ">=7.2" + "php": ">=7.1" }, "suggest": { "ext-intl": "For best performance" @@ -24505,8 +22202,8 @@ "type": "library", "extra": { "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { @@ -24545,7 +22242,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0" }, "funding": [ { @@ -24561,24 +22258,24 @@ "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" + "time": "2024-01-29T20:11:03+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.31.0", + "version": "v1.29.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341" + "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341", - "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec", + "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec", "shasum": "" }, "require": { - "php": ">=7.2" + "php": ">=7.1" }, "provide": { "ext-mbstring": "*" @@ -24589,8 +22286,8 @@ "type": "library", "extra": { "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { @@ -24625,7 +22322,72 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-01-29T20:11:03+00:00" + }, + { + "name": "symfony/polyfill-php72", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php72.git", + "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce", + "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "type": "metapackage", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php72/tree/v1.31.0" }, "funding": [ { @@ -24645,16 +22407,16 @@ }, { "name": "symfony/polyfill-php80", - "version": "v1.32.0", + "version": "v1.31.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608" + "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608", - "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8", + "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8", "shasum": "" }, "require": { @@ -24663,8 +22425,8 @@ "type": "library", "extra": { "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { @@ -24705,7 +22467,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.32.0" + "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0" }, "funding": [ { @@ -24721,11 +22483,11 @@ "type": "tidelift" } ], - "time": "2025-01-02T08:10:11+00:00" + "time": "2024-09-09T11:45:10+00:00" }, { "name": "symfony/polyfill-php81", - "version": "v1.32.0", + "version": "v1.31.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php81.git", @@ -24743,8 +22505,8 @@ "type": "library", "extra": { "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { @@ -24781,7 +22543,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php81/tree/v1.32.0" + "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0" }, "funding": [ { @@ -24801,26 +22563,27 @@ }, { "name": "symfony/polyfill-php83", - "version": "v1.31.0", + "version": "v1.29.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php83.git", - "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491" + "reference": "86fcae159633351e5fd145d1c47de6c528f8caff" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491", - "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491", + "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff", + "reference": "86fcae159633351e5fd145d1c47de6c528f8caff", "shasum": "" }, "require": { - "php": ">=7.2" + "php": ">=7.1", + "symfony/polyfill-php80": "^1.14" }, "type": "library", "extra": { "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { @@ -24857,7 +22620,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0" + "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0" }, "funding": [ { @@ -24873,96 +22636,20 @@ "type": "tidelift" } ], - "time": "2024-09-09T11:45:10+00:00" - }, - { - "name": "symfony/polyfill-php84", - "version": "v1.32.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-php84.git", - "reference": "000df7860439609837bbe28670b0be15783b7fbf" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/000df7860439609837bbe28670b0be15783b7fbf", - "reference": "000df7860439609837bbe28670b0be15783b7fbf", - "shasum": "" - }, - "require": { - "php": ">=7.2" - }, - "type": "library", - "extra": { - "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" - } - }, - "autoload": { - "files": [ - "bootstrap.php" - ], - "psr-4": { - "Symfony\\Polyfill\\Php84\\": "" - }, - "classmap": [ - "Resources/stubs" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "polyfill", - "portable", - "shim" - ], - "support": { - "source": "https://github.com/symfony/polyfill-php84/tree/v1.32.0" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2025-02-20T12:04:08+00:00" + "time": "2024-01-29T20:11:03+00:00" }, { "name": "symfony/process", - "version": "v6.4.20", + "version": "v6.4.15", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "e2a61c16af36c9a07e5c9906498b73e091949a20" + "reference": "3cb242f059c14ae08591c5c4087d1fe443564392" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/e2a61c16af36c9a07e5c9906498b73e091949a20", - "reference": "e2a61c16af36c9a07e5c9906498b73e091949a20", + "url": "https://api.github.com/repos/symfony/process/zipball/3cb242f059c14ae08591c5c4087d1fe443564392", + "reference": "3cb242f059c14ae08591c5c4087d1fe443564392", "shasum": "" }, "require": { @@ -24994,7 +22681,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v6.4.20" + "source": "https://github.com/symfony/process/tree/v6.4.15" }, "funding": [ { @@ -25010,7 +22697,7 @@ "type": "tidelift" } ], - "time": "2025-03-10T17:11:00+00:00" + "time": "2024-11-06T14:19:14+00:00" }, { "name": "symfony/psr-http-message-bridge", @@ -25097,16 +22784,16 @@ }, { "name": "symfony/routing", - "version": "v6.4.22", + "version": "v6.4.13", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "1f5234e8457164a3a0038a4c0a4ba27876a9c670" + "reference": "640a74250d13f9c30d5ca045b6aaaabcc8215278" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/1f5234e8457164a3a0038a4c0a4ba27876a9c670", - "reference": "1f5234e8457164a3a0038a4c0a4ba27876a9c670", + "url": "https://api.github.com/repos/symfony/routing/zipball/640a74250d13f9c30d5ca045b6aaaabcc8215278", + "reference": "640a74250d13f9c30d5ca045b6aaaabcc8215278", "shasum": "" }, "require": { @@ -25160,7 +22847,7 @@ "url" ], "support": { - "source": "https://github.com/symfony/routing/tree/v6.4.22" + "source": "https://github.com/symfony/routing/tree/v6.4.13" }, "funding": [ { @@ -25176,20 +22863,20 @@ "type": "tidelift" } ], - "time": "2025-04-27T16:08:38+00:00" + "time": "2024-10-01T08:30:56+00:00" }, { "name": "symfony/serializer", - "version": "v6.4.23", + "version": "v6.4.15", "source": { "type": "git", "url": "https://github.com/symfony/serializer.git", - "reference": "b40a697a2bb2c3d841a1f9e34a8a9f50bf9d1d06" + "reference": "9d862d66198f3c2e30404228629ef4c18d5d608e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/serializer/zipball/b40a697a2bb2c3d841a1f9e34a8a9f50bf9d1d06", - "reference": "b40a697a2bb2c3d841a1f9e34a8a9f50bf9d1d06", + "url": "https://api.github.com/repos/symfony/serializer/zipball/9d862d66198f3c2e30404228629ef4c18d5d608e", + "reference": "9d862d66198f3c2e30404228629ef4c18d5d608e", "shasum": "" }, "require": { @@ -25258,7 +22945,7 @@ "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/serializer/tree/v6.4.23" + "source": "https://github.com/symfony/serializer/tree/v6.4.15" }, "funding": [ { @@ -25274,20 +22961,20 @@ "type": "tidelift" } ], - "time": "2025-06-27T15:34:20+00:00" + "time": "2024-10-23T13:25:59+00:00" }, { "name": "symfony/service-contracts", - "version": "v3.5.1", + "version": "v3.5.0", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0" + "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0", - "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f", + "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f", "shasum": "" }, "require": { @@ -25300,12 +22987,12 @@ }, "type": "library", "extra": { - "thanks": { - "url": "https://github.com/symfony/contracts", - "name": "symfony/contracts" - }, "branch-alias": { "dev-main": "3.5-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" } }, "autoload": { @@ -25341,7 +23028,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/service-contracts/tree/v3.5.1" + "source": "https://github.com/symfony/service-contracts/tree/v3.5.0" }, "funding": [ { @@ -25357,20 +23044,20 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:20:29+00:00" + "time": "2024-04-18T09:32:20+00:00" }, { "name": "symfony/string", - "version": "v6.4.21", + "version": "v6.4.15", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "73e2c6966a5aef1d4892873ed5322245295370c6" + "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/73e2c6966a5aef1d4892873ed5322245295370c6", - "reference": "73e2c6966a5aef1d4892873ed5322245295370c6", + "url": "https://api.github.com/repos/symfony/string/zipball/73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f", + "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f", "shasum": "" }, "require": { @@ -25427,7 +23114,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v6.4.21" + "source": "https://github.com/symfony/string/tree/v6.4.15" }, "funding": [ { @@ -25443,20 +23130,20 @@ "type": "tidelift" } ], - "time": "2025-04-18T15:23:29+00:00" + "time": "2024-11-13T13:31:12+00:00" }, { "name": "symfony/translation-contracts", - "version": "v3.5.1", + "version": "v3.5.0", "source": { "type": "git", "url": "https://github.com/symfony/translation-contracts.git", - "reference": "4667ff3bd513750603a09c8dedbea942487fb07c" + "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c", - "reference": "4667ff3bd513750603a09c8dedbea942487fb07c", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a", + "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a", "shasum": "" }, "require": { @@ -25464,12 +23151,12 @@ }, "type": "library", "extra": { - "thanks": { - "url": "https://github.com/symfony/contracts", - "name": "symfony/contracts" - }, "branch-alias": { "dev-main": "3.5-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" } }, "autoload": { @@ -25505,7 +23192,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1" + "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0" }, "funding": [ { @@ -25521,20 +23208,20 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:20:29+00:00" + "time": "2024-04-18T09:32:20+00:00" }, { "name": "symfony/validator", - "version": "v6.4.23", + "version": "v6.4.15", "source": { "type": "git", "url": "https://github.com/symfony/validator.git", - "reference": "6506760ab57e7cda5bde9cdaed736526162284bc" + "reference": "7541055cdaf54ff95f0735bf703d313374e8b20b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/validator/zipball/6506760ab57e7cda5bde9cdaed736526162284bc", - "reference": "6506760ab57e7cda5bde9cdaed736526162284bc", + "url": "https://api.github.com/repos/symfony/validator/zipball/7541055cdaf54ff95f0735bf703d313374e8b20b", + "reference": "7541055cdaf54ff95f0735bf703d313374e8b20b", "shasum": "" }, "require": { @@ -25602,7 +23289,7 @@ "description": "Provides tools to validate values", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/validator/tree/v6.4.23" + "source": "https://github.com/symfony/validator/tree/v6.4.15" }, "funding": [ { @@ -25618,20 +23305,20 @@ "type": "tidelift" } ], - "time": "2025-06-26T07:25:45+00:00" + "time": "2024-11-08T15:28:48+00:00" }, { "name": "symfony/var-dumper", - "version": "v6.4.23", + "version": "v6.4.15", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "d55b1834cdbfcc31bc2cd7e095ba5ed9a88f6600" + "reference": "38254d5a5ac2e61f2b52f9caf54e7aa3c9d36b80" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/d55b1834cdbfcc31bc2cd7e095ba5ed9a88f6600", - "reference": "d55b1834cdbfcc31bc2cd7e095ba5ed9a88f6600", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/38254d5a5ac2e61f2b52f9caf54e7aa3c9d36b80", + "reference": "38254d5a5ac2e61f2b52f9caf54e7aa3c9d36b80", "shasum": "" }, "require": { @@ -25687,7 +23374,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v6.4.23" + "source": "https://github.com/symfony/var-dumper/tree/v6.4.15" }, "funding": [ { @@ -25703,20 +23390,20 @@ "type": "tidelift" } ], - "time": "2025-06-27T15:05:27+00:00" + "time": "2024-11-08T15:28:48+00:00" }, { "name": "symfony/var-exporter", - "version": "v6.4.22", + "version": "v6.4.13", "source": { "type": "git", "url": "https://github.com/symfony/var-exporter.git", - "reference": "f28cf841f5654955c9f88ceaf4b9dc29571988a9" + "reference": "0f605f72a363f8743001038a176eeb2a11223b51" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-exporter/zipball/f28cf841f5654955c9f88ceaf4b9dc29571988a9", - "reference": "f28cf841f5654955c9f88ceaf4b9dc29571988a9", + "url": "https://api.github.com/repos/symfony/var-exporter/zipball/0f605f72a363f8743001038a176eeb2a11223b51", + "reference": "0f605f72a363f8743001038a176eeb2a11223b51", "shasum": "" }, "require": { @@ -25764,7 +23451,7 @@ "serialize" ], "support": { - "source": "https://github.com/symfony/var-exporter/tree/v6.4.22" + "source": "https://github.com/symfony/var-exporter/tree/v6.4.13" }, "funding": [ { @@ -25780,20 +23467,20 @@ "type": "tidelift" } ], - "time": "2025-05-14T13:00:13+00:00" + "time": "2024-09-25T14:18:03+00:00" }, { "name": "symfony/yaml", - "version": "v6.4.23", + "version": "v6.4.13", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "93e29e0deb5f1b2e360adfb389a20d25eb81a27b" + "reference": "e99b4e94d124b29ee4cf3140e1b537d2dad8cec9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/93e29e0deb5f1b2e360adfb389a20d25eb81a27b", - "reference": "93e29e0deb5f1b2e360adfb389a20d25eb81a27b", + "url": "https://api.github.com/repos/symfony/yaml/zipball/e99b4e94d124b29ee4cf3140e1b537d2dad8cec9", + "reference": "e99b4e94d124b29ee4cf3140e1b537d2dad8cec9", "shasum": "" }, "require": { @@ -25836,7 +23523,7 @@ "description": "Loads and dumps YAML files", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/yaml/tree/v6.4.23" + "source": "https://github.com/symfony/yaml/tree/v6.4.13" }, "funding": [ { @@ -25852,78 +23539,7 @@ "type": "tidelift" } ], - "time": "2025-06-03T06:46:12+00:00" - }, - { - "name": "tecnickcom/tcpdf", - "version": "6.10.0", - "source": { - "type": "git", - "url": "https://github.com/tecnickcom/TCPDF.git", - "reference": "ca5b6de294512145db96bcbc94e61696599c391d" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/tecnickcom/TCPDF/zipball/ca5b6de294512145db96bcbc94e61696599c391d", - "reference": "ca5b6de294512145db96bcbc94e61696599c391d", - "shasum": "" - }, - "require": { - "ext-curl": "*", - "php": ">=7.1.0" - }, - "type": "library", - "autoload": { - "classmap": [ - "config", - "include", - "tcpdf.php", - "tcpdf_barcodes_1d.php", - "tcpdf_barcodes_2d.php", - "include/tcpdf_colors.php", - "include/tcpdf_filters.php", - "include/tcpdf_font_data.php", - "include/tcpdf_fonts.php", - "include/tcpdf_images.php", - "include/tcpdf_static.php", - "include/barcodes/datamatrix.php", - "include/barcodes/pdf417.php", - "include/barcodes/qrcode.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "LGPL-3.0-or-later" - ], - "authors": [ - { - "name": "Nicola Asuni", - "email": "info@tecnick.com", - "role": "lead" - } - ], - "description": "TCPDF is a PHP class for generating PDF documents and barcodes.", - "homepage": "http://www.tcpdf.org/", - "keywords": [ - "PDFD32000-2008", - "TCPDF", - "barcodes", - "datamatrix", - "pdf", - "pdf417", - "qrcode" - ], - "support": { - "issues": "https://github.com/tecnickcom/TCPDF/issues", - "source": "https://github.com/tecnickcom/TCPDF/tree/6.10.0" - }, - "funding": [ - { - "url": "https://www.paypal.com/donate/?hosted_button_id=NZUEC5XS8MFBJ", - "type": "custom" - } - ], - "time": "2025-05-27T18:02:28+00:00" + "time": "2024-09-25T14:18:03+00:00" }, { "name": "thinkshout/mailchimp-api-php", @@ -25971,26 +23587,26 @@ }, { "name": "twig/twig", - "version": "v3.20.0", + "version": "v3.14.2", "source": { "type": "git", "url": "https://github.com/twigphp/Twig.git", - "reference": "3468920399451a384bef53cf7996965f7cd40183" + "reference": "0b6f9d8370bb3b7f1ce5313ed8feb0fafd6e399a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/twigphp/Twig/zipball/3468920399451a384bef53cf7996965f7cd40183", - "reference": "3468920399451a384bef53cf7996965f7cd40183", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/0b6f9d8370bb3b7f1ce5313ed8feb0fafd6e399a", + "reference": "0b6f9d8370bb3b7f1ce5313ed8feb0fafd6e399a", "shasum": "" }, "require": { - "php": ">=8.1.0", + "php": ">=8.0.2", "symfony/deprecation-contracts": "^2.5|^3", "symfony/polyfill-ctype": "^1.8", - "symfony/polyfill-mbstring": "^1.3" + "symfony/polyfill-mbstring": "^1.3", + "symfony/polyfill-php81": "^1.29" }, "require-dev": { - "phpstan/phpstan": "^2.0", "psr/container": "^1.0|^2.0", "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0" }, @@ -26034,7 +23650,7 @@ ], "support": { "issues": "https://github.com/twigphp/Twig/issues", - "source": "https://github.com/twigphp/Twig/tree/v3.20.0" + "source": "https://github.com/twigphp/Twig/tree/v3.14.2" }, "funding": [ { @@ -26046,20 +23662,20 @@ "type": "tidelift" } ], - "time": "2025-02-13T08:34:43+00:00" + "time": "2024-11-07T12:36:22+00:00" }, { "name": "vlucas/phpdotenv", - "version": "v5.6.2", + "version": "v5.6.1", "source": { "type": "git", "url": "https://github.com/vlucas/phpdotenv.git", - "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af" + "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/24ac4c74f91ee2c193fa1aaa5c249cb0822809af", - "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2", + "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2", "shasum": "" }, "require": { @@ -26118,7 +23734,7 @@ ], "support": { "issues": "https://github.com/vlucas/phpdotenv/issues", - "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.2" + "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1" }, "funding": [ { @@ -26130,73 +23746,7 @@ "type": "tidelift" } ], - "time": "2025-04-30T23:37:27+00:00" - }, - { - "name": "wa72/htmlpagedom", - "version": "v3.0.0", - "source": { - "type": "git", - "url": "https://github.com/wasinger/htmlpagedom.git", - "reference": "568a7379e66c3a8cf973885b7811900487f11fbb" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/wasinger/htmlpagedom/zipball/568a7379e66c3a8cf973885b7811900487f11fbb", - "reference": "568a7379e66c3a8cf973885b7811900487f11fbb", - "shasum": "" - }, - "require": { - "ext-dom": "*", - "ext-libxml": "*", - "ext-mbstring": "*", - "php": "^8.0", - "symfony/css-selector": "^6", - "symfony/dom-crawler": "^6" - }, - "require-dev": { - "mikey179/vfsstream": "^1.6.10", - "phpunit/phpunit": "^9", - "scrutinizer/ocular": "^1.9", - "wa72/html-pretty-min": "~0.1" - }, - "suggest": { - "wa72/html-pretty-min": "Minify or indent HTML documents" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.0-dev" - } - }, - "autoload": { - "psr-4": { - "Wa72\\HtmlPageDom\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Christoph Singer", - "email": "singer@webagentur72.de", - "homepage": "http://www.webagentur72.de" - } - ], - "description": "jQuery-inspired DOM manipulation extension for Symfony's Crawler", - "homepage": "http://github.com/wasinger/htmlpagedom", - "keywords": [ - "crawler", - "dom", - "html" - ], - "support": { - "issues": "https://github.com/wasinger/htmlpagedom/issues", - "source": "https://github.com/wasinger/htmlpagedom/tree/v3.0.0" - }, - "time": "2022-04-13T15:28:55+00:00" + "time": "2024-07-20T21:52:34+00:00" }, { "name": "webflo/drupal-finder", @@ -26306,24 +23856,23 @@ "packages-dev": [ { "name": "behat/behat", - "version": "v3.23.0", + "version": "v3.16.0", "source": { "type": "git", "url": "https://github.com/Behat/Behat.git", - "reference": "c465af8756adaaa6d962c3176a0a6c594361809b" + "reference": "18f5f44c80d1cf5711ec27019afcb26b8bc6c3b0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Behat/Behat/zipball/c465af8756adaaa6d962c3176a0a6c594361809b", - "reference": "c465af8756adaaa6d962c3176a0a6c594361809b", + "url": "https://api.github.com/repos/Behat/Behat/zipball/18f5f44c80d1cf5711ec27019afcb26b8bc6c3b0", + "reference": "18f5f44c80d1cf5711ec27019afcb26b8bc6c3b0", "shasum": "" }, "require": { - "behat/gherkin": "^4.12.0", + "behat/gherkin": "^4.10.0", + "behat/transliterator": "^1.5", "composer-runtime-api": "^2.2", - "composer/xdebug-handler": "^1.4 || ^2.0 || ^3.0", "ext-mbstring": "*", - "nikic/php-parser": "^4.19.2 || ^5.2", "php": "8.1.* || 8.2.* || 8.3.* || 8.4.* ", "psr/container": "^1.0 || ^2.0", "symfony/config": "^5.4 || ^6.4 || ^7.0", @@ -26334,13 +23883,11 @@ "symfony/yaml": "^5.4 || ^6.4 || ^7.0" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^3.68", - "phpstan/phpstan": "^2.0", + "herrera-io/box": "~1.6.1", "phpunit/phpunit": "^9.6", - "rector/rector": "^2.0", - "sebastian/diff": "^4.0", "symfony/polyfill-php84": "^1.31", - "symfony/process": "^5.4 || ^6.4 || ^7.0" + "symfony/process": "^5.4 || ^6.4 || ^7.0", + "vimeo/psalm": "^4.8" }, "suggest": { "ext-dom": "Needed to output test results in JUnit format." @@ -26359,9 +23906,7 @@ "Behat\\Hook\\": "src/Behat/Hook/", "Behat\\Step\\": "src/Behat/Step/", "Behat\\Behat\\": "src/Behat/Behat/", - "Behat\\Config\\": "src/Behat/Config/", - "Behat\\Testwork\\": "src/Behat/Testwork/", - "Behat\\Transformation\\": "src/Behat/Transformation/" + "Behat\\Testwork\\": "src/Behat/Testwork/" } }, "notification-url": "https://packagist.org/downloads/", @@ -26393,37 +23938,31 @@ ], "support": { "issues": "https://github.com/Behat/Behat/issues", - "source": "https://github.com/Behat/Behat/tree/v3.23.0" + "source": "https://github.com/Behat/Behat/tree/v3.16.0" }, - "time": "2025-07-15T16:58:54+00:00" + "time": "2024-11-08T12:25:17+00:00" }, { "name": "behat/gherkin", - "version": "v4.14.0", + "version": "v4.10.0", "source": { "type": "git", "url": "https://github.com/Behat/Gherkin.git", - "reference": "34c9b59c59355a7b4c53b9f041c8dbd1c8acc3b4" + "reference": "cbb83c4c435dd8d05a161f2a5ae322e61b2f4db6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Behat/Gherkin/zipball/34c9b59c59355a7b4c53b9f041c8dbd1c8acc3b4", - "reference": "34c9b59c59355a7b4c53b9f041c8dbd1c8acc3b4", + "url": "https://api.github.com/repos/Behat/Gherkin/zipball/cbb83c4c435dd8d05a161f2a5ae322e61b2f4db6", + "reference": "cbb83c4c435dd8d05a161f2a5ae322e61b2f4db6", "shasum": "" }, "require": { - "composer-runtime-api": "^2.2", - "php": "8.1.* || 8.2.* || 8.3.* || 8.4.*" + "php": "~7.2|~8.0" }, "require-dev": { - "cucumber/gherkin-monorepo": "dev-gherkin-v32.1.1", - "friendsofphp/php-cs-fixer": "^3.65", - "mikey179/vfsstream": "^1.6", - "phpstan/extension-installer": "^1", - "phpstan/phpstan": "^2", - "phpstan/phpstan-phpunit": "^2", - "phpunit/phpunit": "^10.5", - "symfony/yaml": "^5.4 || ^6.4 || ^7.0" + "cucumber/cucumber": "dev-gherkin-24.1.0", + "phpunit/phpunit": "~8|~9", + "symfony/yaml": "~3|~4|~5|~6|~7" }, "suggest": { "symfony/yaml": "If you want to parse features, represented in YAML files" @@ -26435,8 +23974,8 @@ } }, "autoload": { - "psr-4": { - "Behat\\Gherkin\\": "src/" + "psr-0": { + "Behat\\Gherkin": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -26447,11 +23986,11 @@ { "name": "Konstantin Kudryashov", "email": "ever.zet@gmail.com", - "homepage": "https://everzet.com" + "homepage": "http://everzet.com" } ], "description": "Gherkin DSL parser for PHP", - "homepage": "https://behat.org/", + "homepage": "http://behat.org/", "keywords": [ "BDD", "Behat", @@ -26462,9 +24001,9 @@ ], "support": { "issues": "https://github.com/Behat/Gherkin/issues", - "source": "https://github.com/Behat/Gherkin/tree/v4.14.0" + "source": "https://github.com/Behat/Gherkin/tree/v4.10.0" }, - "time": "2025-05-23T15:06:40+00:00" + "time": "2024-10-19T14:46:06+00:00" }, { "name": "behat/mink", @@ -26533,149 +24072,53 @@ "time": "2024-10-30T18:48:14+00:00" }, { - "name": "composer/pcre", - "version": "3.3.2", + "name": "behat/transliterator", + "version": "v1.5.0", "source": { "type": "git", - "url": "https://github.com/composer/pcre.git", - "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e" + "url": "https://github.com/Behat/Transliterator.git", + "reference": "baac5873bac3749887d28ab68e2f74db3a4408af" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e", - "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e", + "url": "https://api.github.com/repos/Behat/Transliterator/zipball/baac5873bac3749887d28ab68e2f74db3a4408af", + "reference": "baac5873bac3749887d28ab68e2f74db3a4408af", "shasum": "" }, "require": { - "php": "^7.4 || ^8.0" - }, - "conflict": { - "phpstan/phpstan": "<1.11.10" + "php": ">=7.2" }, "require-dev": { - "phpstan/phpstan": "^1.12 || ^2", - "phpstan/phpstan-strict-rules": "^1 || ^2", - "phpunit/phpunit": "^8 || ^9" + "chuyskywalker/rolling-curl": "^3.1", + "php-yaoi/php-yaoi": "^1.0", + "phpunit/phpunit": "^8.5.25 || ^9.5.19" }, "type": "library", "extra": { - "phpstan": { - "includes": [ - "extension.neon" - ] - }, "branch-alias": { - "dev-main": "3.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { "psr-4": { - "Composer\\Pcre\\": "src" + "Behat\\Transliterator\\": "src/Behat/Transliterator" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "Artistic-1.0" ], - "authors": [ - { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" - } - ], - "description": "PCRE wrapping library that offers type-safe preg_* replacements.", + "description": "String transliterator", "keywords": [ - "PCRE", - "preg", - "regex", - "regular expression" + "i18n", + "slug", + "transliterator" ], "support": { - "issues": "https://github.com/composer/pcre/issues", - "source": "https://github.com/composer/pcre/tree/3.3.2" + "issues": "https://github.com/Behat/Transliterator/issues", + "source": "https://github.com/Behat/Transliterator/tree/v1.5.0" }, - "funding": [ - { - "url": "https://packagist.com", - "type": "custom" - }, - { - "url": "https://github.com/composer", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/composer/composer", - "type": "tidelift" - } - ], - "time": "2024-11-12T16:29:46+00:00" - }, - { - "name": "composer/xdebug-handler", - "version": "3.0.5", - "source": { - "type": "git", - "url": "https://github.com/composer/xdebug-handler.git", - "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef", - "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef", - "shasum": "" - }, - "require": { - "composer/pcre": "^1 || ^2 || ^3", - "php": "^7.2.5 || ^8.0", - "psr/log": "^1 || ^2 || ^3" - }, - "require-dev": { - "phpstan/phpstan": "^1.0", - "phpstan/phpstan-strict-rules": "^1.1", - "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5" - }, - "type": "library", - "autoload": { - "psr-4": { - "Composer\\XdebugHandler\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "John Stevenson", - "email": "john-stevenson@blueyonder.co.uk" - } - ], - "description": "Restarts a process without Xdebug.", - "keywords": [ - "Xdebug", - "performance" - ], - "support": { - "irc": "ircs://irc.libera.chat:6697/composer", - "issues": "https://github.com/composer/xdebug-handler/issues", - "source": "https://github.com/composer/xdebug-handler/tree/3.0.5" - }, - "funding": [ - { - "url": "https://packagist.com", - "type": "custom" - }, - { - "url": "https://github.com/composer", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/composer/composer", - "type": "tidelift" - } - ], - "time": "2024-05-06T16:37:16+00:00" + "time": "2022-03-30T09:27:43+00:00" }, { "name": "dekor/php-array-table", @@ -26728,24 +24171,24 @@ }, { "name": "drupal/upgrade_status", - "version": "4.3.8", + "version": "4.3.6", "source": { "type": "git", "url": "https://git.drupalcode.org/project/upgrade_status.git", - "reference": "4.3.8" + "reference": "4.3.6" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/upgrade_status-4.3.8.zip", - "reference": "4.3.8", - "shasum": "4526741f6d0991f2165d4d79c8830602f5ac8bca" + "url": "https://ftp.drupal.org/files/projects/upgrade_status-4.3.6.zip", + "reference": "4.3.6", + "shasum": "8169732d814034f541238d67ba31300825a61aca" }, "require": { "dekor/php-array-table": "^2.0", "drupal/core": "^9 || ^10 || ^11", - "mglaman/phpstan-drupal": "^1.2.11|^2.0", + "mglaman/phpstan-drupal": "^1.2.11", "nikic/php-parser": "^4.0.0|^5.0.0", - "phpstan/phpstan-deprecation-rules": "^1.0.0|^2.0", + "phpstan/phpstan-deprecation-rules": "^1.0.0", "symfony/process": "^3.4|^4.0|^5.0|^6.0|^7.0", "webflo/drupal-finder": "^1.2" }, @@ -26755,8 +24198,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "4.3.8", - "datestamp": "1751485112", + "version": "4.3.6", + "datestamp": "1729173427", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -26786,37 +24229,37 @@ }, { "name": "mglaman/phpstan-drupal", - "version": "2.0.7", + "version": "1.3.1", "source": { "type": "git", "url": "https://github.com/mglaman/phpstan-drupal.git", - "reference": "42cca54ee8bccec83a674ac45d1d17586777187e" + "reference": "2bc25a59b53c8f3990f168efd71241d9c25ea0c3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/42cca54ee8bccec83a674ac45d1d17586777187e", - "reference": "42cca54ee8bccec83a674ac45d1d17586777187e", + "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/2bc25a59b53c8f3990f168efd71241d9c25ea0c3", + "reference": "2bc25a59b53c8f3990f168efd71241d9c25ea0c3", "shasum": "" }, "require": { "php": "^8.1", - "phpstan/phpstan": "^2.1", - "phpstan/phpstan-deprecation-rules": "^2.0", - "symfony/finder": "^6.2 || ^7.0", - "symfony/yaml": "^6.2 || ^7.0", + "phpstan/phpstan": "^1.10.56", + "phpstan/phpstan-deprecation-rules": "^1.1.4", + "symfony/finder": "^4.2 || ^5.0 || ^6.0 || ^7.0", + "symfony/yaml": "^4.2|| ^5.0 || ^6.0 || ^7.0", "webflo/drupal-finder": "^1.3.1" }, "require-dev": { - "behat/mink": "^1.10", + "behat/mink": "^1.8", "composer/installers": "^1.9", "drupal/core-recommended": "^10", - "drush/drush": "^11 || ^12 || ^13", - "phpstan/extension-installer": "^1.4.3", - "phpstan/phpstan-strict-rules": "^2.0", - "phpunit/phpunit": "^9 || ^10 || ^11", - "slevomat/coding-standard": "^8.6", - "squizlabs/php_codesniffer": "^3.7", - "symfony/phpunit-bridge": "^6.2 || ^7.0" + "drush/drush": "^10.0 || ^11 || ^12 || ^13@beta", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan-strict-rules": "^1.0", + "phpunit/phpunit": "^8.5 || ^9 || ^10 || ^11", + "slevomat/coding-standard": "^7.1", + "squizlabs/php_codesniffer": "^3.3", + "symfony/phpunit-bridge": "^4.4 || ^5.4 || ^6.0 || ^7.0" }, "suggest": { "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.", @@ -26825,11 +24268,8 @@ }, "type": "phpstan-extension", "extra": { - "phpstan": { - "includes": [ - "extension.neon", - "rules.neon" - ] + "branch-alias": { + "dev-main": "1.0-dev" }, "installer-paths": { "tests/fixtures/drupal/core": [ @@ -26838,14 +24278,20 @@ "tests/fixtures/drupal/libraries/{$name}": [ "type:drupal-library" ], - "tests/fixtures/drupal/themes/contrib/{$name}": [ - "type:drupal-theme" - ], "tests/fixtures/drupal/modules/contrib/{$name}": [ "type:drupal-module" ], "tests/fixtures/drupal/profiles/contrib/{$name}": [ "type:drupal-profile" + ], + "tests/fixtures/drupal/themes/contrib/{$name}": [ + "type:drupal-theme" + ] + }, + "phpstan": { + "includes": [ + "extension.neon", + "rules.neon" ] } }, @@ -26867,7 +24313,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/2.0.7" + "source": "https://github.com/mglaman/phpstan-drupal/tree/1.3.1" }, "funding": [ { @@ -26883,24 +24329,24 @@ "type": "tidelift" } ], - "time": "2025-05-22T18:06:14+00:00" + "time": "2024-09-27T08:54:16+00:00" }, { "name": "phpstan/phpstan", - "version": "2.1.21", + "version": "1.12.11", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "1ccf445757458c06a04eb3f803603cb118fe5fa6" + "reference": "0d1fc20a962a91be578bcfe7cf939e6e1a2ff733" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/1ccf445757458c06a04eb3f803603cb118fe5fa6", - "reference": "1ccf445757458c06a04eb3f803603cb118fe5fa6", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0d1fc20a962a91be578bcfe7cf939e6e1a2ff733", + "reference": "0d1fc20a962a91be578bcfe7cf939e6e1a2ff733", "shasum": "" }, "require": { - "php": "^7.4|^8.0" + "php": "^7.2|^8.0" }, "conflict": { "phpstan/phpstan-shim": "*" @@ -26941,30 +24387,30 @@ "type": "github" } ], - "time": "2025-07-28T19:35:08+00:00" + "time": "2024-11-17T14:08:01+00:00" }, { "name": "phpstan/phpstan-deprecation-rules", - "version": "2.0.3", + "version": "1.2.1", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan-deprecation-rules.git", - "reference": "468e02c9176891cc901143da118f09dc9505fc2f" + "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/468e02c9176891cc901143da118f09dc9505fc2f", - "reference": "468e02c9176891cc901143da118f09dc9505fc2f", + "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/f94d246cc143ec5a23da868f8f7e1393b50eaa82", + "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82", "shasum": "" }, "require": { - "php": "^7.4 || ^8.0", - "phpstan/phpstan": "^2.1.15" + "php": "^7.2 || ^8.0", + "phpstan/phpstan": "^1.12" }, "require-dev": { "php-parallel-lint/php-parallel-lint": "^1.2", - "phpstan/phpstan-phpunit": "^2.0", - "phpunit/phpunit": "^9.6" + "phpstan/phpstan-phpunit": "^1.0", + "phpunit/phpunit": "^9.5" }, "type": "phpstan-extension", "extra": { @@ -26986,22 +24432,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/2.0.3" + "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.2.1" }, - "time": "2025-05-14T10:56:57+00:00" + "time": "2024-09-11T15:52:35+00:00" }, { "name": "symfony/config", - "version": "v6.4.22", + "version": "v6.4.14", "source": { "type": "git", "url": "https://github.com/symfony/config.git", - "reference": "af5917a3b1571f54689e56677a3f06440d2fe4c7" + "reference": "4e55e7e4ffddd343671ea972216d4509f46c22ef" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/af5917a3b1571f54689e56677a3f06440d2fe4c7", - "reference": "af5917a3b1571f54689e56677a3f06440d2fe4c7", + "url": "https://api.github.com/repos/symfony/config/zipball/4e55e7e4ffddd343671ea972216d4509f46c22ef", + "reference": "4e55e7e4ffddd343671ea972216d4509f46c22ef", "shasum": "" }, "require": { @@ -27047,7 +24493,7 @@ "description": "Helps you find, load, combine, autofill and validate configuration values of any kind", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/config/tree/v6.4.22" + "source": "https://github.com/symfony/config/tree/v6.4.14" }, "funding": [ { @@ -27063,20 +24509,85 @@ "type": "tidelift" } ], - "time": "2025-05-14T06:00:01+00:00" + "time": "2024-11-04T11:33:53+00:00" }, { - "name": "symfony/translation", - "version": "v6.4.23", + "name": "symfony/css-selector", + "version": "v6.4.13", "source": { "type": "git", - "url": "https://github.com/symfony/translation.git", - "reference": "de8afa521e04a5220e9e58a1dc99971ab7cac643" + "url": "https://github.com/symfony/css-selector.git", + "reference": "cb23e97813c5837a041b73a6d63a9ddff0778f5e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/de8afa521e04a5220e9e58a1dc99971ab7cac643", - "reference": "de8afa521e04a5220e9e58a1dc99971ab7cac643", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/cb23e97813c5837a041b73a6d63a9ddff0778f5e", + "reference": "cb23e97813c5837a041b73a6d63a9ddff0778f5e", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\CssSelector\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Jean-François Simon", + "email": "jeanfrancois.simon@sensiolabs.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Converts CSS selectors to XPath expressions", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/css-selector/tree/v6.4.13" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-25T14:18:03+00:00" + }, + { + "name": "symfony/translation", + "version": "v6.4.13", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation.git", + "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation/zipball/bee9bfabfa8b4045a66bf82520e492cddbaffa66", + "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66", "shasum": "" }, "require": { @@ -27142,7 +24653,7 @@ "description": "Provides tools to internationalize your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/translation/tree/v6.4.23" + "source": "https://github.com/symfony/translation/tree/v6.4.13" }, "funding": [ { @@ -27158,7 +24669,7 @@ "type": "tidelift" } ], - "time": "2025-06-26T21:24:02+00:00" + "time": "2024-09-27T18:14:25+00:00" } ], "aliases": [ @@ -27171,14 +24682,14 @@ ], "minimum-stability": "dev", "stability-flags": { - "drupal/ckeditor_iframe": 10, + "drupal/auto_entitylabel": 10, "drupal/drutopia_collection": 20, "drupal/drutopia_core": 20, - "drupal/drutopia_organization": 20, "drupal/drutopia_site": 20, "drupal/empty_page": 20, "drupal/facets": 20, - "drupal/givebutter": 20, + "drupal/google_analytics": 20, + "drupal/inline_entity_form": 5, "drupal/menu_link_config": 15, "drupal/migration_helpers": 20, "drupal/notfoundpassthrough": 20, @@ -27190,12 +24701,11 @@ "drupal/social_post_twitter": 20, "drupal/subpathauto": 5, "drupal/tomselect": 20, - "drupal/workflow_buttons": 20, "drutopia/drutopia": 20 }, "prefer-stable": true, "prefer-lowest": false, - "platform": {}, - "platform-dev": {}, + "platform": [], + "platform-dev": [], "plugin-api-version": "2.6.0" } diff --git a/config/sync/admin_toolbar.settings.yml b/config/sync/admin_toolbar.settings.yml index 6754618..5965a31 100644 --- a/config/sync/admin_toolbar.settings.yml +++ b/config/sync/admin_toolbar.settings.yml @@ -1,5 +1 @@ menu_depth: 4 -hoverintent_behavior: - enabled: true - timeout: 500 -enable_toggle_shortcut: false diff --git a/config/sync/admin_toolbar_search.settings.yml b/config/sync/admin_toolbar_search.settings.yml index a4b0cc4..4ae9775 100644 --- a/config/sync/admin_toolbar_search.settings.yml +++ b/config/sync/admin_toolbar_search.settings.yml @@ -1,4 +1,3 @@ _core: default_config_hash: AAmWcgwzGYbXfR6wfEfMyoi3r5QZwlpxvq5dHbupnJo -display_menu_item: false -enable_keyboard_shortcut: true +display_menu_item: 0 diff --git a/config/sync/admin_toolbar_tools.settings.yml b/config/sync/admin_toolbar_tools.settings.yml index d2ac5ea..2f4de20 100644 --- a/config/sync/admin_toolbar_tools.settings.yml +++ b/config/sync/admin_toolbar_tools.settings.yml @@ -1 +1,2 @@ max_bundle_number: 20 +hoverintent_functionality: true diff --git a/config/sync/block.block.exposedformsearchpage_1.yml b/config/sync/block.block.exposedformsearchpage_1.yml index 6117e9c..9bb853c 100644 --- a/config/sync/block.block.exposedformsearchpage_1.yml +++ b/config/sync/block.block.exposedformsearchpage_1.yml @@ -5,14 +5,10 @@ dependencies: config: - views.view.search module: - - block_class - block_visibility_groups - views theme: - geofresco -third_party_settings: - block_class: - classes: is-hidden-mobile id: exposedformsearchpage_1 theme: geofresco region: header_search diff --git a/config/sync/block.block.geofresco_page_title.yml b/config/sync/block.block.geofresco_page_title.yml index 13cee8f..901cf9a 100644 --- a/config/sync/block.block.geofresco_page_title.yml +++ b/config/sync/block.block.geofresco_page_title.yml @@ -2,13 +2,8 @@ uuid: aeb3ab6f-f30b-48d1-85ab-97a6dfde8e3a langcode: en status: true dependencies: - module: - - block_class theme: - geofresco -third_party_settings: - block_class: - classes: column _core: default_config_hash: sFPCArkI1EMTMKn-T_Gtlk6pAr2_JhI5b7aLvRz9UjM id: geofresco_page_title diff --git a/config/sync/block_class.settings.yml b/config/sync/block_class.settings.yml deleted file mode 100644 index 269925f..0000000 --- a/config/sync/block_class.settings.yml +++ /dev/null @@ -1,24 +0,0 @@ -_core: - default_config_hash: XEpuHrBp3DELKxVx0tmwE6CS7NSIKXu4F6QhT_vwqd0 -maxlength_block_class_field: 255 -field_type: multiple_textfields -default_case: lowercase -block_classes_stored: - - is-hidden-mobile - - column -enable_attributes: true -enable_auto_complete: true -qty_classes_per_block: 10 -items_per_page: 50 -enable_special_chars: false -qty_attributes_per_block: 10 -enable_id_replacement: true -weight_attributes: null -weight_class: null -weight_id: null -filter_html_clean_css_identifier: '' -maxlength_attributes: 255 -maxlength_id: 255 -attribute_keys_stored: '[]' -attribute_value_stored: '[]' -attributes_inline: '[]' diff --git a/config/sync/captcha.settings.yml b/config/sync/captcha.settings.yml index bd7904b..93ed801 100644 --- a/config/sync/captcha.settings.yml +++ b/config/sync/captcha.settings.yml @@ -5,9 +5,8 @@ enable_globally_on_admin_routes: false default_challenge: riddler/Riddler description: 'This question is to verify that you are a human visitor and to prevent automated spam.' title: CAPTCHA -administration_mode: false +administration_mode: true administration_mode_on_admin_routes: false -whitelist_ips: '' wrong_captcha_response_message: 'The answer you entered for the CAPTCHA was not correct.' default_validation: 1 persistence: 1 diff --git a/config/sync/ckeditorheight.settings.yml b/config/sync/ckeditorheight.settings.yml new file mode 100644 index 0000000..0a9b52d --- /dev/null +++ b/config/sync/ckeditorheight.settings.yml @@ -0,0 +1,6 @@ +_core: + default_config_hash: ocjcQr-U0K6oGgiak8JMZVD9LAKNesDbQ9nRfTsq5ks +offset: 1.0 +line_height: 1.5 +unit: em +disable_autogrow: false diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.block_class.yml b/config/sync/config_snapshot.snapshot.config_sync.module.block_class.yml deleted file mode 100644 index 9d5d34b..0000000 --- a/config/sync/config_snapshot.snapshot.config_sync.module.block_class.yml +++ /dev/null @@ -1,34 +0,0 @@ -uuid: 0efe4cf0-2aff-4c18-a3ef-0f7fd8879cbb -langcode: en -status: true -dependencies: - module: - - block_class -id: config_sync.module.block_class -snapshotSet: config_sync -extensionType: module -extensionName: block_class -items: - - - collection: '' - name: block_class.settings - data: - block_classes_stored: { } - default_case: standard - enable_attributes: true - enable_auto_complete: true - enable_id_replacement: true - enable_special_chars: false - field_type: multiple_textfields - filter_html_clean_css_identifier: '' - items_per_page: 50 - qty_attributes_per_block: 10 - qty_classes_per_block: 10 - maxlength_attributes: 255 - maxlength_block_class_field: 255 - maxlength_id: 255 - weight_attributes: 0 - weight_class: 0 - weight_id: 0 - _core: - default_config_hash: XEpuHrBp3DELKxVx0tmwE6CS7NSIKXu4F6QhT_vwqd0 diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.ckeditor.yml b/config/sync/config_snapshot.snapshot.config_sync.module.ckeditor.yml new file mode 100644 index 0000000..37a903c --- /dev/null +++ b/config/sync/config_snapshot.snapshot.config_sync.module.ckeditor.yml @@ -0,0 +1,11 @@ +uuid: fea0c8df-8eb3-416d-85c5-6d33138ecd85 +langcode: en +status: true +dependencies: + module: + - ckeditor +id: config_sync.module.ckeditor +snapshotSet: config_sync +extensionType: module +extensionName: ckeditor +items: { } diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.ckeditorheight.yml b/config/sync/config_snapshot.snapshot.config_sync.module.ckeditorheight.yml new file mode 100644 index 0000000..ab29164 --- /dev/null +++ b/config/sync/config_snapshot.snapshot.config_sync.module.ckeditorheight.yml @@ -0,0 +1,21 @@ +uuid: 33e8f083-bfe1-405c-bd32-53a7ca7b6891 +langcode: en +status: true +dependencies: + module: + - ckeditorheight +id: config_sync.module.ckeditorheight +snapshotSet: config_sync +extensionType: module +extensionName: ckeditorheight +items: + - + collection: '' + name: ckeditorheight.settings + data: + offset: 1 + line_height: 1.5 + unit: em + disable_autogrow: false + _core: + default_config_hash: ocjcQr-U0K6oGgiak8JMZVD9LAKNesDbQ9nRfTsq5ks diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.fakeobjects.yml b/config/sync/config_snapshot.snapshot.config_sync.module.fakeobjects.yml new file mode 100644 index 0000000..72e7efb --- /dev/null +++ b/config/sync/config_snapshot.snapshot.config_sync.module.fakeobjects.yml @@ -0,0 +1,11 @@ +uuid: a0c90e3e-c767-43bf-b5f8-3e2b1c7e258a +langcode: en +status: true +dependencies: + module: + - fakeobjects +id: config_sync.module.fakeobjects +snapshotSet: config_sync +extensionType: module +extensionName: fakeobjects +items: { } diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.footnotes.yml b/config/sync/config_snapshot.snapshot.config_sync.module.footnotes.yml index 2caa2f9..becad0e 100644 --- a/config/sync/config_snapshot.snapshot.config_sync.module.footnotes.yml +++ b/config/sync/config_snapshot.snapshot.config_sync.module.footnotes.yml @@ -8,57 +8,4 @@ id: config_sync.module.footnotes snapshotSet: config_sync extensionType: module extensionName: footnotes -items: - - - collection: '' - name: editor.editor.footnote - data: - status: true - dependencies: - config: - - filter.format.footnote - module: - - ckeditor5 - format: footnote - editor: ckeditor5 - settings: - toolbar: - items: - - bold - - italic - - link - image_upload: { } - _core: - default_config_hash: SyHxfjreOgdyYXaIXOlKvLazJjPl6X-6ywdJeSruOzg - - - collection: '' - name: filter.format.footnote - data: - status: true - dependencies: - module: - - footnotes - name: Footnote - format: footnote - filters: - filter_html: - id: filter_html - provider: filter - status: true - weight: -10 - settings: - allowed_html: '

' - filter_html_help: true - filter_html_nofollow: false - filter_footnotes: - id: filter_footnotes - provider: footnotes - status: false - weight: 0 - settings: - footnotes_collapse: false - footnotes_css: true - footnotes_dialog: false - footnotes_footer_disable: false - _core: - default_config_hash: SYAah-i4HbJnc3ZnKC9NmY4M0UAFYpfobYzxg0eMunM +items: { } diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.plausible.yml b/config/sync/config_snapshot.snapshot.config_sync.module.plausible.yml deleted file mode 100644 index 21e8036..0000000 --- a/config/sync/config_snapshot.snapshot.config_sync.module.plausible.yml +++ /dev/null @@ -1,33 +0,0 @@ -uuid: d968c39b-76d9-4fde-87c2-98597304e1c0 -langcode: en -status: true -dependencies: - module: - - plausible -id: config_sync.module.plausible -snapshotSet: config_sync -extensionType: module -extensionName: plausible -items: - - - collection: '' - name: plausible.settings - data: - script: - domain: '' - api: '' - src: 'https://plausible.io/js/plausible.js' - dashboard: - shared_link: '' - visibility: - enable: true - admin_route_mode: 0 - request_path_mode: 0 - request_path_pages: '' - user_role_mode: 0 - user_role_roles: { } - events: - 403: false - 404: false - _core: - default_config_hash: 7ITcwwShhS7SG3SJdIqRQkzXEcEPNejdEnbeDVDeDY0 diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.visitors_geoip.yml b/config/sync/config_snapshot.snapshot.config_sync.module.visitors_geoip.yml index 0b54404..9100a38 100644 --- a/config/sync/config_snapshot.snapshot.config_sync.module.visitors_geoip.yml +++ b/config/sync/config_snapshot.snapshot.config_sync.module.visitors_geoip.yml @@ -9,1711 +9,6 @@ snapshotSet: config_sync extensionType: module extensionName: visitors_geoip items: - - - collection: '' - name: views.view.visitors_geoip - data: - langcode: en - status: true - dependencies: - module: - - visitors - enforced: - module: - - visitors_geoip - id: visitors_geoip - label: 'Visitors GeoIP' - module: views - description: 'Region and City location reports.' - tag: '' - base_table: visitors - base_field: '' - display: - default: - id: default - display_title: Default - display_plugin: default - position: 0 - display_options: - fields: - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - exclude: false - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: true - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - set_precision: false - precision: 0 - decimal: . - separator: ',' - format_plural: 0 - format_plural_string: !!binary MQNAY291bnQ= - prefix: '' - suffix: '' - pager: - type: mini - options: - offset: 0 - items_per_page: 10 - total_pages: null - id: 0 - tags: - next: ›› - previous: ‹‹ - expose: - items_per_page: false - items_per_page_label: 'Items per page' - items_per_page_options: '5, 10, 25, 50' - items_per_page_options_all: false - items_per_page_options_all_label: '- All -' - offset: false - offset_label: Offset - exposed_form: - type: basic - options: - submit_button: Apply - reset_button: false - reset_button_label: Reset - exposed_sorts_label: 'Sort by' - expose_sort_order: true - sort_asc_label: Asc - sort_desc_label: Desc - access: - type: none - options: { } - cache: - type: tag - options: { } - empty: { } - sorts: - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - order: DESC - expose: - label: '' - field_identifier: '' - exposed: false - arguments: { } - filters: - bot: - id: bot - table: visitors - field: bot - relationship: none - group_type: group - admin_label: '' - plugin_id: boolean - operator: '!=' - value: '1' - group: 1 - exposed: false - expose: - operator_id: '' - label: '' - description: '' - use_operator: false - operator: '' - operator_limit_selection: false - operator_list: { } - identifier: '' - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - visitors_date_time: - id: visitors_date_time - table: visitors - field: visitors_date_time - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_date - operator: between - value: - min: to - max: from - value: '' - type: global - group: 1 - exposed: false - expose: - operator_id: '' - label: '' - description: '' - use_operator: false - operator: '' - operator_limit_selection: false - operator_list: { } - identifier: '' - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - min_placeholder: '' - max_placeholder: '' - placeholder: '' - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - style: - type: table - options: - grouping: { } - row_class: '' - default_row_class: true - columns: - location_region_1: location_region_1 - location_country_2: location_country_2 - location_country: location_country - location_region: location_region - location_country_1: location_country_1 - visitor_id: visitor_id - default: visitor_id - info: - location_region_1: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - location_country_2: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - location_country: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - location_region: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - location_country_1: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - visitor_id: - sortable: true - default_sort_order: desc - align: '' - separator: '' - empty_column: false - responsive: '' - override: true - sticky: false - summary: '' - empty_table: false - caption: '' - description: '' - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - query: - type: views_query - options: - query_comment: '' - disable_sql_rewrite: false - distinct: false - replica: false - query_tags: { } - relationships: { } - group_by: true - header: { } - footer: { } - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - tags: { } - city_table: - id: city_table - display_title: City - display_plugin: embed - position: 3 - display_options: - fields: - location_country_2: - id: location_country_2 - table: visitors - field: location_country - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_country - label: Abbreviation - exclude: true - alter: - alter_text: true - text: '{{ location_country_2|lower }}' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: true - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - icon: false - text: false - abbreviation: true - location_region: - id: location_region - table: visitors - field: location_region - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: 'Region url' - exclude: true - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: true - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: _none - hide_empty: false - empty_zero: false - hide_alter_empty: true - location_city_1: - id: location_city_1 - table: visitors - field: location_city - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: 'City url' - exclude: true - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: true - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: _none - hide_empty: false - empty_zero: false - hide_alter_empty: true - location_city: - id: location_city - table: visitors - field: location_city - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: City - exclude: true - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: true - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: Unknown - hide_empty: false - empty_zero: false - hide_alter_empty: true - location_country: - id: location_country - table: visitors - field: location_country - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_country - label: Country - exclude: true - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: true - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - icon: true - text: false - location_country_1: - id: location_country_1 - table: visitors - field: location_country - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_country - label: City - exclude: false - alter: - alter_text: true - text: '{{ location_country }} {{ location_city }}, {{ location_country_1 }}' - make_link: true - path: 'internal:/visitors/location/city/{{ location_country_2 }}/{{ location_region }}/{{ location_city_1 }}' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: true - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - icon: false - text: true - abbreviation: false - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - exclude: false - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: true - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - set_precision: false - precision: 0 - decimal: . - separator: ',' - format_plural: 0 - format_plural_string: !!binary MQNAY291bnQ= - prefix: '' - suffix: '' - arguments: - location_country: - id: location_country - table: visitors - field: location_country - relationship: none - group_type: group - admin_label: '' - plugin_id: string - default_action: ignore - exception: - value: all - title_enable: false - title: All - title_enable: false - title: '' - default_argument_type: fixed - default_argument_options: - argument: '' - summary_options: - base_path: '' - count: true - override: false - items_per_page: 25 - summary: - sort_order: asc - number_of_records: 0 - format: default_summary - specify_validation: false - validate: - type: none - fail: 'not found' - validate_options: { } - glossary: false - limit: 0 - case: none - path_case: none - transform_dash: false - break_phrase: false - location_region: - id: location_region - table: visitors - field: location_region - relationship: none - group_type: group - admin_label: '' - plugin_id: string - default_action: ignore - exception: - value: all - title_enable: false - title: All - title_enable: false - title: '' - default_argument_type: fixed - default_argument_options: - argument: '' - summary_options: - base_path: '' - count: true - override: false - items_per_page: 25 - summary: - sort_order: asc - number_of_records: 0 - format: default_summary - specify_validation: false - validate: - type: none - fail: 'not found' - validate_options: { } - glossary: false - limit: 0 - case: none - path_case: none - transform_dash: false - break_phrase: false - defaults: - fields: false - arguments: false - display_description: '' - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url - - url.query_args - tags: { } - recent_view_table: - id: recent_view_table - display_title: 'Recent Views' - display_plugin: embed - position: 3 - display_options: - fields: - visitors_id: - id: visitors_id - table: visitors - field: visitors_id - relationship: none - group_type: group - admin_label: '' - plugin_id: numeric - label: 'Visitors ID' - exclude: true - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: true - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - set_precision: false - precision: 0 - decimal: . - separator: ',' - format_plural: false - format_plural_string: !!binary MQNAY291bnQ= - prefix: '' - suffix: '' - visitors_url: - id: visitors_url - table: visitors - field: visitors_url - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: URL - exclude: false - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: true - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - visitors_date_time: - id: visitors_date_time - table: visitors - field: visitors_date_time - relationship: none - group_type: group - admin_label: '' - plugin_id: date - label: 'Date Time' - exclude: false - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: true - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - date_format: short - custom_date_format: '' - timezone: '' - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: Visitor - exclude: false - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: true - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - nothing: - id: nothing - table: views - field: nothing - relationship: none - group_type: group - admin_label: '' - plugin_id: custom - label: Operations - exclude: false - alter: - alter_text: true - text: details - make_link: true - path: 'internal:/visitors/hits/{{ visitors_id }}' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: true - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: false - pager: - type: full - options: - offset: 0 - items_per_page: 10 - total_pages: null - id: 0 - tags: - next: ›› - previous: ‹‹ - first: '« First' - last: 'Last »' - expose: - items_per_page: false - items_per_page_label: 'Items per page' - items_per_page_options: '5, 10, 25, 50' - items_per_page_options_all: false - items_per_page_options_all_label: '- All -' - offset: false - offset_label: Offset - quantity: 9 - sorts: - visitors_id: - id: visitors_id - table: visitors - field: visitors_id - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - order: DESC - expose: - label: '' - field_identifier: '' - exposed: false - arguments: - location_country: - id: location_country - table: visitors - field: location_country - relationship: none - group_type: group - admin_label: '' - plugin_id: string - default_action: ignore - exception: - value: all - title_enable: false - title: All - title_enable: false - title: '' - default_argument_type: fixed - default_argument_options: - argument: '' - summary_options: - base_path: '' - count: true - override: false - items_per_page: 25 - summary: - sort_order: asc - number_of_records: 0 - format: default_summary - specify_validation: false - validate: - type: none - fail: 'not found' - validate_options: { } - glossary: false - limit: 0 - case: lower - path_case: none - transform_dash: false - break_phrase: false - location_region: - id: location_region - table: visitors - field: location_region - relationship: none - group_type: group - admin_label: '' - plugin_id: string - default_action: ignore - exception: - value: all - title_enable: false - title: All - title_enable: false - title: '' - default_argument_type: fixed - default_argument_options: - argument: '' - summary_options: - base_path: '' - count: true - override: false - items_per_page: 25 - summary: - sort_order: asc - number_of_records: 0 - format: default_summary - specify_validation: false - validate: - type: none - fail: 'not found' - validate_options: { } - glossary: false - limit: 0 - case: none - path_case: none - transform_dash: false - break_phrase: false - location_city: - id: location_city - table: visitors - field: location_city - relationship: none - group_type: group - admin_label: '' - plugin_id: string - default_action: ignore - exception: - value: all - title_enable: false - title: All - title_enable: false - title: '' - default_argument_type: fixed - default_argument_options: - argument: '' - summary_options: - base_path: '' - count: true - override: false - items_per_page: 25 - summary: - sort_order: asc - number_of_records: 0 - format: default_summary - specify_validation: false - validate: - type: none - fail: 'not found' - validate_options: { } - glossary: false - limit: 0 - case: none - path_case: none - transform_dash: false - break_phrase: false - filters: - bot: - id: bot - table: visitors - field: bot - relationship: none - group_type: group - admin_label: '' - plugin_id: boolean - operator: '!=' - value: '1' - group: 1 - exposed: false - expose: - operator_id: '' - label: '' - description: '' - use_operator: false - operator: '' - operator_limit_selection: false - operator_list: { } - identifier: '' - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - visitors_date_time: - id: visitors_date_time - table: visitors - field: visitors_date_time - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_date - operator: between - value: - min: to - max: from - value: '' - type: global - group: 1 - exposed: false - expose: - operator_id: '' - label: '' - description: '' - use_operator: false - operator: '' - operator_limit_selection: false - operator_list: { } - identifier: '' - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - min_placeholder: '' - max_placeholder: '' - placeholder: '' - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - visitors_path: - id: visitors_path - table: visitors - field: visitors_path - relationship: none - group_type: group - admin_label: '' - plugin_id: string - operator: starts - value: '' - group: 1 - exposed: true - expose: - operator_id: visitors_path_op - label: Path - description: '' - use_operator: false - operator: visitors_path_op - operator_limit_selection: false - operator_list: { } - identifier: visitors_path - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - content_editor: '0' - administrator: '0' - placeholder: '' - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - filter_groups: - operator: AND - groups: - 1: AND - defaults: - pager: false - group_by: false - fields: false - sorts: false - arguments: false - filters: false - filter_groups: false - header: false - group_by: false - display_description: '' - header: - result: - id: result - table: views - field: result - relationship: none - group_type: group - admin_label: '' - plugin_id: result - empty: false - content: 'Displaying @start - @end of @total' - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url - - url.query_args - tags: { } - region_table: - id: region_table - display_title: Region - display_plugin: embed - position: 2 - display_options: - fields: - location_region_1: - id: location_region_1 - table: visitors - field: location_region - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: 'Region link' - exclude: true - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: false - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: _none - hide_empty: false - empty_zero: false - hide_alter_empty: true - location_country_2: - id: location_country_2 - table: visitors - field: location_country - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_country - label: Abbreviation - exclude: true - alter: - alter_text: true - text: '{{ location_country_2|lower }}' - make_link: false - path: 'internal:/visitors/location/region/{{ location_country_2 }}/{{ location_region }}' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: true - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - icon: false - text: false - abbreviation: true - location_country: - id: location_country - table: visitors - field: location_country - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_country - label: Flag - exclude: true - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: false - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - icon: true - text: false - location_region: - id: location_region - table: visitors - field: location_region - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - label: Region - exclude: true - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: true - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: Unknown - hide_empty: false - empty_zero: false - hide_alter_empty: true - location_country_1: - id: location_country_1 - table: visitors - field: location_country - relationship: none - group_type: group - admin_label: '' - plugin_id: visitors_country - label: Region - exclude: false - alter: - alter_text: true - text: '{{location_country }} {{ location_region }}, {{ location_country_1 }} ' - make_link: true - path: 'internal:/visitors/location/region/{{ location_country_2 }}/{{ location_region_1 }}' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: true - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: Unknown - hide_empty: false - empty_zero: false - hide_alter_empty: true - icon: false - text: true - abbreviation: false - visitor_id: - id: visitor_id - table: visitors - field: visitor_id - relationship: none - group_type: count_distinct - admin_label: '' - plugin_id: standard - label: 'Unique visitors' - exclude: false - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: true - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - set_precision: false - precision: 0 - decimal: . - separator: ',' - format_plural: 0 - format_plural_string: !!binary MQNAY291bnQ= - prefix: '' - suffix: '' - arguments: - location_country: - id: location_country - table: visitors - field: location_country - relationship: none - group_type: group - admin_label: '' - plugin_id: string - default_action: ignore - exception: - value: all - title_enable: false - title: All - title_enable: false - title: '' - default_argument_type: fixed - default_argument_options: - argument: '' - summary_options: - base_path: '' - count: true - override: false - items_per_page: 25 - summary: - sort_order: asc - number_of_records: 0 - format: default_summary - specify_validation: false - validate: - type: none - fail: 'not found' - validate_options: { } - glossary: false - limit: 0 - case: none - path_case: none - transform_dash: false - break_phrase: false - defaults: - fields: false - arguments: false - display_description: '' - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url - - url.query_args - tags: { } - _core: - default_config_hash: xSLp7qH6ygL6WYOeKvgeihL8VlZYZnZFbRsvYGLGsGk - collection: '' name: visitors_geoip.settings diff --git a/config/sync/core.entity_view_display.node.article.card.yml b/config/sync/core.entity_view_display.node.article.card.yml index 33858d5..353e7ff 100644 --- a/config/sync/core.entity_view_display.node.article.card.yml +++ b/config/sync/core.entity_view_display.node.article.card.yml @@ -20,7 +20,7 @@ dependencies: - field.field.node.article.field_topics - field.field.node.article.field_upload - node.type.article - - responsive_image.styles.card_extra_wide + - responsive_image.styles.wide module: - datetime - ds @@ -120,11 +120,13 @@ content: type: media_responsive_thumbnail label: hidden settings: - responsive_image_style: card_extra_wide + responsive_image_style: wide image_link: content image_loading: attribute: lazy - third_party_settings: { } + third_party_settings: + ds: + ds_limit: '' weight: 0 region: ds_content field_publication_date: diff --git a/config/sync/core.entity_view_display.node.article.full.yml b/config/sync/core.entity_view_display.node.article.full.yml index 941d1a7..e1187b7 100644 --- a/config/sync/core.entity_view_display.node.article.full.yml +++ b/config/sync/core.entity_view_display.node.article.full.yml @@ -27,7 +27,6 @@ dependencies: - ds - entity_reference_override - entity_reference_revisions - - file - media_responsive_thumbnail - user third_party_settings: @@ -38,7 +37,6 @@ third_party_settings: disable_css: true entity_classes: all_classes settings: - label: '' classes: layout_class: { } header: { } @@ -54,6 +52,7 @@ third_party_settings: attributes: '' link_attribute: '' link_custom: '' + label: '' regions: header: - field_media_image @@ -64,12 +63,10 @@ third_party_settings: - field_authors right: - field_body_paragraph - - footnotes_group - field_biography - field_topics - field_tags - geo_citation - - field_upload - comment - links fields: @@ -92,7 +89,7 @@ content: view_mode: default pager_id: 0 third_party_settings: { } - weight: 12 + weight: 10 region: right field_article_type: type: entity_reference_label @@ -122,7 +119,7 @@ content: third_party_settings: ds: ds_limit: '' - weight: 7 + weight: 6 region: right field_body_paragraph: type: entity_reference_revisions_entity_view @@ -160,7 +157,7 @@ content: settings: link: true third_party_settings: { } - weight: 9 + weight: 8 region: right field_topics: type: entity_reference_label @@ -168,30 +165,17 @@ content: settings: link: true third_party_settings: { } - weight: 8 - region: right - field_upload: - type: file_table - label: hidden - settings: - use_description_as_link_text: true - third_party_settings: { } - weight: 11 - region: right - footnotes_group: - settings: { } - third_party_settings: { } - weight: 6 + weight: 7 region: right geo_citation: settings: { } third_party_settings: { } - weight: 10 + weight: 9 region: right links: settings: { } third_party_settings: { } - weight: 13 + weight: 11 region: right hidden: body: true @@ -199,4 +183,5 @@ hidden: field_meta_tags: true field_publication_date: true field_summary: true + field_upload: true search_api_excerpt: true diff --git a/config/sync/core.entity_view_display.node.article.rss.yml b/config/sync/core.entity_view_display.node.article.rss.yml index cc2a5d3..d9f9840 100644 --- a/config/sync/core.entity_view_display.node.article.rss.yml +++ b/config/sync/core.entity_view_display.node.article.rss.yml @@ -19,7 +19,6 @@ dependencies: - field.field.node.article.field_tags - field.field.node.article.field_topics - field.field.node.article.field_upload - - image.style.drutopia_wide_large - node.type.article module: - ds @@ -35,7 +34,6 @@ third_party_settings: disable_css: false entity_classes: all_classes settings: - label: '' classes: layout_class: { } ds_content: { } @@ -45,12 +43,25 @@ third_party_settings: attributes: '' link_attribute: '' link_custom: '' + label: '' regions: ds_content: - - field_summary - field_media_image + - node_title + - field_summary - field_topics - links + - geo_citation + fields: + node_title: + plugin_id: node_title + weight: 1 + label: hidden + formatter: default + settings: + link: true + wrapper: h2 + class: '' _core: default_config_hash: qkZsE06xoZ42p5C0rjPL_VqIm82SI6KuwaQJwHEycTg id: node.article.rss @@ -60,33 +71,38 @@ mode: rss content: field_media_image: type: media_thumbnail - label: hidden + label: above settings: image_link: '' - image_style: drutopia_wide_large + image_style: '' image_loading: - attribute: eager + attribute: lazy third_party_settings: { } - weight: 1 + weight: 0 region: ds_content field_summary: type: text_default label: hidden settings: { } third_party_settings: { } - weight: 0 + weight: 2 region: ds_content field_topics: type: entity_reference_rss_category label: inline settings: { } third_party_settings: { } - weight: 2 + weight: 3 + region: ds_content + geo_citation: + settings: { } + third_party_settings: { } + weight: 90 region: ds_content links: settings: { } third_party_settings: { } - weight: 3 + weight: 4 region: ds_content hidden: body: true @@ -107,6 +123,4 @@ hidden: field_tags: true field_upload: true field_visions_models: true - footnotes_group: true - geo_citation: true search_api_excerpt: true diff --git a/config/sync/core.entity_view_display.node.article.teaser.yml b/config/sync/core.entity_view_display.node.article.teaser.yml index ee01e0e..56e0961 100644 --- a/config/sync/core.entity_view_display.node.article.teaser.yml +++ b/config/sync/core.entity_view_display.node.article.teaser.yml @@ -34,7 +34,6 @@ third_party_settings: disable_css: true entity_classes: all_classes settings: - label: '' classes: layout_class: { } left: { } @@ -46,9 +45,11 @@ third_party_settings: attributes: '' link_attribute: '' link_custom: '' + label: '' regions: left: - field_media_image + - geo_citation right: - node_post_date - node_title @@ -111,6 +112,11 @@ content: third_party_settings: { } weight: 5 region: right + geo_citation: + settings: { } + third_party_settings: { } + weight: 90 + region: left hidden: body: true comment: true @@ -129,7 +135,5 @@ hidden: field_tags: true field_upload: true field_visions_models: true - footnotes_group: true - geo_citation: true links: true search_api_excerpt: true diff --git a/config/sync/core.entity_view_display.node.blog.card.yml b/config/sync/core.entity_view_display.node.blog.card.yml index b4b02ab..a1ad24b 100644 --- a/config/sync/core.entity_view_display.node.blog.card.yml +++ b/config/sync/core.entity_view_display.node.blog.card.yml @@ -17,7 +17,7 @@ dependencies: - field.field.node.blog.field_topics - field.field.node.blog.field_upload - node.type.blog - - responsive_image.styles.card_extra_wide + - responsive_image.styles.wide module: - ds - field_group @@ -114,11 +114,13 @@ content: type: media_responsive_thumbnail label: hidden settings: - responsive_image_style: card_extra_wide + responsive_image_style: wide image_link: '' image_loading: attribute: lazy - third_party_settings: { } + third_party_settings: + ds: + ds_limit: '' weight: 0 region: ds_content hidden: diff --git a/config/sync/core.entity_view_display.node.blog.default.yml b/config/sync/core.entity_view_display.node.blog.default.yml index 2d66a33..9e1deee 100644 --- a/config/sync/core.entity_view_display.node.blog.default.yml +++ b/config/sync/core.entity_view_display.node.blog.default.yml @@ -8,7 +8,6 @@ dependencies: - field.field.node.blog.field_authors - field.field.node.blog.field_body_paragraph - field.field.node.blog.field_image - - field.field.node.blog.field_media_image - field.field.node.blog.field_meta_tags - field.field.node.blog.field_publication_date - field.field.node.blog.field_summary @@ -20,7 +19,6 @@ dependencies: - datetime - ds - file - - text - user third_party_settings: ds: @@ -30,22 +28,16 @@ third_party_settings: disable_css: false entity_classes: all_classes settings: - label: '' classes: layout_class: { } - ds_content: { } wrappers: ds_content: div outer_wrapper: div attributes: '' link_attribute: '' link_custom: '' - regions: - ds_content: - - field_authors - - body - - field_upload - - field_publication_date + label: '' + regions: { } _core: default_config_hash: e8yvfhoZmb_vDdkLtsMVv8u8XKzSRihmLtMph3nm6rM id: node.blog.default @@ -53,40 +45,27 @@ targetEntityType: node bundle: blog mode: default content: - body: - type: text_default - label: hidden - settings: { } - third_party_settings: { } - weight: 1 - region: ds_content - field_authors: - type: entity_reference_label - label: above - settings: - link: true - third_party_settings: { } - weight: 0 - region: ds_content field_publication_date: type: datetime_default - label: hidden + label: above settings: timezone_override: '' format_type: medium third_party_settings: { } - weight: 3 - region: ds_content + weight: 2 + region: content field_upload: type: file_default - label: hidden + label: above settings: use_description_as_link_text: true third_party_settings: { } - weight: 2 - region: ds_content + weight: 1 + region: content hidden: + body: true comment: true + field_authors: true field_body_paragraph: true field_image: true field_media_image: true @@ -94,6 +73,5 @@ hidden: field_summary: true field_tags: true field_topics: true - footnotes_group: true links: true search_api_excerpt: true diff --git a/config/sync/core.entity_view_display.node.blog.rss.yml b/config/sync/core.entity_view_display.node.blog.rss.yml deleted file mode 100644 index 333c578..0000000 --- a/config/sync/core.entity_view_display.node.blog.rss.yml +++ /dev/null @@ -1,99 +0,0 @@ -uuid: 8e99bb76-debd-4372-9416-cd97dfc4ed13 -langcode: en -status: true -dependencies: - config: - - core.entity_view_mode.node.rss - - field.field.node.blog.body - - field.field.node.blog.comment - - field.field.node.blog.field_authors - - field.field.node.blog.field_body_paragraph - - field.field.node.blog.field_image - - field.field.node.blog.field_media_image - - field.field.node.blog.field_meta_tags - - field.field.node.blog.field_publication_date - - field.field.node.blog.field_summary - - field.field.node.blog.field_tags - - field.field.node.blog.field_topics - - field.field.node.blog.field_upload - - node.type.blog - module: - - datetime - - ds - - taxonomy - - text - - user -third_party_settings: - ds: - layout: - id: ds_1col - library: null - disable_css: false - entity_classes: all_classes - settings: - label: '' - classes: - layout_class: { } - ds_content: { } - wrappers: - ds_content: div - outer_wrapper: div - attributes: '' - link_attribute: '' - link_custom: '' - regions: - ds_content: - - field_publication_date - - field_authors - - field_summary - - field_topics -_core: - default_config_hash: e8yvfhoZmb_vDdkLtsMVv8u8XKzSRihmLtMph3nm6rM -id: node.blog.rss -targetEntityType: node -bundle: blog -mode: rss -content: - field_authors: - type: entity_reference_label - label: inline - settings: - link: true - third_party_settings: { } - weight: 1 - region: ds_content - field_publication_date: - type: datetime_default - label: hidden - settings: - timezone_override: '' - format_type: medium - third_party_settings: { } - weight: 0 - region: ds_content - field_summary: - type: text_default - label: hidden - settings: { } - third_party_settings: { } - weight: 2 - region: ds_content - field_topics: - type: entity_reference_rss_category - label: inline - settings: { } - third_party_settings: { } - weight: 3 - region: ds_content -hidden: - body: true - comment: true - field_body_paragraph: true - field_image: true - field_media_image: true - field_meta_tags: true - field_tags: true - field_upload: true - footnotes_group: true - links: true - search_api_excerpt: true diff --git a/config/sync/core.entity_view_display.node.collection.card.yml b/config/sync/core.entity_view_display.node.collection.card.yml index 2808ef9..1880059 100644 --- a/config/sync/core.entity_view_display.node.collection.card.yml +++ b/config/sync/core.entity_view_display.node.collection.card.yml @@ -18,7 +18,7 @@ dependencies: - field.field.node.collection.field_tags - field.field.node.collection.field_topics - node.type.collection - - responsive_image.styles.card_extra_wide + - responsive_image.styles.wide module: - ds - field_group @@ -107,11 +107,13 @@ content: type: media_responsive_thumbnail label: hidden settings: - responsive_image_style: card_extra_wide + responsive_image_style: wide image_link: '' image_loading: attribute: lazy - third_party_settings: { } + third_party_settings: + ds: + ds_limit: '' weight: 0 region: ds_content hidden: diff --git a/config/sync/core.entity_view_display.node.gleaning.card.yml b/config/sync/core.entity_view_display.node.gleaning.card.yml index 3c60b97..f1f3ec0 100644 --- a/config/sync/core.entity_view_display.node.gleaning.card.yml +++ b/config/sync/core.entity_view_display.node.gleaning.card.yml @@ -11,7 +11,7 @@ dependencies: - field.field.node.gleaning.field_publication_date - field.field.node.gleaning.field_upload - node.type.gleaning - - responsive_image.styles.card_extra_wide + - responsive_image.styles.wide module: - datetime - ds @@ -83,11 +83,13 @@ content: type: media_responsive_thumbnail label: hidden settings: - responsive_image_style: card_extra_wide + responsive_image_style: wide image_link: '' image_loading: attribute: lazy - third_party_settings: { } + third_party_settings: + ds: + ds_limit: '' weight: 0 region: ds_content field_publication_date: diff --git a/config/sync/core.extension.yml b/config/sync/core.extension.yml index e165419..d9ab996 100644 --- a/config/sync/core.extension.yml +++ b/config/sync/core.extension.yml @@ -9,7 +9,6 @@ module: automated_cron: 0 autosave_form: 0 block: 0 - block_class: 0 block_content: 0 block_visibility_groups: 0 breakpoint: 0 @@ -17,8 +16,9 @@ module: charts: 0 charts_chartjs: 0 checklistapi: 0 + ckeditor: 0 ckeditor5: 0 - ckeditor_iframe: 0 + ckeditorheight: 0 classitup: 0 comment: 0 components: 0 @@ -62,6 +62,7 @@ module: entity_reference_revisions: 0 exclude_node_title: 0 facets: 0 + fakeobjects: 0 faqfield: 0 field: 0 field_group: 0 @@ -76,7 +77,6 @@ module: gdpr: 0 geo_citation: 0 geo_upgrade: 0 - givebutter: 0 google_analytics: 0 hal: 0 help: 0 @@ -96,8 +96,6 @@ module: menu_block: 0 menu_ui: 0 metatag: 0 - metatag_open_graph: 0 - metatag_twitter_cards: 0 migrate: 0 migrate_drupal: 0 migrate_plus: 0 @@ -113,7 +111,6 @@ module: path: 0 path_alias: 0 phpass: 0 - plausible: 0 rdf: 0 redirect: 0 responsive_image: 0 diff --git a/config/sync/editor.editor.basic_html.yml b/config/sync/editor.editor.basic_html.yml index 9717ba8..dc8262c 100644 --- a/config/sync/editor.editor.basic_html.yml +++ b/config/sync/editor.editor.basic_html.yml @@ -62,8 +62,6 @@ settings: enabled_attributes: { } linkit_extension: linkit_enabled: false - wysiwyg_linebreaks_extension: - method: force image_upload: status: true scheme: public diff --git a/config/sync/editor.editor.footnote.yml b/config/sync/editor.editor.footnote.yml deleted file mode 100644 index c94cb82..0000000 --- a/config/sync/editor.editor.footnote.yml +++ /dev/null @@ -1,15 +0,0 @@ -status: true -dependencies: - config: - - filter.format.footnote - module: - - ckeditor5 -format: footnote -editor: ckeditor5 -settings: - toolbar: - items: - - bold - - italic - - link -image_upload: { } diff --git a/config/sync/editor.editor.full_html.yml b/config/sync/editor.editor.full_html.yml index 0420352..b1674ed 100644 --- a/config/sync/editor.editor.full_html.yml +++ b/config/sync/editor.editor.full_html.yml @@ -18,24 +18,17 @@ settings: - superscript - subscript - removeFormat - - alignment - - footnotes + - Footnotes - link - bulletedList - numberedList - blockQuote - drupalMedia - insertTable - - iframeEmbed - horizontalLine - showBlocks - sourceEditing plugins: - ckeditor5_alignment: - enabled_alignments: - - center - - left - - right ckeditor5_heading: enabled_headings: - heading2 @@ -50,25 +43,12 @@ settings: multiBlock: true ckeditor5_sourceEditing: allowed_tags: { } - ckeditor_iframe_embed_iframeembed: - enabled_optional_attributes: - - height - - width - - name - - tabindex - - title - - allowfullscreen editor_advanced_link_link: - enabled_attributes: - - aria-label - - target - - title + enabled_attributes: { } linkit_extension: linkit_enabled: true linkit_profile: default media_media: allow_view_mode_override: false - wysiwyg_linebreaks_extension: - method: force image_upload: status: false diff --git a/config/sync/editor.editor.minimalhtml.yml b/config/sync/editor.editor.minimalhtml.yml index 1806fd5..275e9e1 100644 --- a/config/sync/editor.editor.minimalhtml.yml +++ b/config/sync/editor.editor.minimalhtml.yml @@ -1,51 +1,44 @@ -uuid: 544510b1-f241-4456-83a3-f602c111c46e +uuid: c627e429-1f81-4d6d-87a1-402d40f43c6b langcode: en status: true dependencies: config: - filter.format.minimalhtml module: - - ckeditor5 + - ckeditor +_core: + default_config_hash: kP3r4Ns9C1XIg5vFA9a0mteIKThq8E_eL43z7VIZUTY format: minimalhtml -editor: ckeditor5 +editor: ckeditor settings: toolbar: - items: - - bold - - italic - - '|' - - link - - '|' - - bulletedList - - numberedList - - '|' - - blockQuote - - '|' - - sourceEditing - - '|' - - code + rows: + - + - + name: Formatting + items: + - Bold + - Italic + - + name: Links + items: + - DrupalLink + - DrupalUnlink + - + name: Lists + items: + - BulletedList + - NumberedList + - + name: Media + items: + - Blockquote + - + name: Tools + items: + - Source plugins: - ckeditor5_list: - properties: - reversed: false - startIndex: true - multiBlock: true - ckeditor5_sourceEditing: - allowed_tags: - - '' - - '

' - - '
' - - '
' - - '' - - '' - - '
' - - '