diff --git a/.ddev/.gitignore b/.ddev/.gitignore index 4efff32..9dc56c8 100644 --- a/.ddev/.gitignore +++ b/.ddev/.gitignore @@ -1,32 +1,19 @@ #ddev-generated: Automatically generated ddev .gitignore. # You can remove the above line if you want to edit and maintain this file yourself. -/.gitignore -/**/*.example -/.dbimageBuild -/.ddev-docker-*.yaml -/.*downloads -/.homeadditions -/.importdb* -/.sshimageBuild -/.webimageBuild -/apache/apache-site.conf -/commands/.gitattributes -/config.local.y*ml -/config.*.local.y*ml +/import.yaml +/docker-compose.yaml /db_snapshots -/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 -/xhprof/xhprof_prepend.php -/**/README.* +/import-db +/.bgsync* +/config.*.y*ml +/.webimageBuild +/.dbimageBuild +/.bgsyncimageBuild +/.sshimageBuild +/.webimageExtra +/.dbimageExtra +/.webimageBuild +/.dbimageBuild +/*-build/Dockerfile.example diff --git a/.ddev/commands/db/mysql b/.ddev/commands/db/mysql new file mode 100755 index 0000000..23a06db --- /dev/null +++ b/.ddev/commands/db/mysql @@ -0,0 +1,9 @@ +#!/bin/bash + +## #ddev-generated +## Description: run mysql client in db container +## Usage: mysql [flags] [args] +## Example: "ddev mysql" or "ddev mysql -uroot -proot" or "echo 'SHOW TABLES;' | ddev mysql" +## `ddev mysql --database=mysql -uroot -proot` gets you to the 'mysql' database with root privileges + +mysql -udb -pdb $@ diff --git a/.ddev/config.yaml b/.ddev/config.yaml index e7af573..2f334a9 100644 --- a/.ddev/config.yaml +++ b/.ddev/config.yaml @@ -1,96 +1,66 @@ -name: geo-coop -type: drupal11 +APIVersion: v1.10.1 +name: geo +type: drupal8 docroot: web -php_version: "8.1" -webserver_type: apache-fpm +php_version: "7.2" +webserver_type: nginx-fpm +router_http_port: "80" +router_https_port: "443" xdebug_enabled: false additional_hostnames: [] additional_fqdns: [] -database: - type: mariadb - version: "10.5" +mariadb_version: "10.2" +nfs_mount_enabled: false +provider: default use_dns_when_possible: true -composer_version: "2" -web_environment: [] -nodejs_version: "16" -corepack_enable: false -default_container_timeout: "240" +timezone: "" -# Key features of DDEV's config.yaml: + +# This config.yaml was created with ddev version v1.10.1 +# webimage: drud/ddev-webserver:v1.10.0 +# dbimage: drud/ddev-dbserver:v1.10.0-10.2 +# dbaimage: drud/phpmyadmin:v1.10.0 +# bgsyncimage: drud/ddev-bgsync:v1.10.0 +# However we do not recommend explicitly wiring these images into the +# config.yaml as they may break future versions of ddev. +# You can update this config.yaml using 'ddev config'. + +# 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.2" # PHP version to use, "5.6", "7.0", "7.1", "7.2", "7.3" -# You can explicitly specify the webimage but this -# is not recommended, as the images are often closely tied to DDEV's' behavior, +# You can explicitly specify the webimage, dbimage, dbaimage lines but this +# is not recommended, as the images are often closely tied to ddev's' behavior, # so this can break upgrades. # webimage: # nginx/php docker image. +# dbimage: # mariadb docker image. +# dbaimage: +# bgsyncimage: -# 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. +# router_http_port: # Port to be used for http (defaults to port 80) +# router_https_port: # Port for https (defaults to 443) -# router_http_port: # Port to be used for http (defaults to global configuration, usually 80) -# router_https_port: # Port for https (defaults to global configuration, usually 443) +# xdebug_enabled: false # Set to true to enable xdebug and "ddev start" or "ddev restart" +# Note that for most people the commands +# "ddev exec enable_xdebug" and "ddev exec disable_xdebug" work better, +# as leaving xdebug enabled all the time is a big performance hit. -# xdebug_enabled: false # Set to true to enable Xdebug and "ddev start" or "ddev restart" -# Note that for most people the commands -# "ddev xdebug" to enable Xdebug and "ddev xdebug off" to disable it work better, -# as leaving Xdebug enabled all the time is a big performance hit. - -# xhprof_enabled: false # Set to true to enable Xhprof and "ddev start" or "ddev restart" -# Note that for most people the commands -# "ddev xhprof" to enable Xhprof and "ddev xhprof off" to disable it work better, -# as leaving Xhprof enabled all the time is a big performance hit. - -# webserver_type: nginx-fpm or apache-fpm +# webserver_type: nginx-fpm # Can be set to apache-fpm or apache-cgi as well # 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, +# it can be set to any valid timezone, # see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones # For example Europe/Dublin or MST7MDT -# composer_root: -# Relative path to the Composer root directory from the project root. This is -# the directory which contains the composer.json and where all Composer related -# commands are executed. - -# composer_version: "2" -# You can set it to "" or "2" (default) for Composer v2 or "1" for Composer v1 -# to use the latest major version available at the time your container is built. -# It is also possible to use each other Composer version channel. This includes: -# - 2.2 (latest Composer LTS version) -# - stable -# - preview -# - snapshot -# Alternatively, an explicit Composer version may be specified, for example "2.2.18". -# To reinstall Composer after the image was built, run "ddev debug rebuild". - -# 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 - # additional_hostnames: # - somename # - someothername @@ -103,56 +73,29 @@ 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 # db: /home -# would set the default working directory for the web and db services. -# These values specify the destination directory for ddev ssh and the -# directory in which commands passed into ddev exec are run. +# would set the default working directory for the web and db services. +# These values specify the destination directory for ddev ssh and the +# directory in which commands passed into ddev exec are run. -# omit_containers: [db, ddev-ssh-agent] -# Currently only these containers are supported. Some containers can also be -# omitted globally in the ~/.ddev/global_config.yaml. Note that if you omit -# the "db" container, several standard features of DDEV that access the -# database container will be unusable. In the global configuration it is also -# possible to omit ddev-router, but not here. +# omit_containers: ["dba", "ddev-ssh-agent"] +# would omit the dba (phpMyAdmin) and ddev-ssh-agent containers. Currently +# only those two containers can be omitted here. +# Note that these containers can also be omitted globally in the +# ~/.ddev/global_config.yaml or with the "ddev config global" command. -# 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 -# fail_on_hook_fail: False -# Decide whether 'ddev start' should be interrupted by a failing hook +# webcache_enabled: false (deprecated) +# Was only for macOS, but now deprecated. +# See https://ddev.readthedocs.io/en/stable/users/performance/#using-webcache_enabled-to-cache-the-project-directory # host_https_port: "59002" # The host port binding for https can be explicitly specified. It is @@ -170,23 +113,21 @@ 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: "1000" +# The PHPMyAdmin port can be changed from the default 8036 -# host_mailpit_port: "8025" -# The mailpit port is not normally bound on the host at all, instead being routed -# through ddev-router, but it can be bound directly to localhost if specified here. +# mailhog_port: "1001" +# The MailHog port can be changed from the default 8025 -# webimage_extra_packages: [php7.4-tidy, php-bcmath] +# webimage_extra_packages: [php-yaml, php7.3-ldap] # Extra Debian packages that are needed in the webimage can be added here # dbimage_extra_packages: [telnet,netcat] # Extra Debian packages that are needed in the dbimage can be added here # use_dns_when_possible: true -# If the host has internet access and the domain configured can -# successfully be looked up, DNS will be used for hostname resolution +# If the host has internet access and the domain configured can +# successfully be looked up, DNS will be used for hostname resolution # instead of editing /etc/hosts # Defaults to true @@ -196,91 +137,19 @@ 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 -# Provide extra flags to the "ngrok http" command, see -# https://ngrok.com/docs/ngrok-agent/config or run "ngrok http -h" +# ngrok_args: --subdomain mysite --auth username:pass +# Provide extra flags to the "ngrok http" command, see +# 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 -# In this case the user must provide all such settings. - -# You can inject environment variables into the web container with: -# web_environment: -# - SOMEENV=somevalue -# - SOMEOTHERENV=someothervalue - -# no_project_mount: false -# (Experimental) If true, DDEV will not mount the project into the web container; -# the user is responsible for mounting it manually or via a script. -# This is to enable experimentation with alternate file mounting strategies. -# For advanced users only! - -# bind_all_interfaces: false -# If true, host ports will be bound on all network interfaces, -# not the localhost interface only. This means that ports -# will be available on the local network if the host firewall -# allows it. - -# default_container_timeout: 120 -# The default time that DDEV waits for all containers to become ready can be increased from -# the default 120. This helps in importing huge databases, for example. - -#web_extra_exposed_ports: -#- name: nodejs -# container_port: 3000 -# http_port: 2999 -# https_port: 3000 -#- name: something -# container_port: 4000 -# https_port: 4000 -# http_port: 3999 -# Allows a set of extra ports to be exposed via ddev-router -# Fill in all three fields even if you don’t intend to use the https_port! -# If you don’t add https_port, then it defaults to 0 and ddev-router will fail to start. +# provider: default # Currently either "default" or "pantheon" # -# 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/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/.gitignore b/.gitignore index c15e746..2aeb67f 100644 --- a/.gitignore +++ b/.gitignore @@ -4,7 +4,6 @@ # Drutopia-provided files which should not be overridden /web/core /web/modules/contrib -/web/libraries/ /web/profiles/contrib /web/themes/contrib /web/sites/default/files @@ -18,9 +17,6 @@ /web/sites/example.sites.php /vendor/ -# Temporary data dumps directory -/backups/ - -# Drupal scaffolding auto-added ignores -/.editorconfig -/.gitattributes +# This file will contain just the files of the old site +d7 +data diff --git a/.gitlab/issue_templates/bug.md b/.gitlab/issue_templates/bug.md index 6228ae7..e779023 100644 --- a/.gitlab/issue_templates/bug.md +++ b/.gitlab/issue_templates/bug.md @@ -26,4 +26,4 @@ If bug is not present in a certain browser, specify that as well. /label ~Bug -/assign @freescholar +/assign @cedewey diff --git a/.gitlab/issue_templates/task.md b/.gitlab/issue_templates/task.md index 1b2580c..aa0ceae 100644 --- a/.gitlab/issue_templates/task.md +++ b/.gitlab/issue_templates/task.md @@ -7,4 +7,4 @@ /label ~Task -/assign @freescholar +/assign @cedewey diff --git a/.gitlab/issue_templates/user-story.md b/.gitlab/issue_templates/user-story.md index 17f865a..3c5af98 100644 --- a/.gitlab/issue_templates/user-story.md +++ b/.gitlab/issue_templates/user-story.md @@ -18,4 +18,4 @@ so that [reason]. [Steps required to complete user story, usually completed by Agaric.] /label ~"User Story" -/assign @freescholar +/assign @cedewey 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 deleted file mode 100644 index b7d76c5..0000000 --- a/DEPLOYMENT.md +++ /dev/null @@ -1,23 +0,0 @@ -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 -``` - -When you're absolutely certain and ready to do a force override quickly: - -``` -just deploy-build-and-site-force test news geo_test -``` - -And same for `_live` of course. diff --git a/README.md b/README.md index fb39d37..b072dd4 100644 --- a/README.md +++ b/README.md @@ -4,16 +4,12 @@ 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. - ## 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 +18,90 @@ 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. Ensure the files you need are uploaded to the server. Obtain the latest from the prior site: database, and files. Upload these to the server (e.g. `scp *.gz geo_live@drutopia.org:`) and we'll extract them there. +1. If a deployment has been performed already, it must be moved out of the way by removing existing databases. Log into the server (`ssh geo_live@drutopia.org`) and remove the database(s): + - Start the mysql client (logged into geo_live): `mysql` + - Drop the drupal db: `drop database geo_live;` + - Drop the migration source db: `drop database geo_legacy;` + - Exit mysql by typing `ctrl+d` +1. Extract the uploaded files (still on server): + - Unzip the uploaded database file (this expects there to be only ONE such file): `gunzip *.mysql.gz` + - Rename the database file: `mv *.mysql geo_legacy.sql` + - Unpack the files, but first cd to where they go (again, there should only be ONE file ending in .tar.gz in home): `cd site/d7/sites/default/files/` and untar: `tar xzf ~/*.tar.gz` (this will take a minute/two). + - 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: + - `ahoy deploy-build news` + - `ahoy deploy-site geo_live` +1. Return to the server (`ssh geo_live@drutopia.org`), load legacy db and run the migration: + - Read the db source into the proper database: `mysql geo_legacy < geo_legacy.sql` + - `drush mim --group="migrate_drupal_7_geo"` + - `drush php:script article_type_term.php` + +## 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/UPGRADE.md b/UPGRADE.md deleted file mode 100644 index 4375345..0000000 --- a/UPGRADE.md +++ /dev/null @@ -1,34 +0,0 @@ -## Uninstall - -### The following will be uninstalled automatically on deploy to D9-latest (now merged into master branch) - -- Color -- Quick Edit -- Seven - -### The following can be removed manually after the D10 upgrade is complete - -- Stable (uninstall and remove from composer.json) -- Geo upgrade (this one is actually now used during the upgrade, and it may not hurt to keep it around, though it can be uninstalled at the end) - -### Migration related modules - -Modules related to the migration from D7 to D8 are still enabled, they can probably be disabled, but this can be done after the upgrade is finished. - -## Drupal 9.3.3 -> Drupal 9 latest - -1. Add the following to the vault member: -``` -post_deploy: - - command: "then stable9" - action: drush -``` -2. Deploy master branch to site -3. Remove the post_deploy command from the vault member - -## Drupal 9 latest -> Drupal 10 - -1. Deploy drupal10-rebased branch to site -2. Edit media items and apply cropping where needed (likely the hero blocks in header and footer will be tiny) -3. Uninstall Stable theme and Geo Upgrade custom module (remember to commit this change) -4. After finally deployed to live, remove the root composer dependency on honeypot (this was there because honeypot needed a constraint in order to apply database updates correctly) diff --git a/composer.json b/composer.json index 2a0b684..daed21b 100644 --- a/composer.json +++ b/composer.json @@ -1,231 +1,87 @@ { "name": "agaric-sites/geo", - "description": "Drutopia-based site for the Grassroots Economic Organizing collective and potentially other news sites.", - "homepage": "https://geo.coop", + "description": "Drutopia-based site for the Grassroots Economic Organizing collective.", "type": "project", - "license": "GPL-2.0-or-later", + "license": "GPL-2.0+", "minimum-stability": "dev", "prefer-stable": true, - "support": { - "docs": "http://docs.drutopia.org/en/latest", - "issues": "https://gitlab.com/drutopia/drutopia/-/issues" + "config": { + "sort-packages": true + }, + "require": { + "composer/installers": "^1.0", + "cweagans/composer-patches": "^1.0", + "drupal-composer/drupal-scaffold": "^2.0.0", + "drupal/claro": "^1.0@alpha", + "drupal/config_actions": "1.x-dev", + "drupal/convert_bundles": "^1.0@alpha", + "drupal/cshs": "^1.0@beta", + "drupal/drutopia_collection": "dev-8.x-1.x as 1.x-dev", + "drupal/field_token_value": "^1.0", + "drupal/fixed_block_content": "^1.0", + "drupal/link_attributes": "^1.9", + "drupal/migrate_plus": "^4.2", + "drupal/migrate_source_csv": "3.1", + "drupal/migrate_tools": "^4.1", + "drupal/migrate_upgrade": "^3", + "drush/drush": "^9.0", + "drutopia/drutopia": "^1.0-beta2" }, "repositories": { - "drupal/empty_page": { - "type": "git", - "url": "git@git.drupal.org:issue/empty_page-3287186.git" - }, "drupal": { "type": "composer", "url": "https://packages.drupal.org/8" + }, + "drutopia": { + "type": "vcs", + "url": "https://github.com/drutopia/drutopia" + }, + "drupal/drutopia_collection": { + "type": "git", + "url": "git@gitlab.com:drutopia/drutopia_collection.git" } }, - "require": { - "composer/installers": "^2", - "cweagans/composer-patches": "^1.7", - "drupal/admin_toolbar": "^3", - "drupal/antibot": "^2", - "drupal/asset_injector": "^2", - "drupal/auto_entitylabel": "^3", - "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/ckeditorheight": "^1", - "drupal/classitup": "^1", - "drupal/comment_notify": "^1", - "drupal/content_lock": "^2", - "drupal/convert_bundles": "^2", - "drupal/core-composer-scaffold": "^10", - "drupal/core-recommended": "^10", - "drupal/cshs": "^4", - "drupal/csp": "^1", - "drupal/customerror": "^1", - "drupal/dashboards": "^2", - "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", - "drupal/eca": "^1", - "drupal/eca_context": "^1.0", - "drupal/editor_advanced_link": "^2.0", - "drupal/editoria11y": "^2", - "drupal/empty_page": "dev-8.x-1.x", - "drupal/entity_reference_override": "^2", - "drupal/entitygroupfield": "^2", - "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/geolocation": "^3", - "drupal/gin_gutenberg": "^1", - "drupal/gin_login": "^2", - "drupal/givebutter": "1.0.x-dev@dev", - "drupal/google_analytics": "^4", - "drupal/gutenberg": "^2", - "drupal/http_cache_control": "^2", - "drupal/http_client_error_status": "^3", - "drupal/ief_complex_open": "^1", - "drupal/indieweb": "^1", - "drupal/inotherwords": "^3", - "drupal/insert": "^3", - "drupal/key": "^1.14", - "drupal/link_attributes": "^1.9", - "drupal/linkit": "^7", - "drupal/mailchimp": "^2", - "drupal/markdown": "^3", - "drupal/menu_link_config": "^1.0@alpha", - "drupal/menu_trail_by_path": "^2", - "drupal/microformats": "^2", - "drupal/migrate_plus": "^6", - "drupal/migrate_source_csv": "^3", - "drupal/migrate_tools": "^6", - "drupal/migrate_upgrade": "^4", - "drupal/migration_helpers": "1.0.x-dev@dev", - "drupal/minimalhtml": "^2", - "drupal/node_view_permissions": "^1.4", - "drupal/noreferrer": "^1", - "drupal/notfoundpassthrough": "1.x-dev", - "drupal/octavia": "2.0.x-dev@dev", - "drupal/octavia_camouflage": "2.0.x-dev@dev", - "drupal/paragraphs_features": "^2", - "drupal/password_policy": "^4", - "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/scn": "^2", - "drupal/search404": "^2", - "drupal/search_api_autocomplete": "^1.6", - "drupal/search_api_saved_searches": "^1", - "drupal/seckit": "^2", - "drupal/select_or_other": "^4.0", - "drupal/shield": "^1.4", - "drupal/simple_sitemap": "^4.1", - "drupal/smart_date": "^4", - "drupal/sms": "^2", - "drupal/social_post_facebook": "3.0.x-dev@dev", - "drupal/social_post_twitter": "3.x-dev@dev", - "drupal/stable": "^2.0", - "drupal/stringoverrides": "^1.8", - "drupal/subpathauto": "^1.0@RC", - "drupal/taxonomy_import": "^2", - "drupal/taxonomy_manager": "^2", - "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/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": "*", - "drutopia/drutopia": "2.0.x-dev", - "league/commonmark": "^1.0", - "vlucas/phpdotenv": "^5.1", - "webflo/drupal-finder": "^1.2" - }, - "require-dev": { - "behat/behat": "^3.4", - "behat/mink": "^1.7", - "drupal/upgrade_status": "^4" - }, - "config": { - "sort-packages": true, - "process-timeout": 600, - "allow-plugins": { - "composer/installers": true, - "cweagans/composer-patches": true, - "drupal/core-composer-scaffold": true, - "drupal/core-project-message": false - } - }, - "conflict": { - "drupal/drupal": "*" + "scripts": { + "post-install-cmd": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold", + "post-update-cmd": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold", + "nuke": "rm -rf vendor web/core web/modules/contrib web/profiles/contrib drush/contrib", + "quick-start": [ + "composer install", + "php docroot/core/scripts/drupal quick-start drutopia --no-interaction" + ] }, "extra": { - "drupal-scaffold": { - "locations": { - "web-root": "web/" - }, - "allowed-packages": [ - "drupal/ui_patterns" - ] - }, "installer-paths": { - "web/core": ["type:drupal-core"], - "web/libraries/{$name}": ["type:drupal-library"], - "web/modules/contrib/{$name}": ["type:drupal-module"], - "web/profiles/contrib/{$name}": ["type:drupal-profile"], - "web/themes/contrib/{$name}": ["type:drupal-theme"], - "drush/Commands/contrib/{$name}": ["type:drupal-drush"], - "web/modules/custom/{$name}": ["type:drupal-custom-module"], - "web/themes/custom/{$name}": ["type:drupal-custom-theme"] - }, - "merge-plugin": { - "include": [ - "web/modules/contrib/webform/composer.libraries.json" + "web/core": [ + "drupal/core" + ], + "web/modules/contrib/{$name}": [ + "type:drupal-module" + ], + "web/profiles/contrib/{$name}": [ + "type:drupal-profile" + ], + "web/themes/contrib/{$name}": [ + "type:drupal-theme" + ], + "drush/contrib/{$name}": [ + "type:drupal-drush" ] }, "enable-patching": true, "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" + "Allow an install hook in profiles installing from configuration": "https://www.drupal.org/files/issues/2018-11-27/2982052-22.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" + "drutopia/drutopia": { + "Remove default content": "patches/drutopia-remove-default-content.patch" }, - "drupal/ds": { - "Parent theme template inheritance bug": "https://www.drupal.org/files/issues/2021-02-22/2895316-12.patch" + "drupal/drutopia_core": { + "Remove default content": "patches/drutopia-core-remove-default-content.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" + "drupal/migrate_tools": { + "The limit option does not accept a value": "https://www.drupal.org/files/issues/2019-02-05/migrate-tools_fix-drush-options_3024399-23.patch" } } - }, - "scripts": { - "nuke": "rm -rf vendor web/core web/modules/contrib web/profiles/contrib drush/contrib", - "pull": "scripts/pull.sh", - "quick-start": [ - "composer install", - "php docroot/core/scripts/drupal quick-start drutopia --no-interaction" - ] } } diff --git a/composer.lock b/composer.lock index fb9f928..01208c1 100644 --- a/composer.lock +++ b/composer.lock @@ -4,211 +4,40 @@ "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": "f804ec4ad073c4fec671eba27c8682ee", "packages": [ { - "name": "abraham/twitteroauth", - "version": "7.0.0", - "source": { - "type": "git", - "url": "https://github.com/abraham/twitteroauth.git", - "reference": "a8622680f954d0c4f54fd80bedebe00c756ed7aa" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/abraham/twitteroauth/zipball/a8622680f954d0c4f54fd80bedebe00c756ed7aa", - "reference": "a8622680f954d0c4f54fd80bedebe00c756ed7aa", - "shasum": "" - }, - "require": { - "composer/ca-bundle": "^1.2", - "ext-curl": "*", - "php": "8.*" - }, - "require-dev": { - "php-vcr/php-vcr": "^1", - "php-vcr/phpunit-testlistener-vcr": "dev-php8", - "phpmd/phpmd": "^2", - "phpunit/phpunit": "^9", - "rector/rector": "^0.15.7", - "squizlabs/php_codesniffer": "^3" - }, - "type": "library", - "autoload": { - "psr-4": { - "Abraham\\TwitterOAuth\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Abraham Williams", - "email": "abraham@abrah.am", - "homepage": "https://abrah.am", - "role": "Developer" - } - ], - "description": "The most popular PHP library for use with the Twitter OAuth REST API.", - "homepage": "https://twitteroauth.com", - "keywords": [ - "Twitter API", - "Twitter oAuth", - "api", - "oauth", - "rest", - "social", - "twitter" - ], - "support": { - "issues": "https://github.com/abraham/twitteroauth/issues", - "source": "https://github.com/abraham/twitteroauth" - }, - "time": "2024-02-11T18:58:08+00:00" - }, - { - "name": "agaric/oxford-comma", + "name": "asm89/stack-cors", "version": "1.2.0", - "source": { - "type": "git", - "url": "git@gitlab.com:agaric/php/oxford-comma.git", - "reference": "62afcb36604999659fcfec4502c120152b39bfc6" - }, - "dist": { - "type": "zip", - "url": "https://gitlab.com/api/v4/projects/agaric%2Fphp%2Foxford-comma/repository/archive.zip?sha=62afcb36604999659fcfec4502c120152b39bfc6", - "reference": "62afcb36604999659fcfec4502c120152b39bfc6", - "shasum": "" - }, - "require": { - "php": ">=5.3.0" - }, - "type": "library", - "autoload": { - "files": [ - "src/OxfordComma.php" - ], - "psr-4": { - "Agaric\\OxfordComma\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "AGPL-3.0-or-later" - ], - "authors": [ - { - "name": "benjamin melançon", - "email": "ben@agaric.com", - "homepage": "https://agaric.coop/mlncn", - "role": "Developer" - } - ], - "description": "A function to take a list of terms and return them in an English phrase with proper punctuation 'red, black, and white' or 'red and black'.", - "homepage": "https://gitlab.com/agaric/php/oxford-comma", - "keywords": [ - "Lists", - "Oxford comma", - "display", - "output", - "punctuation", - "text" - ], - "time": "2020-03-26T13:04:29+00:00" - }, - { - "name": "agaric/php-facebook", - "version": "dev-main", - "source": { - "type": "git", - "url": "https://gitlab.com/agaric/php/php-facebook.git", - "reference": "a0cc6954345d7d1cdf51c571e7950afa01127441" - }, - "dist": { - "type": "zip", - "url": "https://gitlab.com/api/v4/projects/agaric%2Fphp%2Fphp-facebook/repository/archive.zip?sha=a0cc6954345d7d1cdf51c571e7950afa01127441", - "reference": "a0cc6954345d7d1cdf51c571e7950afa01127441", - "shasum": "" - }, - "require": { - "league/oauth2-facebook": "^2.0" - }, - "default-branch": true, - "type": "library", - "autoload": { - "psr-4": { - "Agaric\\FacebookApi\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "AGPL-3.0-or-later" - ], - "authors": [ - { - "name": "keegan rankin", - "email": "keegan@agaric.coop", - "homepage": "https://agaric.coop/keegan", - "role": "Developer" - }, - { - "name": "benjamin melançon", - "email": "ben@agaric.com", - "homepage": "https://agaric.coop/mlncn", - "role": "Developer" - } - ], - "description": "Extends the Facebook OAuth 2.0 Client Provider with methods for posting to Facebook", - "homepage": "https://gitlab.com/agaric/php/php-facebook", - "keywords": [ - "Authentication", - "authorization", - "client", - "facebook", - "oauth", - "oauth2", - "post" - ], - "support": { - "issues": "https://gitlab.com/agaric/php/php-facebook/-/issues", - "source": "https://gitlab.com/agaric/php/php-facebook/-/tree/1.0.0" - }, - "time": "2022-05-11T20:31:53+00:00" - }, - { - "name": "asm89/stack-cors", - "version": "v2.3.0", "source": { "type": "git", "url": "https://github.com/asm89/stack-cors.git", - "reference": "acf3142e6c5eafa378dc8ef3c069ab4558993f70" + "reference": "c163e2b614550aedcf71165db2473d936abbced6" }, "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/c163e2b614550aedcf71165db2473d936abbced6", + "reference": "c163e2b614550aedcf71165db2473d936abbced6", "shasum": "" }, "require": { - "php": "^7.3|^8.0", - "symfony/http-foundation": "^5.3|^6|^7", - "symfony/http-kernel": "^5.3|^6|^7" + "php": ">=5.5.9", + "symfony/http-foundation": "~2.7|~3.0|~4.0", + "symfony/http-kernel": "~2.7|~3.0|~4.0" }, "require-dev": { - "phpunit/phpunit": "^9", - "squizlabs/php_codesniffer": "^3.5" + "phpunit/phpunit": "^5.0 || ^4.8.10", + "squizlabs/php_codesniffer": "^2.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.2-dev" + "dev-master": "1.2-dev" } }, "autoload": { "psr-4": { - "Asm89\\Stack\\": "src/" + "Asm89\\Stack\\": "src/Asm89/Stack/" } }, "notification-url": "https://packagist.org/downloads/", @@ -227,152 +56,29 @@ "cors", "stack" ], - "support": { - "issues": "https://github.com/asm89/stack-cors/issues", - "source": "https://github.com/asm89/stack-cors/tree/v2.3.0" - }, - "time": "2025-03-13T08:50:04+00:00" + "time": "2017-12-20T14:37:45+00:00" }, { - "name": "barnabywalters/mf-cleaner", - "version": "v0.1.4", + "name": "brumann/polyfill-unserialize", + "version": "v1.0.4", "source": { "type": "git", - "url": "https://github.com/barnabywalters/php-mf-cleaner.git", - "reference": "ef6a16628db6e8aee2b4f8bb8093d18c24b74cd4" + "url": "https://github.com/dbrumann/polyfill-unserialize.git", + "reference": "8ed1cd343ddc134a7ef649aca0aa0fe2a1b45008" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/barnabywalters/php-mf-cleaner/zipball/ef6a16628db6e8aee2b4f8bb8093d18c24b74cd4", - "reference": "ef6a16628db6e8aee2b4f8bb8093d18c24b74cd4", - "shasum": "" - }, - "require-dev": { - "php": ">=5.3", - "phpunit/phpunit": "*" - }, - "suggest": { - "mf2/mf2": "To parse microformats2 structures from (X)HTML" - }, - "type": "library", - "autoload": { - "files": [ - "src/BarnabyWalters/Mf2/Functions.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Barnaby Walters", - "email": "barnaby@waterpigs.co.uk" - } - ], - "description": "Cleans up microformats2 array structures", - "support": { - "issues": "https://github.com/barnabywalters/php-mf-cleaner/issues", - "source": "https://github.com/barnabywalters/php-mf-cleaner/tree/v0.1.4" - }, - "time": "2014-10-06T23:11:15+00:00" - }, - { - "name": "caxy/php-htmldiff", - "version": "v0.1.17", - "source": { - "type": "git", - "url": "https://github.com/caxy/php-htmldiff.git", - "reference": "194feb154e32f585dd2ca8ae6929a53abfcebf9e" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/caxy/php-htmldiff/zipball/194feb154e32f585dd2ca8ae6929a53abfcebf9e", - "reference": "194feb154e32f585dd2ca8ae6929a53abfcebf9e", + "url": "https://api.github.com/repos/dbrumann/polyfill-unserialize/zipball/8ed1cd343ddc134a7ef649aca0aa0fe2a1b45008", + "reference": "8ed1cd343ddc134a7ef649aca0aa0fe2a1b45008", "shasum": "" }, "require": { - "ext-dom": "*", - "ext-mbstring": "*", - "ezyang/htmlpurifier": "^4.7", - "php": ">=7.3" - }, - "require-dev": { - "doctrine/cache": "~1.0", - "phpunit/phpunit": "~9.0" - }, - "suggest": { - "doctrine/cache": "Used for caching the calculated diffs using a Doctrine Cache Provider" + "php": "^5.3|^7.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "0.1.x-dev" - } - }, - "autoload": { - "psr-0": { - "Caxy\\HtmlDiff": "lib/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0" - ], - "authors": [ - { - "name": "Josh Schroeder", - "email": "jschroeder@caxy.com", - "homepage": "http://www.caxy.com" - } - ], - "description": "A library for comparing two HTML files/snippets and highlighting the differences using simple HTML.", - "homepage": "https://github.com/caxy/php-htmldiff", - "keywords": [ - "diff", - "html" - ], - "support": { - "issues": "https://github.com/caxy/php-htmldiff/issues", - "source": "https://github.com/caxy/php-htmldiff/tree/v0.1.17" - }, - "time": "2025-05-16T17:04:33+00:00" - }, - { - "name": "cebe/markdown", - "version": "1.2.1", - "source": { - "type": "git", - "url": "https://github.com/cebe/markdown.git", - "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/cebe/markdown/zipball/9bac5e971dd391e2802dca5400bbeacbaea9eb86", - "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86", - "shasum": "" - }, - "require": { - "lib-pcre": "*", - "php": ">=5.4.0" - }, - "require-dev": { - "cebe/indent": "*", - "facebook/xhprof": "*@dev", - "phpunit/phpunit": "4.1.*" - }, - "bin": [ - "bin/markdown" - ], - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.2.x-dev" - } - }, "autoload": { "psr-4": { - "cebe\\markdown\\": "" + "Brumann\\Polyfill\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -381,72 +87,47 @@ ], "authors": [ { - "name": "Carsten Brandt", - "email": "mail@cebe.cc", - "homepage": "http://cebe.cc/", - "role": "Creator" + "name": "Denis Brumann", + "email": "denis.brumann@sensiolabs.de" } ], - "description": "A super fast, highly extensible markdown parser for PHP", - "homepage": "https://github.com/cebe/markdown#readme", - "keywords": [ - "extensible", - "fast", - "gfm", - "markdown", - "markdown-extra" - ], - "support": { - "issues": "https://github.com/cebe/markdown/issues", - "source": "https://github.com/cebe/markdown" - }, - "time": "2018-03-26T11:24:36+00:00" + "description": "Backports unserialize options introduced in PHP 7.0 to older PHP versions.", + "time": "2019-07-14T23:16:24+00:00" }, { "name": "chi-teck/drupal-code-generator", - "version": "3.6.1", + "version": "1.30.4", "source": { "type": "git", "url": "https://github.com/Chi-teck/drupal-code-generator.git", - "reference": "2dbd8d231945681a398862a3282ade3cf0ea23ab" + "reference": "8b7ae331e21e58088e3e52688823692ed6471ec3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/2dbd8d231945681a398862a3282ade3cf0ea23ab", - "reference": "2dbd8d231945681a398862a3282ade3cf0ea23ab", + "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/8b7ae331e21e58088e3e52688823692ed6471ec3", + "reference": "8b7ae331e21e58088e3e52688823692ed6471ec3", "shasum": "" }, "require": { "ext-json": "*", - "php": ">=8.1.0", - "psr/event-dispatcher": "^1.0", - "psr/log": "^3.0", - "symfony/console": "^6.3", - "symfony/dependency-injection": "^6.3.2", - "symfony/filesystem": "^6.3", - "symfony/string": "^6.3", - "twig/twig": "^3.4" - }, - "conflict": { - "squizlabs/php_codesniffer": "<3.6" - }, - "require-dev": { - "chi-teck/drupal-coder-extension": "^2.0.0-beta3", - "drupal/coder": "8.3.23", - "drupal/core": "10.3.x-dev", - "ext-simplexml": "*", - "phpspec/prophecy-phpunit": "^2.2", - "phpunit/phpunit": "^9.6", - "squizlabs/php_codesniffer": "^3.9", - "symfony/var-dumper": "^6.4", - "symfony/yaml": "^6.3", - "vimeo/psalm": "^5.22.2" + "php": ">=5.5.9", + "symfony/console": "^3.4 || ^4.0", + "symfony/filesystem": "^2.7 || ^3.4 || ^4.0", + "twig/twig": "^1.38.2 || ^2.10" }, "bin": [ "bin/dcg" ], "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, "autoload": { + "files": [ + "src/bootstrap.php" + ], "psr-4": { "DrupalCodeGenerator\\": "src" } @@ -456,36 +137,31 @@ "GPL-2.0-or-later" ], "description": "Drupal code generator", - "support": { - "issues": "https://github.com/Chi-teck/drupal-code-generator/issues", - "source": "https://github.com/Chi-teck/drupal-code-generator/tree/3.6.1" - }, - "time": "2024-06-06T17:36:37+00:00" + "time": "2019-08-25T06:39:56+00:00" }, { "name": "commerceguys/addressing", - "version": "v2.2.4", + "version": "v1.0.5", "source": { "type": "git", "url": "https://github.com/commerceguys/addressing.git", - "reference": "ea826dbe5b3fe76960073a2167d5cf996c811cda" + "reference": "2d048bfdb3b79f2d87f5d5b078769c059eaa3eb1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/commerceguys/addressing/zipball/ea826dbe5b3fe76960073a2167d5cf996c811cda", - "reference": "ea826dbe5b3fe76960073a2167d5cf996c811cda", + "url": "https://api.github.com/repos/commerceguys/addressing/zipball/2d048bfdb3b79f2d87f5d5b078769c059eaa3eb1", + "reference": "2d048bfdb3b79f2d87f5d5b078769c059eaa3eb1", "shasum": "" }, "require": { - "doctrine/collections": "^1.6 || ^2.0", - "php": ">=8.0" + "doctrine/collections": "~1.0", + "php": ">=5.5.0" }, "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.*", + "phpunit/phpunit": "~4.0", + "squizlabs/php_codesniffer": "2.*", + "symfony/validator": ">=3.2" }, "suggest": { "symfony/validator": "to validate addresses" @@ -493,7 +169,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { @@ -520,121 +196,39 @@ "localization", "postal" ], - "support": { - "issues": "https://github.com/commerceguys/addressing/issues", - "source": "https://github.com/commerceguys/addressing/tree/v2.2.4" - }, - "time": "2025-01-13T16:03:24+00:00" - }, - { - "name": "composer/ca-bundle", - "version": "1.5.7", - "source": { - "type": "git", - "url": "https://github.com/composer/ca-bundle.git", - "reference": "d665d22c417056996c59019579f1967dfe5c1e82" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/composer/ca-bundle/zipball/d665d22c417056996c59019579f1967dfe5c1e82", - "reference": "d665d22c417056996c59019579f1967dfe5c1e82", - "shasum": "" - }, - "require": { - "ext-openssl": "*", - "ext-pcre": "*", - "php": "^7.2 || ^8.0" - }, - "require-dev": { - "phpstan/phpstan": "^1.10", - "phpunit/phpunit": "^8 || ^9", - "psr/log": "^1.0 || ^2.0 || ^3.0", - "symfony/process": "^4.0 || ^5.0 || ^6.0 || ^7.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.x-dev" - } - }, - "autoload": { - "psr-4": { - "Composer\\CaBundle\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" - } - ], - "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.", - "keywords": [ - "cabundle", - "cacert", - "certificate", - "ssl", - "tls" - ], - "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" - }, - "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": "2025-05-26T15:08:54+00:00" + "time": "2019-06-27T10:43:27+00:00" }, { "name": "composer/installers", - "version": "v2.3.0", + "version": "v1.7.0", "source": { "type": "git", "url": "https://github.com/composer/installers.git", - "reference": "12fb2dfe5e16183de69e784a7b84046c43d97e8e" + "reference": "141b272484481432cda342727a427dc1e206bfa0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/installers/zipball/12fb2dfe5e16183de69e784a7b84046c43d97e8e", - "reference": "12fb2dfe5e16183de69e784a7b84046c43d97e8e", + "url": "https://api.github.com/repos/composer/installers/zipball/141b272484481432cda342727a427dc1e206bfa0", + "reference": "141b272484481432cda342727a427dc1e206bfa0", "shasum": "" }, "require": { - "composer-plugin-api": "^1.0 || ^2.0", - "php": "^7.2 || ^8.0" + "composer-plugin-api": "^1.0" + }, + "replace": { + "roundcube/plugin-installer": "*", + "shama/baton": "*" }, "require-dev": { - "composer/composer": "^1.10.27 || ^2.7", - "composer/semver": "^1.7.2 || ^3.4.0", - "phpstan/phpstan": "^1.11", - "phpstan/phpstan-phpunit": "^1", - "symfony/phpunit-bridge": "^7.1.1", - "symfony/process": "^5 || ^6 || ^7" + "composer/composer": "1.0.*@dev", + "phpunit/phpunit": "^4.8.36" }, "type": "composer-plugin", "extra": { "class": "Composer\\Installers\\Plugin", "branch-alias": { - "dev-main": "2.x-dev" - }, - "plugin-modifies-install-path": true + "dev-master": "1.0-dev" + } }, "autoload": { "psr-4": { @@ -655,6 +249,7 @@ "description": "A multi-framework Composer library installer", "homepage": "https://composer.github.io/installers/", "keywords": [ + "Craft", "Dolibarr", "Eliasis", "Hurad", @@ -662,7 +257,6 @@ "Kanboard", "Lan Management System", "MODX Evo", - "MantisBT", "Mautic", "Maya", "OXID", @@ -670,11 +264,11 @@ "Porto", "RadPHP", "SMF", - "Starbug", "Thelia", "Whmcs", "WolfCMS", "agl", + "aimeos", "annotatecms", "attogram", "bitrix", @@ -683,7 +277,6 @@ "cockpit", "codeigniter", "concrete5", - "concreteCMS", "croogo", "dokuwiki", "drupal", @@ -694,6 +287,7 @@ "grav", "installer", "itop", + "joomla", "known", "kohana", "laravel", @@ -702,18 +296,14 @@ "magento", "majima", "mako", - "matomo", "mediawiki", - "miaoxing", "modulework", "modx", "moodle", "osclass", - "pantheon", "phpbb", "piwik", "ppi", - "processwire", "puppet", "pxcms", "reindex", @@ -721,58 +311,40 @@ "shopware", "silverstripe", "sydes", - "sylius", - "tastyigniter", + "symfony", + "typo3", "wordpress", "yawik", "zend", "zikula" ], - "support": { - "issues": "https://github.com/composer/installers/issues", - "source": "https://github.com/composer/installers/tree/v2.3.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-06-24T20:46:46+00:00" + "time": "2019-08-12T15:00:31+00:00" }, { "name": "composer/semver", - "version": "3.4.3", + "version": "1.5.0", "source": { "type": "git", "url": "https://github.com/composer/semver.git", - "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12" + "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12", - "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12", + "url": "https://api.github.com/repos/composer/semver/zipball/46d9139568ccb8d9e7cdd4539cab7347568a5e2e", + "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e", "shasum": "" }, "require": { - "php": "^5.3.2 || ^7.0 || ^8.0" + "php": "^5.3.2 || ^7.0" }, "require-dev": { - "phpstan/phpstan": "^1.11", - "symfony/phpunit-bridge": "^3 || ^7" + "phpunit/phpunit": "^4.5 || ^5.0.5", + "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "3.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { @@ -808,59 +380,84 @@ "validation", "versioning" ], - "support": { - "irc": "ircs://irc.libera.chat:6697/composer", - "issues": "https://github.com/composer/semver/issues", - "source": "https://github.com/composer/semver/tree/3.4.3" - }, - "funding": [ - { - "url": "https://packagist.com", - "type": "custom" - }, - { - "url": "https://github.com/composer", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/composer/composer", - "type": "tidelift" - } - ], - "time": "2024-09-19T14:15:21+00:00" + "time": "2019-03-19T17:25:45+00:00" }, { "name": "consolidation/annotated-command", - "version": "4.10.2", + "version": "2.12.0", "source": { "type": "git", "url": "https://github.com/consolidation/annotated-command.git", - "reference": "e550ea4f177f199e0e9451168342bf3f321d92b0" + "reference": "512a2e54c98f3af377589de76c43b24652bcb789" }, "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/512a2e54c98f3af377589de76c43b24652bcb789", + "reference": "512a2e54c98f3af377589de76c43b24652bcb789", "shasum": "" }, "require": { - "consolidation/output-formatters": "^4.3.1", - "php": ">=7.1.3", - "psr/log": "^1 || ^2 || ^3", - "symfony/console": "^4.4.8 || ^5 || ^6 || ^7", - "symfony/event-dispatcher": "^4.4.8 || ^5 || ^6 || ^7", - "symfony/finder": "^4.4.8 || ^5 || ^6 || ^7" + "consolidation/output-formatters": "^3.4", + "php": ">=5.4.5", + "psr/log": "^1", + "symfony/console": "^2.8|^3|^4", + "symfony/event-dispatcher": "^2.5|^3|^4", + "symfony/finder": "^2.5|^3|^4" }, "require-dev": { - "composer-runtime-api": "^2.0", - "phpunit/phpunit": "^7.5.20 || ^8 || ^9", - "squizlabs/php_codesniffer": "^3", - "yoast/phpunit-polyfills": "^0.2.0" + "g1a/composer-test-scenarios": "^3", + "php-coveralls/php-coveralls": "^1", + "phpunit/phpunit": "^6", + "squizlabs/php_codesniffer": "^2.7" }, "type": "library", "extra": { + "scenarios": { + "symfony4": { + "require": { + "symfony/console": "^4.0" + }, + "config": { + "platform": { + "php": "7.1.3" + } + } + }, + "symfony2": { + "require": { + "symfony/console": "^2.8" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.36" + }, + "remove": [ + "php-coveralls/php-coveralls" + ], + "config": { + "platform": { + "php": "5.4.8" + } + }, + "scenario-options": { + "create-lockfile": "false" + } + }, + "phpunit4": { + "require-dev": { + "phpunit/phpunit": "^4.8.36" + }, + "remove": [ + "php-coveralls/php-coveralls" + ], + "config": { + "platform": { + "php": "5.4.8" + } + } + } + }, "branch-alias": { - "dev-main": "4.x-dev" + "dev-master": "2.x-dev" } }, "autoload": { @@ -879,48 +476,69 @@ } ], "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" - }, - "time": "2025-07-16T20:54:09+00:00" + "time": "2019-03-08T16:55:03+00:00" }, { "name": "consolidation/config", - "version": "2.1.2", + "version": "1.2.1", "source": { "type": "git", "url": "https://github.com/consolidation/config.git", - "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae" + "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/config/zipball/597f8d7fbeef801736250ec10c3e190569b1b0ae", - "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae", + "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1", + "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1", "shasum": "" }, "require": { - "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3", - "grasmash/expander": "^2.0.1 || ^3", - "php": ">=7.1.3", - "symfony/event-dispatcher": "^4 || ^5 || ^6" + "dflydev/dot-access-data": "^1.1.0", + "grasmash/expander": "^1", + "php": ">=5.4.0" }, "require-dev": { - "ext-json": "*", - "phpunit/phpunit": ">=7.5.20", - "squizlabs/php_codesniffer": "^3", - "symfony/console": "^4 || ^5 || ^6", - "symfony/yaml": "^4 || ^5 || ^6", - "yoast/phpunit-polyfills": "^1" + "g1a/composer-test-scenarios": "^3", + "php-coveralls/php-coveralls": "^1", + "phpunit/phpunit": "^5", + "squizlabs/php_codesniffer": "2.*", + "symfony/console": "^2.5|^3|^4", + "symfony/yaml": "^2.8.11|^3|^4" }, "suggest": { - "symfony/event-dispatcher": "Required to inject configuration into Command options", "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader" }, "type": "library", "extra": { + "scenarios": { + "symfony4": { + "require-dev": { + "symfony/console": "^4.0" + }, + "config": { + "platform": { + "php": "7.1.3" + } + } + }, + "symfony2": { + "require-dev": { + "symfony/console": "^2.8", + "symfony/event-dispatcher": "^2.8", + "phpunit/phpunit": "^4.8.36" + }, + "remove": [ + "php-coveralls/php-coveralls" + ], + "config": { + "platform": { + "php": "5.4.8" + } + } + } + }, "branch-alias": { - "dev-main": "2.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { @@ -939,39 +557,55 @@ } ], "description": "Provide configuration services for a commandline tool.", - "support": { - "issues": "https://github.com/consolidation/config/issues", - "source": "https://github.com/consolidation/config/tree/2.1.2" - }, - "time": "2022-10-06T17:48:03+00:00" + "time": "2019-03-03T19:37:04+00:00" }, { "name": "consolidation/filter-via-dot-access-data", - "version": "2.0.2", + "version": "1.0.0", "source": { "type": "git", "url": "https://github.com/consolidation/filter-via-dot-access-data.git", - "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b" + "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b", - "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b", + "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6", + "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6", "shasum": "" }, "require": { - "dflydev/dot-access-data": "^1.1.0 || ^2.0.0 || ^3.0.0", - "php": ">=7.1.3" + "dflydev/dot-access-data": "^1.1.0", + "php": ">=5.5.0" }, "require-dev": { - "phpunit/phpunit": "^7.5.20 || ^8 || ^9", - "squizlabs/php_codesniffer": "^3", - "yoast/phpunit-polyfills": "^0.2.0" + "consolidation/robo": "^1.2.3", + "g1a/composer-test-scenarios": "^3", + "knplabs/github-api": "^2.7", + "php-coveralls/php-coveralls": "^1", + "php-http/guzzle6-adapter": "^1.1", + "phpunit/phpunit": "^5", + "squizlabs/php_codesniffer": "^2.8", + "symfony/console": "^2.8|^3|^4" }, "type": "library", "extra": { + "scenarios": { + "phpunit5": { + "require-dev": { + "phpunit/phpunit": "^5.7.27" + }, + "remove": [ + "php-coveralls/php-coveralls" + ], + "config": { + "platform": { + "php": "5.6.33" + } + } + } + }, "branch-alias": { - "dev-main": "2.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { @@ -990,39 +624,78 @@ } ], "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.", - "support": { - "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/2.0.2" - }, - "time": "2021-12-30T03:56:08+00:00" + "time": "2019-01-18T06:05:07+00:00" }, { "name": "consolidation/log", - "version": "3.1.0", + "version": "1.1.1", "source": { "type": "git", "url": "https://github.com/consolidation/log.git", - "reference": "c27a3beb36137c141ccbce0d89f64befb243c015" + "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/log/zipball/c27a3beb36137c141ccbce0d89f64befb243c015", - "reference": "c27a3beb36137c141ccbce0d89f64befb243c015", + "url": "https://api.github.com/repos/consolidation/log/zipball/b2e887325ee90abc96b0a8b7b474cd9e7c896e3a", + "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a", "shasum": "" }, "require": { - "php": ">=8.0.0", - "psr/log": "^3", - "symfony/console": "^5 || ^6 || ^7" + "php": ">=5.4.5", + "psr/log": "^1.0", + "symfony/console": "^2.8|^3|^4" }, "require-dev": { - "phpunit/phpunit": "^7.5.20 || ^8 || ^9", - "squizlabs/php_codesniffer": "^3", - "yoast/phpunit-polyfills": "^0.2.0" + "g1a/composer-test-scenarios": "^3", + "php-coveralls/php-coveralls": "^1", + "phpunit/phpunit": "^6", + "squizlabs/php_codesniffer": "^2" }, "type": "library", "extra": { - "platform": { - "php": "8.2.17" + "scenarios": { + "symfony4": { + "require": { + "symfony/console": "^4.0" + }, + "config": { + "platform": { + "php": "7.1.3" + } + } + }, + "symfony2": { + "require": { + "symfony/console": "^2.8" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.36" + }, + "remove": [ + "php-coveralls/php-coveralls" + ], + "config": { + "platform": { + "php": "5.4.8" + } + } + }, + "phpunit4": { + "require-dev": { + "phpunit/phpunit": "^4.8.36" + }, + "remove": [ + "php-coveralls/php-coveralls" + ], + "config": { + "platform": { + "php": "5.4.8" + } + } + } + }, + "branch-alias": { + "dev-master": "1.x-dev" } }, "autoload": { @@ -1041,44 +714,91 @@ } ], "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.", - "support": { - "issues": "https://github.com/consolidation/log/issues", - "source": "https://github.com/consolidation/log/tree/3.1.0" - }, - "time": "2024-04-04T23:50:25+00:00" + "time": "2019-01-01T17:30:51+00:00" }, { "name": "consolidation/output-formatters", - "version": "4.6.0", + "version": "3.5.0", "source": { "type": "git", "url": "https://github.com/consolidation/output-formatters.git", - "reference": "5fd5656718d7068a02d046f418a7ba873d5abbfe" + "reference": "99ec998ffb697e0eada5aacf81feebfb13023605" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/5fd5656718d7068a02d046f418a7ba873d5abbfe", - "reference": "5fd5656718d7068a02d046f418a7ba873d5abbfe", + "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/99ec998ffb697e0eada5aacf81feebfb13023605", + "reference": "99ec998ffb697e0eada5aacf81feebfb13023605", "shasum": "" }, "require": { - "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3", - "php": ">=7.1.3", - "symfony/console": "^4 || ^5 || ^6 || ^7", - "symfony/finder": "^4 || ^5 || ^6 || ^7" + "dflydev/dot-access-data": "^1.1.0", + "php": ">=5.4.0", + "symfony/console": "^2.8|^3|^4", + "symfony/finder": "^2.5|^3|^4" }, "require-dev": { - "php-coveralls/php-coveralls": "^2.4.2", - "phpunit/phpunit": "^7 || ^8 || ^9", - "squizlabs/php_codesniffer": "^3", - "symfony/var-dumper": "^4 || ^5 || ^6 || ^7", - "symfony/yaml": "^4 || ^5 || ^6 || ^7", - "yoast/phpunit-polyfills": "^1" + "g1a/composer-test-scenarios": "^3", + "php-coveralls/php-coveralls": "^1", + "phpunit/phpunit": "^5.7.27", + "squizlabs/php_codesniffer": "^2.7", + "symfony/var-dumper": "^2.8|^3|^4", + "victorjonsson/markdowndocs": "^1.3" }, "suggest": { "symfony/var-dumper": "For using the var_dump formatter" }, "type": "library", + "extra": { + "scenarios": { + "symfony4": { + "require": { + "symfony/console": "^4.0" + }, + "require-dev": { + "phpunit/phpunit": "^6" + }, + "config": { + "platform": { + "php": "7.1.3" + } + } + }, + "symfony3": { + "require": { + "symfony/console": "^3.4", + "symfony/finder": "^3.4", + "symfony/var-dumper": "^3.4" + }, + "config": { + "platform": { + "php": "5.6.32" + } + } + }, + "symfony2": { + "require": { + "symfony/console": "^2.8" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.36" + }, + "remove": [ + "php-coveralls/php-coveralls" + ], + "config": { + "platform": { + "php": "5.4.8" + } + }, + "scenario-options": { + "create-lockfile": "false" + } + } + }, + "branch-alias": { + "dev-master": "3.x-dev" + } + }, "autoload": { "psr-4": { "Consolidation\\OutputFormatters\\": "src" @@ -1095,63 +815,98 @@ } ], "description": "Format text by applying transformations provided by plug-in formatters.", - "support": { - "issues": "https://github.com/consolidation/output-formatters/issues", - "source": "https://github.com/consolidation/output-formatters/tree/4.6.0" - }, - "time": "2024-10-18T14:02:48+00:00" + "time": "2019-05-30T23:16:01+00:00" }, { "name": "consolidation/robo", - "version": "4.0.6", + "version": "1.4.10", "source": { "type": "git", - "url": "https://github.com/consolidation/robo.git", - "reference": "55a272370940607649e5c46eb173c5c54f7c166d" + "url": "https://github.com/consolidation/Robo.git", + "reference": "e5a6ca64cf1324151873672e484aceb21f365681" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/robo/zipball/55a272370940607649e5c46eb173c5c54f7c166d", - "reference": "55a272370940607649e5c46eb173c5c54f7c166d", + "url": "https://api.github.com/repos/consolidation/Robo/zipball/e5a6ca64cf1324151873672e484aceb21f365681", + "reference": "e5a6ca64cf1324151873672e484aceb21f365681", "shasum": "" }, "require": { - "consolidation/annotated-command": "^4.8.1", - "consolidation/config": "^2.0.1", - "consolidation/log": "^2.0.2 || ^3", - "consolidation/output-formatters": "^4.1.2", - "consolidation/self-update": "^2.0", - "league/container": "^3.3.1 || ^4.0", - "php": ">=8.0", - "phpowermove/docblock": "^4.0", - "symfony/console": "^6", - "symfony/event-dispatcher": "^6", - "symfony/filesystem": "^6", - "symfony/finder": "^6", - "symfony/process": "^6", - "symfony/yaml": "^6" + "consolidation/annotated-command": "^2.10.2", + "consolidation/config": "^1.2", + "consolidation/log": "~1", + "consolidation/output-formatters": "^3.1.13", + "consolidation/self-update": "^1", + "grasmash/yaml-expander": "^1.3", + "league/container": "^2.2", + "php": ">=5.5.0", + "symfony/console": "^2.8|^3|^4", + "symfony/event-dispatcher": "^2.5|^3|^4", + "symfony/filesystem": "^2.5|^3|^4", + "symfony/finder": "^2.5|^3|^4", + "symfony/process": "^2.5|^3|^4" }, - "conflict": { - "codegyre/robo": "*" + "replace": { + "codegyre/robo": "< 1.0" }, "require-dev": { + "codeception/aspect-mock": "^1|^2.1.1", + "codeception/base": "^2.3.7", + "codeception/verify": "^0.3.2", + "g1a/composer-test-scenarios": "^3", + "goaop/framework": "~2.1.2", + "goaop/parser-reflection": "^1.1.0", "natxet/cssmin": "3.0.4", - "patchwork/jsqueeze": "^2", + "nikic/php-parser": "^3.1.5", + "patchwork/jsqueeze": "~2", "pear/archive_tar": "^1.4.4", - "phpunit/phpunit": "^7.5.20 || ^8", - "squizlabs/php_codesniffer": "^3.6", - "yoast/phpunit-polyfills": "^0.2.0" + "php-coveralls/php-coveralls": "^1", + "phpunit/php-code-coverage": "~2|~4", + "squizlabs/php_codesniffer": "^2.8" }, "suggest": { - "natxet/cssmin": "For minifying CSS files in taskMinify", + "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch", + "natxet/CssMin": "For minifying CSS files in taskMinify", "patchwork/jsqueeze": "For minifying JS files in taskMinify", - "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.", - "totten/lurkerlite": "For monitoring filesystem changes in taskWatch" + "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively." }, "bin": [ "robo" ], "type": "library", + "extra": { + "scenarios": { + "symfony4": { + "require": { + "symfony/console": "^4" + }, + "config": { + "platform": { + "php": "7.1.3" + } + } + }, + "symfony2": { + "require": { + "symfony/console": "^2.8" + }, + "remove": [ + "goaop/framework" + ], + "config": { + "platform": { + "php": "5.5.9" + } + }, + "scenario-options": { + "create-lockfile": "false" + } + } + }, + "branch-alias": { + "dev-master": "2.x-dev" + } + }, "autoload": { "psr-4": { "Robo\\": "src" @@ -1168,31 +923,26 @@ } ], "description": "Modern task runner", - "support": { - "issues": "https://github.com/consolidation/robo/issues", - "source": "https://github.com/consolidation/robo/tree/4.0.6" - }, - "time": "2023-04-30T21:49:04+00:00" + "time": "2019-07-29T15:40:50+00:00" }, { "name": "consolidation/self-update", - "version": "2.2.0", + "version": "1.1.5", "source": { "type": "git", "url": "https://github.com/consolidation/self-update.git", - "reference": "972a1016761c9b63314e040836a12795dff6953a" + "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/self-update/zipball/972a1016761c9b63314e040836a12795dff6953a", - "reference": "972a1016761c9b63314e040836a12795dff6953a", + "url": "https://api.github.com/repos/consolidation/self-update/zipball/a1c273b14ce334789825a09d06d4c87c0a02ad54", + "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54", "shasum": "" }, "require": { - "composer/semver": "^3.2", "php": ">=5.5.0", - "symfony/console": "^2.8 || ^3 || ^4 || ^5 || ^6", - "symfony/filesystem": "^2.5 || ^3 || ^4 || ^5 || ^6" + "symfony/console": "^2.8|^3|^4", + "symfony/filesystem": "^2.5|^3|^4" }, "bin": [ "scripts/release" @@ -1200,7 +950,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "2.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { @@ -1213,53 +963,66 @@ "MIT" ], "authors": [ - { - "name": "Alexander Menk", - "email": "menk@mestrona.net" - }, { "name": "Greg Anderson", "email": "greg.1.anderson@greenknowe.org" + }, + { + "name": "Alexander Menk", + "email": "menk@mestrona.net" } ], "description": "Provides a self:update command for Symfony Console applications.", - "support": { - "issues": "https://github.com/consolidation/self-update/issues", - "source": "https://github.com/consolidation/self-update/tree/2.2.0" - }, - "time": "2023-03-18T01:37:41+00:00" + "time": "2018-10-28T01:52:03+00:00" }, { "name": "consolidation/site-alias", - "version": "4.1.1", + "version": "3.0.0", "source": { "type": "git", "url": "https://github.com/consolidation/site-alias.git", - "reference": "aff6189aae17da813d23249cb2fc0fff33f26d40" + "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f" }, "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/8cfd3b6ab6d541086fc970bf850864293b284e6f", + "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f", "shasum": "" }, "require": { - "consolidation/config": "^1.2.1 || ^2 || ^3", - "php": ">=7.4", - "symfony/filesystem": "^5.4 || ^6 || ^7", - "symfony/finder": "^5 || ^6 || ^7" + "consolidation/config": "^1.2.1", + "php": ">=5.5.0" }, "require-dev": { - "php-coveralls/php-coveralls": "^2.4.2", - "phpunit/phpunit": ">=7", - "squizlabs/php_codesniffer": "^3", - "symfony/var-dumper": "^4", - "yoast/phpunit-polyfills": "^0.2.0" + "consolidation/robo": "^1.2.3", + "g1a/composer-test-scenarios": "^3", + "knplabs/github-api": "^2.7", + "php-coveralls/php-coveralls": "^1", + "php-http/guzzle6-adapter": "^1.1", + "phpunit/phpunit": "^6", + "squizlabs/php_codesniffer": "^2.8", + "symfony/console": "^2.8|^3|^4", + "symfony/yaml": "~2.3|^3" }, "type": "library", "extra": { + "scenarios": { + "phpunit5": { + "require-dev": { + "phpunit/phpunit": "^5.7.27" + }, + "remove": [ + "php-coveralls/php-coveralls" + ], + "config": { + "platform": { + "php": "5.6.33" + } + } + } + }, "branch-alias": { - "dev-main": "4.x-dev" + "dev-master": "3.x-dev" } }, "autoload": { @@ -1272,51 +1035,66 @@ "MIT" ], "authors": [ - { - "name": "Greg Anderson", - "email": "greg.1.anderson@greenknowe.org" - }, { "name": "Moshe Weitzman", "email": "weitzman@tejasa.com" + }, + { + "name": "Greg Anderson", + "email": "greg.1.anderson@greenknowe.org" } ], "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" - }, - "time": "2024-12-13T19:05:11+00:00" + "time": "2019-03-12T17:31:48+00:00" }, { "name": "consolidation/site-process", - "version": "5.4.2", + "version": "2.0.4", "source": { "type": "git", "url": "https://github.com/consolidation/site-process.git", - "reference": "e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da" + "reference": "e159f849abce696c2f5081c149a1f8ec8717dd97" }, "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/e159f849abce696c2f5081c149a1f8ec8717dd97", + "reference": "e159f849abce696c2f5081c149a1f8ec8717dd97", "shasum": "" }, "require": { - "consolidation/config": "^2 || ^3", - "consolidation/site-alias": "^3 || ^4", - "php": ">=8.0.14", - "symfony/console": "^5.4 || ^6 || ^7", - "symfony/process": "^6 || ^7" + "consolidation/config": "^1.2.1", + "consolidation/site-alias": "^3", + "php": ">=5.6.0", + "symfony/process": "^3.4" }, "require-dev": { - "phpunit/phpunit": "^9", - "squizlabs/php_codesniffer": "^3" + "consolidation/robo": "^1.3", + "g1a/composer-test-scenarios": "^3", + "knplabs/github-api": "^2.7", + "php-coveralls/php-coveralls": "^1", + "php-http/guzzle6-adapter": "^1.1", + "phpunit/phpunit": "^6", + "squizlabs/php_codesniffer": "^2.8" }, "type": "library", "extra": { + "scenarios": { + "phpunit5": { + "require-dev": { + "phpunit/phpunit": "^5.7.27" + }, + "remove": [ + "php-coveralls/php-coveralls" + ], + "config": { + "platform": { + "php": "5.6.33" + } + } + } + }, "branch-alias": { - "dev-main": "5.x-dev" + "dev-master": "0.x-dev" } }, "autoload": { @@ -1339,32 +1117,59 @@ } ], "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" - }, - "time": "2024-12-13T19:25:56+00:00" + "time": "2019-08-12T23:10:26+00:00" }, { - "name": "cweagans/composer-patches", - "version": "1.7.3", + "name": "container-interop/container-interop", + "version": "1.2.0", "source": { "type": "git", - "url": "https://github.com/cweagans/composer-patches.git", - "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db" + "url": "https://github.com/container-interop/container-interop.git", + "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db", - "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db", + "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8", + "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8", "shasum": "" }, "require": { - "composer-plugin-api": "^1.0 || ^2.0", + "psr/container": "^1.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Interop\\Container\\": "src/Interop/Container/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Promoting the interoperability of container objects (DIC, SL, etc.)", + "homepage": "https://github.com/container-interop/container-interop", + "time": "2017-02-14T19:40:03+00:00" + }, + { + "name": "cweagans/composer-patches", + "version": "1.6.7", + "source": { + "type": "git", + "url": "https://github.com/cweagans/composer-patches.git", + "reference": "2e6f72a2ad8d59cd7e2b729f218bf42adb14f590" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/2e6f72a2ad8d59cd7e2b729f218bf42adb14f590", + "reference": "2e6f72a2ad8d59cd7e2b729f218bf42adb14f590", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^1.0", "php": ">=5.3.0" }, "require-dev": { - "composer/composer": "~1.0 || ~2.0", + "composer/composer": "~1.0", "phpunit/phpunit": "~4.6" }, "type": "composer-plugin", @@ -1387,45 +1192,34 @@ } ], "description": "Provides a way to patch Composer packages.", - "support": { - "issues": "https://github.com/cweagans/composer-patches/issues", - "source": "https://github.com/cweagans/composer-patches/tree/1.7.3" - }, - "time": "2022-12-20T22:53:13+00:00" + "time": "2019-08-29T20:11:49+00:00" }, { "name": "dflydev/dot-access-data", - "version": "v3.0.3", + "version": "v1.1.0", "source": { "type": "git", "url": "https://github.com/dflydev/dflydev-dot-access-data.git", - "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f" + "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f", - "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f", + "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a", + "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a", "shasum": "" }, "require": { - "php": "^7.1 || ^8.0" - }, - "require-dev": { - "phpstan/phpstan": "^0.12.42", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3", - "scrutinizer/ocular": "1.6.0", - "squizlabs/php_codesniffer": "^3.5", - "vimeo/psalm": "^4.0.0" + "php": ">=5.3.2" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "3.x-dev" + "dev-master": "1.0-dev" } }, "autoload": { - "psr-4": { - "Dflydev\\DotAccessData\\": "src/" + "psr-0": { + "Dflydev\\DotAccessData": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -1447,11 +1241,6 @@ "name": "Carlos Frutos", "email": "carlos@kiwing.it", "homepage": "https://github.com/cfrutos" - }, - { - "name": "Colin O'Dell", - "email": "colinodell@gmail.com", - "homepage": "https://www.colinodell.com" } ], "description": "Given a deep data structure, access data by dot notation.", @@ -1462,44 +1251,69 @@ "dot", "notation" ], - "support": { - "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues", - "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3" - }, - "time": "2024-07-08T12:26:09+00:00" + "time": "2017-01-20T21:14:22+00:00" }, { - "name": "doctrine/annotations", - "version": "1.14.4", + "name": "dnoegel/php-xdg-base-dir", + "version": "0.1", "source": { "type": "git", - "url": "https://github.com/doctrine/annotations.git", - "reference": "253dca476f70808a5aeed3a47cc2cc88c5cab915" + "url": "https://github.com/dnoegel/php-xdg-base-dir.git", + "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/annotations/zipball/253dca476f70808a5aeed3a47cc2cc88c5cab915", - "reference": "253dca476f70808a5aeed3a47cc2cc88c5cab915", + "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a", + "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a", "shasum": "" }, "require": { - "doctrine/lexer": "^1 || ^2", - "ext-tokenizer": "*", - "php": "^7.1 || ^8.0", - "psr/cache": "^1 || ^2 || ^3" + "php": ">=5.3.2" }, "require-dev": { - "doctrine/cache": "^1.11 || ^2.0", - "doctrine/coding-standard": "^9 || ^12", - "phpstan/phpstan": "~1.4.10 || ^1.10.28", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", - "symfony/cache": "^4.4 || ^5.4 || ^6.4 || ^7", - "vimeo/psalm": "^4.30 || ^5.14" + "phpunit/phpunit": "@stable" }, - "suggest": { - "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations" + "type": "project", + "autoload": { + "psr-4": { + "XdgBaseDir\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "implementation of xdg base directory specification for php", + "time": "2014-10-24T07:27:01+00:00" + }, + { + "name": "doctrine/annotations", + "version": "v1.7.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/annotations.git", + "reference": "fa4c4e861e809d6a1103bd620cce63ed91aedfeb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/annotations/zipball/fa4c4e861e809d6a1103bd620cce63ed91aedfeb", + "reference": "fa4c4e861e809d6a1103bd620cce63ed91aedfeb", + "shasum": "" + }, + "require": { + "doctrine/lexer": "1.*", + "php": "^7.1" + }, + "require-dev": { + "doctrine/cache": "1.*", + "phpunit/phpunit": "^7.5@dev" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.7.x-dev" + } + }, "autoload": { "psr-4": { "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations" @@ -1532,48 +1346,53 @@ } ], "description": "Docblock Annotations Parser", - "homepage": "https://www.doctrine-project.org/projects/annotations.html", + "homepage": "http://www.doctrine-project.org", "keywords": [ "annotations", "docblock", "parser" ], - "support": { - "issues": "https://github.com/doctrine/annotations/issues", - "source": "https://github.com/doctrine/annotations/tree/1.14.4" - }, - "time": "2024-09-05T10:15:52+00:00" + "time": "2019-08-08T18:11:40+00:00" }, { - "name": "doctrine/collections", - "version": "2.3.0", + "name": "doctrine/cache", + "version": "v1.8.0", "source": { "type": "git", - "url": "https://github.com/doctrine/collections.git", - "reference": "2eb07e5953eed811ce1b309a7478a3b236f2273d" + "url": "https://github.com/doctrine/cache.git", + "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/collections/zipball/2eb07e5953eed811ce1b309a7478a3b236f2273d", - "reference": "2eb07e5953eed811ce1b309a7478a3b236f2273d", + "url": "https://api.github.com/repos/doctrine/cache/zipball/d768d58baee9a4862ca783840eca1b9add7a7f57", + "reference": "d768d58baee9a4862ca783840eca1b9add7a7f57", "shasum": "" }, "require": { - "doctrine/deprecations": "^1", - "php": "^8.1", - "symfony/polyfill-php84": "^1.30" + "php": "~7.1" + }, + "conflict": { + "doctrine/common": ">2.2,<2.4" }, "require-dev": { - "doctrine/coding-standard": "^12", - "ext-json": "*", - "phpstan/phpstan": "^1.8", - "phpstan/phpstan-phpunit": "^1.0", - "phpunit/phpunit": "^10.5" + "alcaeus/mongo-php-adapter": "^1.1", + "doctrine/coding-standard": "^4.0", + "mongodb/mongodb": "^1.1", + "phpunit/phpunit": "^7.0", + "predis/predis": "~1.0" + }, + "suggest": { + "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.8.x-dev" + } + }, "autoload": { "psr-4": { - "Doctrine\\Common\\Collections\\": "src" + "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache" } }, "notification-url": "https://packagist.org/downloads/", @@ -1581,10 +1400,74 @@ "MIT" ], "authors": [ + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, { "name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com" }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "Caching library offering an object-oriented API for many cache backends", + "homepage": "https://www.doctrine-project.org", + "keywords": [ + "cache", + "caching" + ], + "time": "2018-08-21T18:01:43+00:00" + }, + { + "name": "doctrine/collections", + "version": "v1.6.2", + "source": { + "type": "git", + "url": "https://github.com/doctrine/collections.git", + "reference": "c5e0bc17b1620e97c968ac409acbff28b8b850be" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/collections/zipball/c5e0bc17b1620e97c968ac409acbff28b8b850be", + "reference": "c5e0bc17b1620e97c968ac409acbff28b8b850be", + "shasum": "" + }, + "require": { + "php": "^7.1.3" + }, + "require-dev": { + "doctrine/coding-standard": "^6.0", + "phpstan/phpstan-shim": "^0.9.2", + "phpunit/phpunit": "^7.0", + "vimeo/psalm": "^3.2.2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.6.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ { "name": "Roman Borschel", "email": "roman@code-factory.org" @@ -1593,6 +1476,10 @@ "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" @@ -1610,103 +1497,261 @@ "iterators", "php" ], - "support": { - "issues": "https://github.com/doctrine/collections/issues", - "source": "https://github.com/doctrine/collections/tree/2.3.0" - }, - "funding": [ - { - "url": "https://www.doctrine-project.org/sponsorship.html", - "type": "custom" - }, - { - "url": "https://www.patreon.com/phpdoctrine", - "type": "patreon" - }, - { - "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections", - "type": "tidelift" - } - ], - "time": "2025-03-22T10:17:19+00:00" + "time": "2019-06-09T13:48:14+00:00" }, { - "name": "doctrine/deprecations", - "version": "1.1.5", + "name": "doctrine/common", + "version": "v2.10.0", "source": { "type": "git", - "url": "https://github.com/doctrine/deprecations.git", - "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38" + "url": "https://github.com/doctrine/common.git", + "reference": "30e33f60f64deec87df728c02b107f82cdafad9d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/deprecations/zipball/459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38", - "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38", + "url": "https://api.github.com/repos/doctrine/common/zipball/30e33f60f64deec87df728c02b107f82cdafad9d", + "reference": "30e33f60f64deec87df728c02b107f82cdafad9d", "shasum": "" }, "require": { - "php": "^7.1 || ^8.0" - }, - "conflict": { - "phpunit/phpunit": "<=7.5 || >=13" + "doctrine/annotations": "^1.0", + "doctrine/cache": "^1.0", + "doctrine/collections": "^1.0", + "doctrine/event-manager": "^1.0", + "doctrine/inflector": "^1.0", + "doctrine/lexer": "^1.0", + "doctrine/persistence": "^1.1", + "doctrine/reflection": "^1.0", + "php": "^7.1" }, "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" - }, - "suggest": { - "psr/log": "Allows logging deprecations via PSR-3 logger implementation" + "doctrine/coding-standard": "^1.0", + "phpunit/phpunit": "^6.3", + "squizlabs/php_codesniffer": "^3.0", + "symfony/phpunit-bridge": "^4.0.5" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.10.x-dev" + } + }, "autoload": { "psr-4": { - "Doctrine\\Deprecations\\": "src" + "Doctrine\\Common\\": "lib/Doctrine/Common" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.", - "homepage": "https://www.doctrine-project.org/", - "support": { - "issues": "https://github.com/doctrine/deprecations/issues", - "source": "https://github.com/doctrine/deprecations/tree/1.1.5" - }, - "time": "2025-04-07T20:06:18+00:00" + "authors": [ + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + }, + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com" + } + ], + "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, persistence interfaces, proxies, event system and much more.", + "homepage": "https://www.doctrine-project.org/projects/common.html", + "keywords": [ + "common", + "doctrine", + "php" + ], + "time": "2018-11-21T01:24:55+00:00" }, { - "name": "doctrine/lexer", - "version": "2.1.1", + "name": "doctrine/event-manager", + "version": "v1.0.0", "source": { "type": "git", - "url": "https://github.com/doctrine/lexer.git", - "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6" + "url": "https://github.com/doctrine/event-manager.git", + "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6", - "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6", + "url": "https://api.github.com/repos/doctrine/event-manager/zipball/a520bc093a0170feeb6b14e9d83f3a14452e64b3", + "reference": "a520bc093a0170feeb6b14e9d83f3a14452e64b3", "shasum": "" }, "require": { - "doctrine/deprecations": "^1.0", - "php": "^7.1 || ^8.0" + "php": "^7.1" + }, + "conflict": { + "doctrine/common": "<2.9@dev" }, "require-dev": { - "doctrine/coding-standard": "^9 || ^12", - "phpstan/phpstan": "^1.3", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6", - "psalm/plugin-phpunit": "^0.18.3", - "vimeo/psalm": "^4.11 || ^5.21" + "doctrine/coding-standard": "^4.0", + "phpunit/phpunit": "^7.0" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, "autoload": { "psr-4": { - "Doctrine\\Common\\Lexer\\": "src" + "Doctrine\\Common\\": "lib/Doctrine/Common" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + }, + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com" + } + ], + "description": "Doctrine Event Manager component", + "homepage": "https://www.doctrine-project.org/projects/event-manager.html", + "keywords": [ + "event", + "eventdispatcher", + "eventmanager" + ], + "time": "2018-06-11T11:59:03+00:00" + }, + { + "name": "doctrine/inflector", + "version": "v1.3.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/inflector.git", + "reference": "5527a48b7313d15261292c149e55e26eae771b0a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/5527a48b7313d15261292c149e55e26eae771b0a", + "reference": "5527a48b7313d15261292c149e55e26eae771b0a", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "require-dev": { + "phpunit/phpunit": "^6.2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + } + ], + "description": "Common String Manipulations with regard to casing and singular/plural rules.", + "homepage": "http://www.doctrine-project.org", + "keywords": [ + "inflection", + "pluralize", + "singularize", + "string" + ], + "time": "2018-01-09T20:05:19+00:00" + }, + { + "name": "doctrine/lexer", + "version": "1.1.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/lexer.git", + "reference": "e17f069ede36f7534b95adec71910ed1b49c74ea" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/e17f069ede36f7534b95adec71910ed1b49c74ea", + "reference": "e17f069ede36f7534b95adec71910ed1b49c74ea", + "shasum": "" + }, + "require": { + "php": "^7.2" + }, + "require-dev": { + "doctrine/coding-standard": "^6.0", + "phpstan/phpstan": "^0.11.8", + "phpunit/phpunit": "^8.2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer" } }, "notification-url": "https://packagist.org/downloads/", @@ -1736,216 +1781,47 @@ "parser", "php" ], - "support": { - "issues": "https://github.com/doctrine/lexer/issues", - "source": "https://github.com/doctrine/lexer/tree/2.1.1" - }, - "funding": [ - { - "url": "https://www.doctrine-project.org/sponsorship.html", - "type": "custom" - }, - { - "url": "https://www.patreon.com/phpdoctrine", - "type": "patreon" - }, - { - "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer", - "type": "tidelift" - } - ], - "time": "2024-02-05T11:35:39+00:00" + "time": "2019-07-30T19:33:28+00:00" }, { - "name": "dompdf/dompdf", - "version": "v3.1.0", + "name": "doctrine/persistence", + "version": "1.1.1", "source": { "type": "git", - "url": "https://github.com/dompdf/dompdf.git", - "reference": "a51bd7a063a65499446919286fb18b518177155a" + "url": "https://github.com/doctrine/persistence.git", + "reference": "3da7c9d125591ca83944f477e65ed3d7b4617c48" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dompdf/dompdf/zipball/a51bd7a063a65499446919286fb18b518177155a", - "reference": "a51bd7a063a65499446919286fb18b518177155a", + "url": "https://api.github.com/repos/doctrine/persistence/zipball/3da7c9d125591ca83944f477e65ed3d7b4617c48", + "reference": "3da7c9d125591ca83944f477e65ed3d7b4617c48", "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" + "doctrine/annotations": "^1.0", + "doctrine/cache": "^1.0", + "doctrine/collections": "^1.0", + "doctrine/event-manager": "^1.0", + "doctrine/reflection": "^1.0", + "php": "^7.1" + }, + "conflict": { + "doctrine/common": "<2.10@dev" }, "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", - "source": { - "type": "git", - "url": "https://github.com/dragonmantank/cron-expression.git", - "reference": "8c784d071debd117328803d86b2097615b457500" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500", - "reference": "8c784d071debd117328803d86b2097615b457500", - "shasum": "" - }, - "require": { - "php": "^7.2|^8.0", - "webmozart/assert": "^1.0" - }, - "replace": { - "mtdowling/cron-expression": "^1.0" - }, - "require-dev": { - "phpstan/extension-installer": "^1.0", - "phpstan/phpstan": "^1.0", - "phpunit/phpunit": "^7.0|^8.0|^9.0" + "doctrine/coding-standard": "^5.0", + "phpstan/phpstan": "^0.8", + "phpunit/phpunit": "^7.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.x-dev" + "dev-master": "1.1.x-dev" } }, "autoload": { "psr-4": { - "Cron\\": "src/Cron/" + "Doctrine\\Common\\": "lib/Doctrine/Common" } }, "notification-url": "https://packagist.org/downloads/", @@ -1954,91 +1830,189 @@ ], "authors": [ { - "name": "Chris Tankersley", - "email": "chris@ctankersley.com", - "homepage": "https://github.com/dragonmantank" - } - ], - "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due", - "keywords": [ - "cron", - "schedule" - ], - "support": { - "issues": "https://github.com/dragonmantank/cron-expression/issues", - "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0" - }, - "funding": [ + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, { - "url": "https://github.com/dragonmantank", - "type": "github" + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + }, + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com" } ], - "time": "2024-10-09T13:47:03+00:00" + "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.", + "homepage": "https://doctrine-project.org/projects/persistence.html", + "keywords": [ + "mapper", + "object", + "odm", + "orm", + "persistence" + ], + "time": "2019-04-23T08:28:24+00:00" }, { - "name": "drupal-ckeditor-libraries-group/fakeobjects", - "version": "4.22.1", + "name": "doctrine/reflection", + "version": "v1.0.0", "source": { "type": "git", - "url": "https://github.com/drupal-ckeditor-libraries-group/fakeobjects.git", - "reference": "a1de732aa3dbc63349f8b4653b1c7788c93ae25c" + "url": "https://github.com/doctrine/reflection.git", + "reference": "02538d3f95e88eb397a5f86274deb2c6175c2ab6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal-ckeditor-libraries-group/fakeobjects/zipball/a1de732aa3dbc63349f8b4653b1c7788c93ae25c", - "reference": "a1de732aa3dbc63349f8b4653b1c7788c93ae25c", + "url": "https://api.github.com/repos/doctrine/reflection/zipball/02538d3f95e88eb397a5f86274deb2c6175c2ab6", + "reference": "02538d3f95e88eb397a5f86274deb2c6175c2ab6", "shasum": "" }, - "type": "drupal-library", + "require": { + "doctrine/annotations": "^1.0", + "ext-tokenizer": "*", + "php": "^7.1" + }, + "require-dev": { + "doctrine/coding-standard": "^4.0", + "doctrine/common": "^2.8", + "phpstan/phpstan": "^0.9.2", + "phpstan/phpstan-phpunit": "^0.9.4", + "phpunit/phpunit": "^7.0", + "squizlabs/php_codesniffer": "^3.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Common\\": "lib/Doctrine/Common" + } + }, "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later", - "LGPL-2.1-or-later", - "MPL-1.1" + "MIT" ], - "description": "CKEditor 4 fakeobjects plugin", - "homepage": "https://ckeditor.com/cke4/addon/fakeobjects", + "authors": [ + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + }, + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com" + } + ], + "description": "Doctrine Reflection component", + "homepage": "https://www.doctrine-project.org/projects/reflection.html", "keywords": [ - "CKEditor", - "fakeobjects", - "plugin" + "reflection" ], - "support": { - "issues": "https://github.com/ckeditor/ckeditor4/issues", - "source": "https://github.com/ckeditor/ckeditor4/tree/master/plugins/fakeobjects" + "time": "2018-06-14T14:45:07+00:00" + }, + { + "name": "drupal-composer/drupal-scaffold", + "version": "2.6.1", + "source": { + "type": "git", + "url": "https://github.com/drupal-composer/drupal-scaffold.git", + "reference": "13c1ffc7dd4925cb03707759128b85c0cd6276f8" }, - "time": "2023-02-08T14:53:49+00:00" + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/drupal-composer/drupal-scaffold/zipball/13c1ffc7dd4925cb03707759128b85c0cd6276f8", + "reference": "13c1ffc7dd4925cb03707759128b85c0cd6276f8", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^1.0.0", + "composer/semver": "^1.4", + "php": "^5.5.9|>=7.0.8" + }, + "require-dev": { + "composer/composer": "dev-master", + "g1a/composer-test-scenarios": "^2.1.0", + "phpunit/phpunit": "^6", + "squizlabs/php_codesniffer": "^2.8" + }, + "type": "composer-plugin", + "extra": { + "class": "DrupalComposer\\DrupalScaffold\\Plugin", + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "DrupalComposer\\DrupalScaffold\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "Composer Plugin for updating the Drupal scaffold files when using drupal/core", + "time": "2019-03-30T10:41:38+00:00" }, { "name": "drupal/address", - "version": "2.0.4", + "version": "1.7.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/address.git", - "reference": "2.0.4" + "reference": "8.x-1.7" }, "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.7.zip", + "reference": "8.x-1.7", + "shasum": "dab23a510090e59e3e6bc77faa517b523ad048ae" }, "require": { - "commerceguys/addressing": "^2.1.1", - "drupal/core": "^9.5 || ^10 || ^11", - "php": "^8.0" + "commerceguys/addressing": "^1.0.0", + "drupal/core": "^8.6" }, "require-dev": { - "drupal/diff": "^1", - "drupal/feeds": "^3", - "drupal/token": "^1" + "drupal/token": "^1.0" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "2.0.4", - "datestamp": "1746462054", + "version": "8.x-1.7", + "datestamp": "1559642884", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2047,24 +2021,24 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { "name": "bojanz", "homepage": "https://www.drupal.org/user/86106" }, - { - "name": "centarro", - "homepage": "https://www.drupal.org/user/3661446" - }, { "name": "dww", "homepage": "https://www.drupal.org/user/46549" }, { - "name": "jsacksick", - "homepage": "https://www.drupal.org/user/972218" + "name": "googletorp", + "homepage": "https://www.drupal.org/user/386230" + }, + { + "name": "mglaman", + "homepage": "https://www.drupal.org/user/2416470" }, { "name": "rszrama", @@ -2078,30 +2052,77 @@ } }, { - "name": "drupal/admin_toolbar", - "version": "3.6.1", + "name": "drupal/admin_links_access_filter", + "version": "1.0.0-alpha3", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/admin_toolbar.git", - "reference": "3.6.1" + "url": "https://git.drupalcode.org/project/admin_links_access_filter.git", + "reference": "8.x-1.0-alpha3" }, "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_links_access_filter-8.x-1.0-alpha3.zip", + "reference": "8.x-1.0-alpha3", + "shasum": "410543c4b14d5c88fa53d7256717756cab522e65" }, "require": { - "drupal/core": "^9.5 || ^10 || ^11" - }, - "require-dev": { - "drupal/admin_toolbar_tools": "*" + "drupal/core": "~8.1" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "3.6.1", - "datestamp": "1749079734", + "version": "8.x-1.0-alpha3", + "datestamp": "1481822103", + "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": "agoradesign", + "homepage": "https://www.drupal.org/user/1183886" + } + ], + "description": "Administration links access filter provides a workaround for the common problem that users with 'Use the administration pages and help' permission see menu links they don't have access permission for.", + "homepage": "http://drupal.org/project/admin_links_access_filter", + "support": { + "source": "https://git.drupalcode.org/project/admin_links_access_filter" + } + }, + { + "name": "drupal/admin_toolbar", + "version": "1.27.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/admin_toolbar.git", + "reference": "8.x-1.27" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-1.27.zip", + "reference": "8.x-1.27", + "shasum": "fed1fbbdf8f805b1da63d73e7e2c54750f354d61" + }, + "require": { + "drupal/core": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.27", + "datestamp": "1558553350", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2110,7 +2131,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { @@ -2138,18 +2159,10 @@ "name": "fethi.krout", "homepage": "https://www.drupal.org/user/3206765" }, - { - "name": "japerry", - "homepage": "https://www.drupal.org/user/45640" - }, { "name": "matio89", "homepage": "https://www.drupal.org/user/2320090" }, - { - "name": "musa.thomas", - "homepage": "https://www.drupal.org/user/1213824" - }, { "name": "romainj", "homepage": "https://www.drupal.org/user/370706" @@ -2162,90 +2175,25 @@ "Toolbar" ], "support": { - "source": "https://git.drupalcode.org/project/admin_toolbar", + "source": "http://cgit.drupalcode.org/admin_toolbar", "issues": "https://www.drupal.org/project/issues/admin_toolbar" } }, - { - "name": "drupal/admin_toolbar-admin_toolbar_search", - "version": "3.6.1", - "require": { - "drupal/admin_toolbar": "^3", - "drupal/core": "^9.5 || ^10 || ^11" - }, - "require-dev": { - "drupal/admin_toolbar_tools": "*" - }, - "type": "metapackage", - "extra": { - "drupal": { - "version": "3.6.1", - "datestamp": "1749079734", - "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": "adriancid", - "homepage": "https://www.drupal.org/user/1962106" - }, - { - "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" - }, - { - "name": "fethi.krout", - "homepage": "https://www.drupal.org/user/3206765" - }, - { - "name": "japerry", - "homepage": "https://www.drupal.org/user/45640" - }, - { - "name": "matio89", - "homepage": "https://www.drupal.org/user/2320090" - }, - { - "name": "musa.thomas", - "homepage": "https://www.drupal.org/user/1213824" - }, - { - "name": "romainj", - "homepage": "https://www.drupal.org/user/370706" - } - ], - "homepage": "https://www.drupal.org/project/admin_toolbar", - "support": { - "source": "https://git.drupalcode.org/project/admin_toolbar" - } - }, { "name": "drupal/admin_toolbar_tools", - "version": "3.6.1", + "version": "1.27.0", "require": { - "drupal/admin_toolbar": "*", - "drupal/core": "^9.5 || ^10 || ^11" + "drupal/admin_toolbar": "self.version", + "drupal/core": "~8.6" }, "type": "metapackage", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "3.6.1", - "datestamp": "1749079734", + "version": "8.x-1.27", + "datestamp": "1558553350", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2254,661 +2202,138 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { - "name": "adriancid", - "homepage": "https://www.drupal.org/user/1962106" + "name": "Wilfrid Roze (eme)", + "homepage": "https://www.drupal.org/u/eme", + "role": "Maintainer" }, { - "name": "bolbol", - "homepage": "https://www.drupal.org/user/3400070" + "name": "Romain Jarraud (romainj)", + "homepage": "https://www.drupal.org/u/romainj", + "role": "Maintainer" }, { - "name": "dydave", - "homepage": "https://www.drupal.org/user/467284" + "name": "Adrian Cid Almaguer (adriancid)", + "homepage": "https://www.drupal.org/u/adriancid", + "email": "adriancid@gmail.com", + "role": "Maintainer" }, { - "name": "eme", - "homepage": "https://www.drupal.org/user/542492" + "name": "Mohamed Anis Taktak (matio89)", + "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" - }, { "name": "matio89", "homepage": "https://www.drupal.org/user/2320090" }, - { - "name": "musa.thomas", - "homepage": "https://www.drupal.org/user/1213824" - }, { "name": "romainj", "homepage": "https://www.drupal.org/user/370706" } ], - "description": "Adds menu links like Flush cache, Run cron, Run updates, and Logout under Drupal icon.", - "homepage": "https://www.drupal.org/project/admin_toolbar", - "support": { - "source": "https://git.drupalcode.org/project/admin_toolbar" - } - }, - { - "name": "drupal/allowed_formats", - "version": "3.0.1", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/allowed_formats.git", - "reference": "3.0.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/allowed_formats-3.0.1.zip", - "reference": "3.0.1", - "shasum": "9dfaed3ab8425ee94146914fdb492cefc6c6bb4d" - }, - "require": { - "drupal/core": "^10.1 || ^11" - }, - "conflict": { - "drupal/core": "<10.1.0" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "3.0.1", - "datestamp": "1723158950", - "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": "Northern Commerce (formerly Digital Echidna)", - "homepage": "https://www.drupal.org/northern-commerce-formerly-digital-echidna", - "role": "Supporting organization" - }, - { - "name": "Jordan Thompson (nord102)", - "homepage": "https://www.drupal.org/u/nord102", - "role": "Maintainer" - }, - { - "name": "Wunder", - "homepage": "https://www.drupal.org/wunder", - "role": "Supporting organization" - }, - { - "name": "Florian Loretan (floretan)", - "homepage": "https://www.drupal.org/u/floretan", - "role": "Maintainer" - } - ], - "description": "Hides info about the selected text format. The 'allowed formats' functionality has been moved to core since Drupal 10.1.0.", - "homepage": "https://www.drupal.org/project/allowed_formats", - "support": { - "source": "http://cgit.drupalcode.org/allowed_formats", - "issues": "https://www.drupal.org/project/issues/allowed_formats" - } - }, - { - "name": "drupal/antibot", - "version": "2.0.4", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/antibot.git", - "reference": "2.0.4" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/antibot-2.0.4.zip", - "reference": "2.0.4", - "shasum": "58b215291b250ea410194693cbac2da6f54a8530" - }, - "require": { - "drupal/core": "^8.8 || ^9 || ^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.4", - "datestamp": "1723819813", - "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": "danrod", - "homepage": "https://www.drupal.org/user/19150" - }, - { - "name": "gaurav.kapoor", - "homepage": "https://www.drupal.org/user/3495331" - }, - { - "name": "mstef", - "homepage": "https://www.drupal.org/user/107190" - } - ], - "description": "Prevent forms from being submitted without JavaScript enabled.", - "homepage": "https://www.drupal.org/project/antibot", - "support": { - "source": "https://git.drupalcode.org/project/antibot" - } - }, - { - "name": "drupal/asset_injector", - "version": "2.21.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/asset_injector.git", - "reference": "8.x-2.21" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/asset_injector-8.x-2.21.zip", - "reference": "8.x-2.21", - "shasum": "24dc111e995d6a33cb9f11f106b0d1e716e92767" - }, - "require": { - "drupal/core": "^10.3 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-2.21", - "datestamp": "1723044656", - "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 Decker", - "homepage": "https://www.drupal.org/u/pookmish" - }, - { - "name": "Axel Rutz", - "homepage": "https://www.drupal.org/u/axelrutz" - } - ], - "description": "Adds CSS or JS to the page output based on configurable rules.", - "homepage": "http://drupal.org/project/asset_injector", - "support": { - "source": "https://git.drupalcode.org/project/asset_injector", - "issues": "https://www.drupal.org/project/issues/asset_injector" - } - }, - { - "name": "drupal/auto_entitylabel", - "version": "3.4.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/auto_entitylabel.git", - "reference": "8.x-3.4" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/auto_entitylabel-8.x-3.4.zip", - "reference": "8.x-3.4", - "shasum": "9b3d7bc8e450ae008b3f48fed0dd9dace03ddbb5" - }, - "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", - "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": "bforchhammer", - "homepage": "https://www.drupal.org/user/216396" - }, - { - "name": "colan", - "homepage": "https://www.drupal.org/user/58704" - }, - { - "name": "dqd", - "homepage": "https://www.drupal.org/user/1001934" - }, - { - "name": "japerry", - "homepage": "https://www.drupal.org/user/45640" - }, - { - "name": "mandclu", - "homepage": "https://www.drupal.org/user/52136" - }, - { - "name": "pravin ajaaz", - "homepage": "https://www.drupal.org/user/2910049" - }, - { - "name": "purushotam.rai", - "homepage": "https://www.drupal.org/user/3193859" - }, - { - "name": "renatog", - "homepage": "https://www.drupal.org/user/3326031" - }, - { - "name": "vladimiraus", - "homepage": "https://www.drupal.org/user/673120" - } - ], - "description": "Allows hiding of entity label fields and automatic label creation.", - "homepage": "https://www.drupal.org/project/auto_entitylabel", - "support": { - "source": "https://git.drupalcode.org/project/auto_entitylabel", - "issues": "https://www.drupal.org/project/issues/auto_entitylabel" - } - }, - { - "name": "drupal/automated_crop", - "version": "4.0.2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/automated_crop.git", - "reference": "4.0.2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/automated_crop-4.0.2.zip", - "reference": "4.0.2", - "shasum": "9126a9965c4159fc05c4c473aa311cf7f88a1418" - }, - "require": { - "drupal/core": "^10.1 || ^11", - "drupal/crop": "^2.2" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "4.0.2", - "datestamp": "1738584452", - "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": "ikphilip", - "homepage": "https://www.drupal.org/user/3549191" - }, - { - "name": "rosemaryreilman", - "homepage": "https://www.drupal.org/user/3356158" - }, - { - "name": "woprrr", - "homepage": "https://www.drupal.org/user/858604" - } - ], - "description": "Provides automated cropping tools API.", - "homepage": "https://www.drupal.org/project/automated_crop", - "support": { - "source": "https://git.drupalcode.org/project/automated_crop", - "issues": "https://www.drupal.org/project/issues/automated_crop" - } - }, - { - "name": "drupal/autosave_form", - "version": "1.10.0", - "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" - }, - "require": { - "drupal/core": "^9.5 || ^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.10", - "datestamp": "1738605622", - "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": "hchonov", - "homepage": "https://www.drupal.org/user/2901211" - } - ], - "description": "Adds autosave feature on forms.", - "homepage": "https://www.drupal.org/project/autosave_form", - "support": { - "source": "https://git.drupalcode.org/project/autosave_form" - } - }, - { - "name": "drupal/backup_migrate", - "version": "5.1.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/backup_migrate.git", - "reference": "5.1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/backup_migrate-5.1.0.zip", - "reference": "5.1.0", - "shasum": "bfc523c4d01f2f5dcbb2a612455b8f0a84d651b2" - }, - "require": { - "drupal/core": "^9.5 || ^10 || ^11" - }, - "suggest": { - "defuse/php-encryption": "Optional encryption of saved backups." - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "5.1.0", - "datestamp": "1732034636", - "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": "See contributors", - "homepage": "https://www.drupal.org/node/189065/committers", - "role": "Developer" - }, - { - "name": "damienmckenna", - "homepage": "https://www.drupal.org/user/108450" - }, - { - "name": "dgorton", - "homepage": "https://www.drupal.org/user/19044" - }, - { - "name": "ikit-claw", - "homepage": "https://www.drupal.org/user/3285813" - }, - { - "name": "ronan", - "homepage": "https://www.drupal.org/user/72815" - } - ], - "description": "Backup and Migrate Drupal Module", - "homepage": "https://www.drupal.org/project/backup_migrate", - "support": { - "source": "https://git.drupalcode.org/project/backup_migrate", - "issues": "https://www.drupal.org/project/issues/backup_migrate", - "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", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/block_class.git", - "reference": "4.0.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/block_class-4.0.1.zip", - "reference": "4.0.1", - "shasum": "46fa2437a8bd272a1f757a7cd957eb2747e28cdb" - }, - "require": { - "drupal/core": "^9 || ^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "4.0.1", - "datestamp": "1745427425", - "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": "Todd Nienkerk", - "homepage": "https://www.drupal.org/u/todd-nienkerk", - "role": "Maintainer" - }, - { - "name": "Renato Gonçalves (RenatoG)", - "homepage": "https://www.drupal.org/u/RenatoG", - "role": "Maintainer" - }, - { - "name": "Neslee Canil Pinto", - "homepage": "https://www.drupal.org/u/neslee-canil-pinto", - "role": "Maintainer" - }, - { - "name": "Aaron Stanush", - "homepage": "https://www.drupal.org/u/aaron-stanush", - "role": "Maintainer" - }, - { - "name": "David Suissa (DYdave)", - "homepage": "https://www.drupal.org/u/DYdave", - "role": "Maintainer" - }, - { - "name": "Four Kitchens", - "homepage": "https://www.drupal.org/user/358502", - "role": "Maintainer" - }, - { - "name": "berenddeboer", - "homepage": "https://www.drupal.org/u/berenddeboer", - "role": "Maintainer" - }, - { - "name": "elliotttf", - "homepage": "https://www.drupal.org/u/elliotttf", - "role": "Maintainer" - }, - { - "name": "Michal Minecki (mirzu)", - "homepage": "https://www.drupal.org/u/mirzu", - "role": "Maintainer" - }, - { - "name": "Patrick Coffey (pcoffey)", - "homepage": "https://www.drupal.org/u/pcoffey", - "role": "Maintainer" - }, - { - "name": "Taylor Smith (tsmith512)", - "homepage": "https://www.drupal.org/u/tsmith512", - "role": "Maintainer" - } - ], - "description": "Allows assigning classes to Blocks.", - "homepage": "https://www.drupal.org/project/block_class", + "description": "Adds menu links to the Admin Toolbar.", + "homepage": "http://drupal.org/project/admin_toolbar", "keywords": [ - "Drupal" + "Drupal", + "Toolbar" ], "support": { - "source": "https://git.drupalcode.org/project/block_class", - "issues": "https://www.drupal.org/project/issues/block_class", - "irc": "irc://irc.freenode.org/drupal-contribute" + "source": "http://cgit.drupalcode.org/admin_toolbar", + "issues": "https://www.drupal.org/project/issues/admin_toolbar" + } + }, + { + "name": "drupal/better_normalizers", + "version": "1.0.0-beta3", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/better_normalizers.git", + "reference": "8.x-1.0-beta3" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/better_normalizers-8.x-1.0-beta3.zip", + "reference": "8.x-1.0-beta3", + "shasum": "876c5f0006c3764677e1dbe6dec60a32d5a2d636" + }, + "require": { + "drupal/core": "^8.3" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-beta3", + "datestamp": "1493796785", + "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": "Sam152", + "homepage": "https://www.drupal.org/user/1485048" + }, + { + "name": "andypost", + "homepage": "https://www.drupal.org/user/118908" + }, + { + "name": "chr.fritsch", + "homepage": "https://www.drupal.org/user/2103716" + }, + { + "name": "larowlan", + "homepage": "https://www.drupal.org/user/395439" + } + ], + "description": "Improve the normalizers in core.", + "homepage": "https://www.drupal.org/project/better_normalizers", + "support": { + "source": "https://git.drupalcode.org/project/better_normalizers" } }, { "name": "drupal/block_visibility_groups", - "version": "2.0.4", + "version": "1.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/block_visibility_groups.git", - "reference": "2.0.4" + "reference": "8.x-1.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-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "3c42377fcf6b849e8509b4b993a750cbc1a90a9b" }, "require": { - "drupal/core": "^9 || ^10 || ^11" + "drupal/core": "*" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "2.0.4", - "datestamp": "1737112821", + "version": "8.x-1.3", + "datestamp": "1536509886", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2917,13 +2342,9 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ - { - "name": "damienmckenna", - "homepage": "https://www.drupal.org/user/108450" - }, { "name": "joelpittet", "homepage": "https://www.drupal.org/user/160302" @@ -2937,78 +2358,32 @@ "homepage": "https://www.drupal.org/user/240860" } ], - "description": "Block Visibility Groups", - "homepage": "https://www.drupal.org/project/block_visibility_groups", + "description": "My Awesome Module", + "homepage": "http://drupal.org/project/block_visibility_groups", "keywords": [ "Drupal" ], "support": { - "source": "https://git.drupalcode.org/project/block_visibility_groups", - "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" + "source": "http://cgit.drupalcode.org/block_visibility_groups", + "issues": "http://drupal.org/project/issues/block_visibility_groups" } }, { "name": "drupal/bulma", - "version": "dev-1.x", + "version": "1.0.0-beta3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/bulma.git", - "reference": "56483c2ff11e8f925af20a15b0cc7636fc74ad45" + "reference": "8.x-1.0-beta3" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/bulma-8.x-1.0-beta3.zip", + "reference": "8.x-1.0-beta3", + "shasum": "cfc76cffc10c198afb78a7699690b3f95c5ea950" }, "require": { - "drupal/core": "^9.2 || ^10" + "drupal/core": "~8.0" }, "type": "drupal-theme", "extra": { @@ -3016,11 +2391,11 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.1+13-dev", - "datestamp": "1721362481", + "version": "8.x-1.0-beta3", + "datestamp": "1566343985", "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." } } }, @@ -3030,20 +2405,8 @@ ], "authors": [ { - "name": "elkaro", - "homepage": "https://www.drupal.org/user/3577260" - }, - { - "name": "g4mbini", - "homepage": "https://www.drupal.org/user/2533498" - }, - { - "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": "valic", @@ -3051,361 +2414,40 @@ } ], "description": "Built to use Bulma, a modern CSS framework based on Flexbox.", - "homepage": "http://drupal.org/project/bulma", - "keywords": [ - "Drupal" - ], + "homepage": "https://www.drupal.org/project/bulma", "support": { - "source": "https://git.drupalcode.org/project/bulma", - "issues": "http://drupal.org/project/issues/bulma" - } - }, - { - "name": "drupal/bulma_components", - "version": "dev-1.0.x", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/bulma_components.git", - "reference": "bee8420ca8c906fbccc1bc3172e4ae9d3ac5e15d" - }, - "require": { - "drupal/component_schema": "*", - "drupal/components": "*", - "drupal/core": "^8.8 || ^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-1.0.x": "1.0.x-dev" - }, - "drupal": { - "version": "1.0.0-alpha6+21-dev", - "datestamp": "1687490397", - "security-coverage": { - "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "drutopia", - "homepage": "https://www.drupal.org/user/3763727" - }, - { - "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": "wolcen", - "homepage": "https://www.drupal.org/user/3099655" - } - ], - "description": "Provides a set of components to be used when theming with the Bulma CSS framework.", - "homepage": "https://www.drupal.org/project/bulma_components", - "support": { - "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", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/captcha.git", - "reference": "2.0.9" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/captcha-2.0.9.zip", - "reference": "2.0.9", - "shasum": "15b2ba18fab75ea88bfa8f75fb1be09f7cd52cbb" - }, - "require": { - "drupal/core": "^9.5 || ^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.9", - "datestamp": "1753701287", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - }, - "branch-alias": { - "dev-8.x-1.x": "1.x-dev" - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "anybody", - "homepage": "https://www.drupal.org/user/291091" - }, - { - "name": "elachlan", - "homepage": "https://www.drupal.org/user/1021502" - }, - { - "name": "grevil", - "homepage": "https://www.drupal.org/user/3668491" - }, - { - "name": "japerry", - "homepage": "https://www.drupal.org/user/45640" - }, - { - "name": "naveenvalecha", - "homepage": "https://www.drupal.org/user/2665733" - }, - { - "name": "podarok", - "homepage": "https://www.drupal.org/user/116002" - }, - { - "name": "robloach", - "homepage": "https://www.drupal.org/user/61114" - }, - { - "name": "thomas.frobieter", - "homepage": "https://www.drupal.org/user/409335" - }, - { - "name": "wundo", - "homepage": "https://www.drupal.org/user/25523" - } - ], - "description": "The CAPTCHA module provides this feature to virtually any user facing web form on a Drupal site.", - "homepage": "https://www.drupal.org/project/captcha", - "support": { - "source": "https://git.drupalcode.org/project/captcha", - "issues": "https://www.drupal.org/project/issues/captcha" - } - }, - { - "name": "drupal/charts", - "version": "5.1.6", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/charts.git", - "reference": "5.1.6" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/charts-5.1.6.zip", - "reference": "5.1.6", - "shasum": "0627d71bb86701dda800f4baf0986d7a81984ef1" - }, - "require": { - "drupal/core": "^10.3 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "5.1.6", - "datestamp": "1749676956", - "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": "Daniel Cothran (andileco)", - "homepage": "https://www.drupal.org/u/andileco", - "role": "Maintainer" - }, - { - "name": "Nia Kathoni (nikathone)", - "homepage": "https://www.drupal.org/u/nikathone", - "role": "Maintainer" - }, - { - "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" - } - ], - "description": "A charting API for Drupal that provides chart elements and integration with Views", - "homepage": "https://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" - } - }, - { - "name": "drupal/charts_chartjs", - "version": "5.1.6", - "require": { - "drupal/charts": "*", - "drupal/core": "^10.3 || ^11" - }, - "type": "metapackage", - "extra": { - "drupal": { - "version": "5.1.6", - "datestamp": "1749676956", - "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": "andileco", - "homepage": "https://www.drupal.org/user/2054544" - }, - { - "name": "nikathone", - "homepage": "https://www.drupal.org/user/2421800" - }, - { - "name": "quicksketch", - "homepage": "https://www.drupal.org/user/35821" - } - ], - "description": "Charts module integration with Chart.js.", - "homepage": "https://www.drupal.org/project/charts", - "support": { - "source": "https://git.drupalcode.org/project/charts" + "source": "https://git.drupalcode.org/project/bulma" } }, { "name": "drupal/checklistapi", - "version": "2.1.6", + "version": "1.10.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/checklistapi.git", - "reference": "2.1.6" + "reference": "8.x-1.10" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/checklistapi-2.1.6.zip", - "reference": "2.1.6", - "shasum": "64f439b7dd09336c4b32480edf1796cbc911d9b4" + "url": "https://ftp.drupal.org/files/projects/checklistapi-8.x-1.10.zip", + "reference": "8.x-1.10", + "shasum": "9f9e39613e50f649b0a0e06b7ec5d056c795c27b" }, "require": { - "drupal/core": "^9.3 || ^10 || ^11", - "php": ">=7.3.0" + "drupal/core": "~8.0" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "2.1.6", - "datestamp": "1713801912", + "version": "8.x-1.10", + "datestamp": "1553692687", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } - }, - "drush": { - "services": { - "drush.services.yml": "^10" - } } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -3414,55 +2456,41 @@ ], "authors": [ { - "name": "Travis Carden", - "homepage": "https://www.drupal.org/user/3550392", - "email": "travis.carden@gmail.com" - }, - { - "name": "rajeshreeputra", - "homepage": "https://www.drupal.org/user/3418561" - }, - { - "name": "traviscarden", + "name": "TravisCarden", "homepage": "https://www.drupal.org/user/236758" - }, - { - "name": "vladimiraus", - "homepage": "https://www.drupal.org/user/673120" } ], "description": "Provides an API for creating fillable, persistent checklists.", - "homepage": "http://drupal.org/project/checklistapi", + "homepage": "https://www.drupal.org/project/checklistapi", "support": { - "source": "https://git.drupalcode.org/project/checklistapi", - "issues": "https://www.drupal.org/project/issues/checklistapi" + "source": "https://git.drupalcode.org/project/checklistapi" } }, { - "name": "drupal/ckeditor", - "version": "1.0.2", + "name": "drupal/claro", + "version": "1.0.0-alpha4", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/ckeditor.git", - "reference": "1.0.2" + "url": "https://git.drupalcode.org/project/claro.git", + "reference": "8.x-1.0-alpha4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/ckeditor-1.0.2.zip", - "reference": "1.0.2", - "shasum": "fec2ca9ad852a00c7b9584cb6040dc860364c481" + "url": "https://ftp.drupal.org/files/projects/claro-8.x-1.0-alpha4.zip", + "reference": "8.x-1.0-alpha4", + "shasum": "151906eaef0fa2ade0cbffb2248565066544055a" }, "require": { - "drupal/core": "^9.4 || ^10" + "drupal/core": "~8.0" }, - "require-dev": { - "drupal/classy": "*" - }, - "type": "drupal-module", + "type": "drupal-theme", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "1.0.2", - "datestamp": "1695740655", + "version": "8.x-1.0-alpha4", + "datestamp": "1564677185", "security-coverage": { "status": "not-covered", "message": "Project has not opted into security advisory coverage!" @@ -3475,358 +2503,59 @@ ], "authors": [ { - "name": "hass", - "homepage": "https://www.drupal.org/user/85918" + "name": "balsama", + "homepage": "https://www.drupal.org/user/223087" }, { - "name": "jcisio", - "homepage": "https://www.drupal.org/user/210762" + "name": "ckrina", + "homepage": "https://www.drupal.org/user/1206650" }, { - "name": "Jorrit", - "homepage": "https://www.drupal.org/user/161217" + "name": "huzooka", + "homepage": "https://www.drupal.org/user/281301" }, { "name": "lauriii", "homepage": "https://www.drupal.org/user/1078742" }, { - "name": "magnus", - "homepage": "https://www.drupal.org/user/73919" - }, - { - "name": "nod_", - "homepage": "https://www.drupal.org/user/598310" - }, - { - "name": "p.wiaderny", - "homepage": "https://www.drupal.org/user/2956619" - }, - { - "name": "vokiel", - "homepage": "https://www.drupal.org/user/2793801" - }, - { - "name": "wim leers", - "homepage": "https://www.drupal.org/user/99777" - }, - { - "name": "wwalc", - "homepage": "https://www.drupal.org/user/184556" - }, - { - "name": "xjm", - "homepage": "https://www.drupal.org/user/65776" + "name": "saschaeggi", + "homepage": "https://www.drupal.org/user/1999056" } ], - "description": "WYSIWYG editing for rich text fields using CKEditor.", - "homepage": "https://www.drupal.org/project/ckeditor", + "description": "A clean, accessible and powerful Drupal administration theme.", + "homepage": "https://www.drupal.org/project/claro", "support": { - "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", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/ckeditorheight.git", - "reference": "8.x-1.9" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/ckeditorheight-8.x-1.9.zip", - "reference": "8.x-1.9", - "shasum": "28119489b4a21f39e5b31e482fdb9fdf05abf6e8" - }, - "require": { - "drupal/ckeditor": "^1.0", - "drupal/core": "^9.4 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.9", - "datestamp": "1687950399", - "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": "anruether", - "homepage": "https://www.drupal.org/user/894458" - }, - { - "name": "geek-merlin", - "homepage": "https://www.drupal.org/user/229048" - } - ], - "description": "Adjusts CKEditor height to field row setting until we have https://www.drupal.org/node/2788905.", - "homepage": "https://www.drupal.org/project/ckeditorheight", - "support": { - "source": "https://git.drupalcode.org/project/ckeditorheight" - } - }, - { - "name": "drupal/classitup", - "version": "1.1.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/classitup.git", - "reference": "8.x-1.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/classitup-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "309d2bfff59117422c41e8b81b1e8d92f6bd5781" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.1", - "datestamp": "1668119396", - "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": "mlncn", - "homepage": "https://www.drupal.org/user/64383" - } - ], - "description": "Class it up provides classes based on information Drupal knows about.", - "homepage": "https://www.drupal.org/project/classitup", - "keywords": [ - "CSS", - "classes", - "drupal", - "styling", - "theming" - ], - "support": { - "source": "https://git.drupalcode.org/project/classitup.git", - "issues": "https://www.drupal.org/project/issues/classitup" - } - }, - { - "name": "drupal/comment_notify", - "version": "1.4.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/comment_notify.git", - "reference": "8.x-1.4" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/comment_notify-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "9f98848f25c1a0db60a8d39f6bbe1d22f47cc2a9" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10", - "drupal/token": "^1.6" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.4", - "datestamp": "1679409019", - "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": "Greg Knaddison (greggles)", - "homepage": "https://www.drupal.org/u/greggles", - "role": "Maintainer" - }, - { - "name": "David Valdez (gnuget)", - "homepage": "https://www.drupal.org/u/gnuget", - "role": "Co-maintainer" - }, - { - "name": "greggles", - "homepage": "https://www.drupal.org/user/36762" - }, - { - "name": "stefanos.petrakis", - "homepage": "https://www.drupal.org/user/2573064" - } - ], - "description": "Comment follow-up e-mail notification for anonymous as well as registered users.", - "homepage": "https://drupal.org/project/comment_notify", - "support": { - "source": "https://git.drupalcode.org/project/comment_notify", - "issues": "https://drupal.org/project/issues/comment_notify", - "irc": "irc://irc.freenode.org/drupal-contribute" - } - }, - { - "name": "drupal/component_schema", - "version": "1.0.0-alpha7", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/component_schema.git", - "reference": "1.0.0-alpha7" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/component_schema-1.0.0-alpha7.zip", - "reference": "1.0.0-alpha7", - "shasum": "1f19ee533b8556fa6435d3bf390a76f48ce2805d" - }, - "require": { - "drupal/core": "^8.8 || ^9 || ^10" - }, - "require-dev": { - "drupal/ui_patterns": "*", - "drupal/ui_patterns_settings": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "1.0.0-alpha7", - "datestamp": "1701819925", - "security-coverage": { - "status": "not-covered", - "message": "Alpha releases are not covered by Drupal security advisories." - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "drutopia", - "homepage": "https://www.drupal.org/user/3763727" - }, - { - "name": "lelkneralfaro", - "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": "Provides schema support for components, including styleguide integration via the Styleguide module.", - "homepage": "https://www.drupal.org/project/component_schema", - "support": { - "source": "https://git.drupalcode.org/project/component_schema" + "source": "https://git.drupalcode.org/project/claro", + "docs": "https://www.drupal.org/docs/8/modules/claro", + "issues": "https://www.drupal.org/project/issues/claro" } }, { "name": "drupal/components", - "version": "3.1.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/components.git", - "reference": "3.1.0" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/components-3.1.0.zip", - "reference": "3.1.0", - "shasum": "a9d9f7517f54038d0d6fa68185d80e26d2ad1d8d" + "url": "https://ftp.drupal.org/files/projects/components-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "72af8ff1ca842556ee4b95335595c24703acdb75" }, "require": { - "drupal/core": "^10.2 || ^11" + "drupal/core": "~8.0" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "3.1.0", - "datestamp": "1725921122", + "version": "8.x-1.1", + "datestamp": "1556870881", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3840,49 +2569,41 @@ "authors": [ { "name": "JohnAlbin", - "homepage": "https://www.drupal.org/user/1036766", - "email": "virtually.johnalbin@gmail.com" - }, - { - "name": "johnalbin", "homepage": "https://www.drupal.org/user/32095" }, { - "name": "robloach", + "name": "RobLoach", "homepage": "https://www.drupal.org/user/61114" } ], - "description": "Registers folders of components defined by your theme or module as Twig namespaces", - "homepage": "https://drupal.org/project/components", + "description": "Registers “component libraries” defined in modules and themes with the Twig system", + "homepage": "https://www.drupal.org/project/components", "support": { "source": "https://git.drupalcode.org/project/components" } }, { "name": "drupal/config_actions", - "version": "1.4.0", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_actions.git", - "reference": "8.x-1.4" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_actions-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "28d952460b6e634e44339c9df4946570fc745110" + "reference": "026055919eb73f9e79aac2f2b9ec0fc85d195569" }, "require": { - "drupal/core": "^9.4 || ^10" + "drupal/core": "~8.0" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.4", - "datestamp": "1687387836", + "version": "8.x-1.1+1-dev", + "datestamp": "1556823781", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." } }, "drush": { @@ -3917,106 +2638,98 @@ "homepage": "https://www.drupal.org/project/config_actions", "support": { "source": "https://git.drupalcode.org/project/config_actions" - } + }, + "time": "2019-05-03T15:13:24+00:00" }, { "name": "drupal/config_actions_provider", - "version": "1.3.0", + "version": "1.0.0-rc1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_actions_provider.git", - "reference": "8.x-1.3" + "reference": "8.x-1.0-rc1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_actions_provider-8.x-1.3.zip", - "reference": "8.x-1.3", - "shasum": "af685e35f0d06a00c70facaee916eb2b86f8d97b" + "url": "https://ftp.drupal.org/files/projects/config_actions_provider-8.x-1.0-rc1.zip", + "reference": "8.x-1.0-rc1", + "shasum": "58465e27987b9f826dd767884a8e69193abbd854" }, "require": { "drupal/config_actions": "*", - "drupal/config_provider": "*", + "drupal/config_provider": "^2", "drupal/config_sync": "*", - "drupal/core": "^8.8 || ^9 || ^10" + "drupal/core": "~8.0" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.3", - "datestamp": "1692990328", + "version": "8.x-1.0-rc1", + "datestamp": "1550207284", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Project has not opted into security advisory coverage!" } } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { "name": "bircher", "homepage": "https://www.drupal.org/user/1344166" }, - { - "name": "drutopia", - "homepage": "https://www.drupal.org/user/3763727" - }, - { - "name": "mlncn", - "homepage": "https://www.drupal.org/user/64383" - }, { "name": "nedjo", "homepage": "https://www.drupal.org/user/4481" } ], - "description": "Apply config actions when applying configuration updates", - "homepage": "http://drupal.org/project/config_actions_provider", - "keywords": [ - "Drupal" - ], + "description": "Apply config actions when applying configuration updates.", + "homepage": "https://www.drupal.org/project/config_actions_provider", "support": { - "source": "http://cgit.drupalcode.org/config_actions_provider", - "issues": "http://drupal.org/project/issues/config_actions_provider" + "source": "https://git.drupalcode.org/project/config_actions_provider" } }, { "name": "drupal/config_distro", - "version": "2.1.0-alpha1", + "version": "1.0.0-alpha3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_distro.git", - "reference": "2.1.0-alpha1" + "reference": "8.x-1.0-alpha3" }, "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-8.x-1.0-alpha3.zip", + "reference": "8.x-1.0-alpha3", + "shasum": "c83fcd71c311102cb64f72b8f7ca727bddff2264" }, "require": { "drupal/config_filter": "*", - "drupal/core": "^10.3 || ^11" - }, - "require-dev": { - "drupal/config_distro_filter": "*", - "drupal/config_filter": "*", - "drush/drush": ">=11" - }, - "suggest": { - "drush/drush": ">=11" + "drupal/core": "*" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "2.1.0-alpha1", - "datestamp": "1743102880", + "version": "8.x-1.0-alpha3", + "datestamp": "1539071280", "security-coverage": { "status": "not-covered", "message": "Alpha releases are not covered by Drupal security advisories." } + }, + "drush": { + "services": { + "drush.services.yml": "^9" + } } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -4037,8 +2750,8 @@ "role": "Maintainer" }, { - "name": "joegraduate", - "homepage": "https://www.drupal.org/user/789384" + "name": "nedjo", + "homepage": "https://www.drupal.org/user/4481" }, { "name": "pescetti", @@ -4057,85 +2770,34 @@ "irc": "irc://irc.freenode.org/drupal-contribute" } }, - { - "name": "drupal/config_distro_filter", - "version": "2.1.0-alpha1", - "require": { - "drupal/config_distro": "*", - "drupal/config_filter": "*", - "drupal/core": "^10.3 || ^11" - }, - "type": "metapackage", - "extra": { - "drupal": { - "version": "2.1.0-alpha1", - "datestamp": "1743102880", - "security-coverage": { - "status": "not-covered", - "message": "Alpha releases are not covered by Drupal security advisories." - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "ademarco", - "homepage": "https://www.drupal.org/user/186696" - }, - { - "name": "bircher", - "homepage": "https://www.drupal.org/user/1344166" - }, - { - "name": "joegraduate", - "homepage": "https://www.drupal.org/user/789384" - }, - { - "name": "pescetti", - "homepage": "https://www.drupal.org/user/436244" - }, - { - "name": "pfrenssen", - "homepage": "https://www.drupal.org/user/382067" - } - ], - "description": "Bridge between Config Filter and Config Distro's use of Transform API to keep backwards compatibility.", - "homepage": "https://www.drupal.org/project/config_distro", - "support": { - "source": "https://git.drupalcode.org/project/config_distro" - } - }, { "name": "drupal/config_filter", - "version": "2.7.0", + "version": "1.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_filter.git", - "reference": "8.x-2.7" + "reference": "8.x-1.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-2.7.zip", - "reference": "8.x-2.7", - "shasum": "7fe7161b93c7e24c6db135f1cf82d144bef66e50" + "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.4.zip", + "reference": "8.x-1.4", + "shasum": "4b2b7f4dfc8358212f9e25f63dcc77cc2c1dcf6c" }, "require": { - "drupal/core": "^8.8 || ^9 || ^10 || ^11" - }, - "conflict": { - "drush/drush": "<10" + "drupal/core": "~8.0" }, "suggest": { "drupal/config_split": "Split site configuration for different environments." }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-2.7", - "datestamp": "1727472458", + "version": "8.x-1.4", + "datestamp": "1542184982", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4144,7 +2806,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { @@ -4172,112 +2834,39 @@ "configuration management" ], "support": { - "source": "https://git.drupalcode.org/project/config_filter", + "source": "http://cgit.drupalcode.org/config_filter", "issues": "https://www.drupal.org/project/issues/config_filter", - "slack": "https://drupal.slack.com/archives/C45342CDD" + "irc": "irc://irc.freenode.org/drupal-contribute" } }, { "name": "drupal/config_merge", - "version": "2.0.0-alpha2", + "version": "1.0.0-rc1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_merge.git", - "reference": "2.0.0-alpha2" + "reference": "8.x-1.0-rc1" }, "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-8.x-1.0-rc1.zip", + "reference": "8.x-1.0-rc1", + "shasum": "4881351041bf4b313247697adbeee4cedf0bc425" }, "require": { - "drupal/core": "^9.3 || ^10 || ^11", - "php": ">=8.0" - }, - "require-dev": { - "drupal/config_filter": "*" + "drupal/core": "~8.0" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "2.0.0-alpha2", - "datestamp": "1743089777", + "version": "8.x-1.0-rc1", + "datestamp": "1550188080", "security-coverage": { "status": "not-covered", - "message": "Alpha releases are not covered by Drupal security advisories." - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "name": "a.dmitriiev", - "homepage": "https://www.drupal.org/user/3235287" - }, - { - "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" - }, - { - "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/user/3608919" - } - ], - "description": "Enables three-way merges of configuration items. This is useful for safely merging configuration updates while retaining any customizations.", - "homepage": "http://drupal.org/project/config_merge", - "keywords": [ - "Drupal" - ], - "support": { - "source": "http://cgit.drupalcode.org/config_merge", - "issues": "http://drupal.org/project/issues/config_merge" - } - }, - { - "name": "drupal/config_normalizer", - "version": "1.0.0-beta2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/config_normalizer.git", - "reference": "8.x-1.0-beta2" - }, - "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" - }, - "require": { - "drupal/core": "^8.8 || ^9 || ^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.0-beta2", - "datestamp": "1743088690", - "security-coverage": { - "status": "not-covered", - "message": "Beta releases are not covered by Drupal security advisories." + "message": "Project has not opted into security advisory coverage!" } } }, @@ -4287,78 +2876,104 @@ ], "authors": [ { - "name": "Nedjo Rogers (nedjo)", - "homepage": "https://www.drupal.org/u/nedjo", - "role": "Original author" + "name": "bircher", + "homepage": "https://www.drupal.org/user/1344166" }, { - "name": "Fabian Bircher (bircher)", - "homepage": "https://www.drupal.org/u/bircher", - "role": "Maintainer" + "name": "mlncn", + "homepage": "https://www.drupal.org/user/64383" }, { - "name": "Benjamin Melançon (mlncn)", - "homepage": "https://www.drupal.org/u/mlncn", - "role": "Maintainer" + "name": "nedjo", + "homepage": "https://www.drupal.org/user/4481" + } + ], + "description": "Enables three-way merges of configuration items. This is useful for safely merging configuration updates while retaining any customizations.", + "homepage": "https://www.drupal.org/project/config_merge", + "support": { + "source": "https://git.drupalcode.org/project/config_merge" + } + }, + { + "name": "drupal/config_normalizer", + "version": "1.0.0-alpha5", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/config_normalizer.git", + "reference": "8.x-1.0-alpha5" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/config_normalizer-8.x-1.0-alpha5.zip", + "reference": "8.x-1.0-alpha5", + "shasum": "7ec9ca0c0e798007c7685b2633ac7600415e4a29" + }, + "require": { + "drupal/config_filter": "*", + "drupal/core": "~8.0" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-alpha5", + "datestamp": "1551264784", + "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": "axel.rutz", + "homepage": "https://www.drupal.org/user/229048" }, { - "name": "Joe Parsons (joegraduate)", - "homepage": "https://www.drupal.org/u/joegraduate", - "role": "Maintainer" - }, - { - "name": "tadean", - "homepage": "https://www.drupal.org/u/tadean", - "role": "Maintainer" - }, - { - "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": "nedjo", + "homepage": "https://www.drupal.org/user/4481" } ], "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.0.0-beta2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_perms.git", - "reference": "8.x-2.3" + "reference": "8.x-2.0-beta2" }, "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.0-beta2.zip", + "reference": "8.x-2.0-beta2", + "shasum": "d3ed7aa2602cc9e636c9943f6356f6fd46e665fb" }, "require": { - "drupal/core": "^8 || ^9 || ^10 || ^11" + "drupal/core": "~8.0" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-2.x": "2.x-dev" + }, "drupal": { - "version": "8.x-2.3", - "datestamp": "1746157140", + "version": "8.x-2.0-beta2", + "datestamp": "1551141180", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Beta releases are not covered by Drupal security advisories." } } }, @@ -4367,30 +2982,18 @@ "GPL-2.0+" ], "authors": [ - { - "name": "benellefimostfa", - "homepage": "https://www.drupal.org/user/3092403" - }, { "name": "Docc", "homepage": "https://www.drupal.org/user/310132" }, { - "name": "elkaro", - "homepage": "https://www.drupal.org/user/3577260" + "name": "benellefimostfa", + "homepage": "https://www.drupal.org/user/3092403" }, { "name": "gnuget", "homepage": "https://www.drupal.org/user/992990" }, - { - "name": "kristen pol", - "homepage": "https://www.drupal.org/user/8389" - }, - { - "name": "megakeegman", - "homepage": "https://www.drupal.org/user/3620027" - }, { "name": "mlncn", "homepage": "https://www.drupal.org/user/64383" @@ -4412,29 +3015,32 @@ }, { "name": "drupal/config_provider", - "version": "3.0.0-alpha2", + "version": "2.0.0-rc1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_provider.git", - "reference": "3.0.0-alpha2" + "reference": "8.x-2.0-rc1" }, "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-8.x-2.0-rc1.zip", + "reference": "8.x-2.0-rc1", + "shasum": "59405d2d56c9c450d03fc7c615008c694b12bccf" }, "require": { - "drupal/core": "^9.3 || ^10 || ^11" + "drupal/core": "*" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-2.x": "2.x-dev" + }, "drupal": { - "version": "3.0.0-alpha2", - "datestamp": "1743107961", + "version": "8.x-2.0-rc1", + "datestamp": "1550290687", "security-coverage": { "status": "not-covered", - "message": "Alpha releases are not covered by Drupal security advisories." + "message": "Project has not opted into security advisory coverage!" } } }, @@ -4443,203 +3049,13 @@ "GPL-2.0-or-later" ], "authors": [ - { - "name": "Nedjo Rogers (nedjo)", - "homepage": "https://www.drupal.org/u/nedjo", - "role": "Original author" - }, - { - "name": "Fabian Bircher (bircher)", - "homepage": "https://www.drupal.org/u/bircher", - "role": "Maintainer" - }, - { - "name": "Pieter Frenssen (pfrenssen)", - "homepage": "https://www.drupal.org/u/pfrenssen", - "role": "Maintainer" - }, - { - "name": "Keegan Rankin (megakeegman)", - "homepage": "https://www.drupal.org/u/megakeegman", - "role": "Maintainer" - }, - { - "name": "Benjamin Melançon (mlncn)", - "homepage": "https://www.drupal.org/u/mlncn", - "role": "Maintainer" - }, - { - "name": "Joe Parsons (joegraduate)", - "homepage": "https://www.drupal.org/u/joegraduate", - "role": "Maintainer" - }, - { - "name": "tadean", - "homepage": "https://www.drupal.org/u/tadean", - "role": "Maintainer" - }, - { - "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" - } - ], - "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" - } - }, - { - "name": "drupal/config_snapshot", - "version": "2.0.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/config_snapshot.git", - "reference": "2.0.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_snapshot-2.0.0.zip", - "reference": "2.0.0", - "shasum": "183e6f293e7ef142290c5e69cbca986895e12a2d" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.0", - "datestamp": "1736287398", - "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": "a.dmitriiev", - "homepage": "https://www.drupal.org/user/3235287" - }, - { - "name": "geek-merlin", - "homepage": "https://www.drupal.org/user/229048" - }, - { - "name": "gnuget", - "homepage": "https://www.drupal.org/user/992990" - }, - { - "name": "joegraduate", - "homepage": "https://www.drupal.org/user/789384" - }, - { - "name": "mlncn", - "homepage": "https://www.drupal.org/user/64383" - }, - { - "name": "nedjo", - "homepage": "https://www.drupal.org/user/4481" - }, - { - "name": "tadean", - "homepage": "https://www.drupal.org/user/3608919" - }, - { - "name": "uarizona", - "homepage": "https://www.drupal.org/user/3763238" - } - ], - "description": "Manages snapshots of configuration as provided by modules and themes.", - "homepage": "https://www.drupal.org/project/config_snapshot", - "support": { - "source": "https://git.drupalcode.org/project/config_snapshot" - } - }, - { - "name": "drupal/config_sync", - "version": "3.0.0-alpha4", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/config_sync.git", - "reference": "3.0.0-alpha4" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_sync-3.0.0-alpha4.zip", - "reference": "3.0.0-alpha4", - "shasum": "d49536d18be2162b2069c50c444a6745d5c9e8d7" - }, - "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" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "3.0.0-alpha4", - "datestamp": "1743110767", - "security-coverage": { - "status": "not-covered", - "message": "Alpha releases are not covered by Drupal security advisories." - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "Nedjo Rogers (nedjo)", - "homepage": "https://www.drupal.org/u/nedjo", - "email": "nedjo@4481.no-reply.drupal.org", - "role": "Maintainer" - }, { "name": "bircher", "homepage": "https://www.drupal.org/user/1344166" }, { - "name": "flocondetoile", - "homepage": "https://www.drupal.org/user/2006064" - }, - { - "name": "geek-merlin", - "homepage": "https://www.drupal.org/user/229048" - }, - { - "name": "joegraduate", - "homepage": "https://www.drupal.org/user/789384" + "name": "gnuget", + "homepage": "https://www.drupal.org/user/992990" }, { "name": "mlncn", @@ -4652,48 +3068,42 @@ { "name": "pfrenssen", "homepage": "https://www.drupal.org/user/382067" - }, - { - "name": "tadean", - "homepage": "https://www.drupal.org/user/3608919" - }, - { - "name": "uarizona", - "homepage": "https://www.drupal.org/user/3763238" } ], - "description": "Synchronize your site with updated configuration provided by modules and themes.", - "homepage": "https://www.drupal.org/project/config_sync", + "description": "Enables provision of configuration by extensions.", + "homepage": "https://www.drupal.org/project/config_provider", "support": { - "source": "https://git.drupalcode.org/project/config_sync", - "issues": "https://drupal.org/project/issues/config_sync" + "source": "https://git.drupalcode.org/project/config_provider" } }, { - "name": "drupal/config_update", - "version": "2.0.0-alpha4", + "name": "drupal/config_snapshot", + "version": "1.0.0-rc1", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/config_update.git", - "reference": "2.0.0-alpha4" + "url": "https://git.drupalcode.org/project/config_snapshot.git", + "reference": "8.x-1.0-rc1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_update-2.0.0-alpha4.zip", - "reference": "2.0.0-alpha4", - "shasum": "d8ea528b0b3e24918356bb72bef61408f650aa8e" + "url": "https://ftp.drupal.org/files/projects/config_snapshot-8.x-1.0-rc1.zip", + "reference": "8.x-1.0-rc1", + "shasum": "2508809dea54bd0d8dfc86f4974324509b95dc13" }, "require": { - "drupal/core": "^9.4 || ^10 || ^11" + "drupal/core": "*" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "2.0.0-alpha4", - "datestamp": "1724596931", + "version": "8.x-1.0-rc1", + "datestamp": "1550294584", "security-coverage": { "status": "not-covered", - "message": "Alpha releases are not covered by Drupal security advisories." + "message": "Project has not opted into security advisory coverage!" } } }, @@ -4703,160 +3113,180 @@ ], "authors": [ { - "name": "codebymikey", - "homepage": "https://www.drupal.org/user/3573206" + "name": "gnuget", + "homepage": "https://www.drupal.org/user/992990" }, { - "name": "pasqualle", - "homepage": "https://www.drupal.org/user/80733" + "name": "mlncn", + "homepage": "https://www.drupal.org/user/64383" }, { - "name": "vishalkhode", - "homepage": "https://www.drupal.org/user/2439156" + "name": "nedjo", + "homepage": "https://www.drupal.org/user/4481" } ], - "description": "Provides basic revert and update functionality for other modules.", + "description": "Manages snapshots of configuration as provided by modules and themes.", + "homepage": "https://www.drupal.org/project/config_snapshot", + "support": { + "source": "https://git.drupalcode.org/project/config_snapshot" + } + }, + { + "name": "drupal/config_sync", + "version": "2.0.0-beta5", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/config_sync.git", + "reference": "8.x-2.0-beta5" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/config_sync-8.x-2.0-beta5.zip", + "reference": "8.x-2.0-beta5", + "shasum": "76a922ca354cb18cdfd57d427bdd91721630e48b" + }, + "require": { + "drupal/config_distro": "^1.0-alpha3", + "drupal/config_filter": "^1.3", + "drupal/config_merge": "^1.0-alpha2", + "drupal/config_normalizer": "^1.0-alpha3", + "drupal/config_provider": "^2.0-alpha6", + "drupal/config_snapshot": "^1.0-alpha6", + "drupal/config_update": "^1.5", + "drupal/core": "^8.3", + "php": ">=5.6", + "symfony/yaml": "~2.7.14|~2.8.7|~3.0.7|^3.1.1" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-2.x": "2.x-dev" + }, + "drupal": { + "version": "8.x-2.0-beta5", + "datestamp": "1550290984", + "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": "Nedjo Rogers (nedjo)", + "homepage": "https://www.drupal.org/u/nedjo", + "email": "nedjo@4481.no-reply.drupal.org", + "role": "Maintainer" + }, + { + "name": "flocondetoile", + "homepage": "https://www.drupal.org/user/2006064" + }, + { + "name": "mlncn", + "homepage": "https://www.drupal.org/user/64383" + }, + { + "name": "mtift", + "homepage": "https://www.drupal.org/user/751908" + }, + { + "name": "nedjo", + "homepage": "https://www.drupal.org/user/4481" + }, + { + "name": "pfrenssen", + "homepage": "https://www.drupal.org/user/382067" + } + ], + "description": "Synchronize your site with updated configuration provided by modules and themes.", + "homepage": "https://www.drupal.org/project/config_sync", + "support": { + "source": "https://cgit.drupalcode.org/config_sync", + "issues": "https://drupal.org/project/issues/config_sync", + "irc": "irc://irc.freenode.org/drupal-contribute" + } + }, + { + "name": "drupal/config_update", + "version": "1.6.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/config_update.git", + "reference": "8.x-1.6" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.6.zip", + "reference": "8.x-1.6", + "shasum": "04bbd0fc440017fd0129dceae240a8bba409a450" + }, + "require": { + "drupal/core": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.6", + "datestamp": "1545090480", + "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": "jhodgdon", + "homepage": "https://www.drupal.org/user/155601" + }, + { + "name": "nedjo", + "homepage": "https://www.drupal.org/user/4481" + } + ], + "description": "Provides basic revert and update functionality for other modules", "homepage": "https://www.drupal.org/project/config_update", "support": { "source": "https://git.drupalcode.org/project/config_update" } }, - { - "name": "drupal/content_lock", - "version": "2.4.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/content_lock.git", - "reference": "8.x-2.4" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-2.4.zip", - "reference": "8.x-2.4", - "shasum": "99d149e530555aae12b44292efe5887d373e862e" - }, - "require": { - "drupal/core": "^9.0 || ^10.0" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-2.4", - "datestamp": "1715783058", - "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": "alexpott", - "homepage": "https://www.drupal.org/user/157725" - }, - { - "name": "astonvictor", - "homepage": "https://www.drupal.org/user/3466615" - }, - { - "name": "chr.fritsch", - "homepage": "https://www.drupal.org/user/2103716" - }, - { - "name": "daniel.bosen", - "homepage": "https://www.drupal.org/user/404865" - }, - { - "name": "ergonlogic", - "homepage": "https://www.drupal.org/user/368613" - }, - { - "name": "mfb", - "homepage": "https://www.drupal.org/user/12302" - }, - { - "name": "volkerk", - "homepage": "https://www.drupal.org/user/57527" - } - ], - "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.", - "homepage": "https://www.drupal.org/project/content_lock", - "support": { - "source": "https://git.drupalcode.org/project/content_lock" - } - }, - { - "name": "drupal/context_stack", - "version": "1.1.2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/context_stack.git", - "reference": "1.1.2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/context_stack-1.1.2.zip", - "reference": "1.1.2", - "shasum": "aacf2bc38a09393e51a03567b459adb67225d11a" - }, - "require": { - "drupal/core": "^9 || ^10", - "php": ">=7.4" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "1.1.2", - "datestamp": "1676647866", - "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": "mxh", - "homepage": "https://www.drupal.org/user/1124384" - } - ], - "description": "Context Stack is a module for Drupal, which provides a distinct place for holding context values.", - "homepage": "https://www.drupal.org/project/context_stack", - "support": { - "source": "https://drupal.org/project/context_stack", - "issues": "https://drupal.org/project/issues/context_stack" - } - }, { "name": "drupal/convert_bundles", - "version": "2.0.0-beta4", + "version": "1.0.0-alpha4", "source": { "type": "git", "url": "https://git.drupalcode.org/project/convert_bundles.git", - "reference": "2.0.0-beta4" + "reference": "8.x-1.0-alpha4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/convert_bundles-2.0.0-beta4.zip", - "reference": "2.0.0-beta4", - "shasum": "5f4f02778344bbe2e2e3a3f1c96bc79e8b2474a7" + "url": "https://ftp.drupal.org/files/projects/convert_bundles-8.x-1.0-alpha4.zip", + "reference": "8.x-1.0-alpha4", + "shasum": "4e6f3ded807f371dd02aa3f18ad1e0225d251d8d" }, "require": { - "drupal/core": "^9 || ^10" + "drupal/core": "*" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "2.0.0-beta4", - "datestamp": "1693891734", + "version": "8.x-1.0-alpha4", + "datestamp": "1559920084", "security-coverage": { "status": "not-covered", "message": "Project has not opted into security advisory coverage!" @@ -4871,10 +3301,6 @@ { "name": "el1_1el", "homepage": "https://www.drupal.org/user/1795292" - }, - { - "name": "joseph.olstad", - "homepage": "https://www.drupal.org/user/1321830" } ], "description": "Convert entity bundles from one value to another", @@ -4885,24 +3311,25 @@ }, { "name": "drupal/core", - "version": "10.5.1", + "version": "8.7.6", "source": { "type": "git", "url": "https://github.com/drupal/core.git", - "reference": "551442fec1db69cf6eedb1601a348d8a6268060f" + "reference": "39164616332832e1456199d32fc3ed11562f4721" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core/zipball/551442fec1db69cf6eedb1601a348d8a6268060f", - "reference": "551442fec1db69cf6eedb1601a348d8a6268060f", + "url": "https://api.github.com/repos/drupal/core/zipball/39164616332832e1456199d32fc3ed11562f4721", + "reference": "39164616332832e1456199d32fc3ed11562f4721", "shasum": "" }, "require": { - "asm89/stack-cors": "^2.3", - "composer-runtime-api": "^2.1", - "composer/semver": "^3.3", - "doctrine/annotations": "^1.14", - "egulias/email-validator": "^3.2.1|^4.0", + "asm89/stack-cors": "^1.1", + "composer/semver": "^1.0", + "doctrine/annotations": "^1.2", + "doctrine/common": "^2.5", + "easyrdf/easyrdf": "^0.9", + "egulias/email-validator": "^2.0", "ext-date": "*", "ext-dom": "*", "ext-filter": "*", @@ -4916,38 +3343,61 @@ "ext-spl": "*", "ext-tokenizer": "*", "ext-xml": "*", - "guzzlehttp/guzzle": "^7.5", - "guzzlehttp/psr7": "^2.4.5", - "masterminds/html5": "^2.7", - "mck89/peast": "^1.14", - "pear/archive_tar": "^1.4.14", - "php": ">=8.1.0", - "psr/log": "^3.0", - "sebastian/diff": "^4", - "symfony/console": "^6.4", - "symfony/dependency-injection": "^6.4", - "symfony/event-dispatcher": "^6.4", - "symfony/filesystem": "^6.4", - "symfony/finder": "^6.4", - "symfony/http-foundation": "^6.4", - "symfony/http-kernel": "^6.4", - "symfony/mailer": "^6.4", - "symfony/mime": "^6.4", - "symfony/polyfill-iconv": "^1.26", - "symfony/process": "^6.4", - "symfony/psr-http-message-bridge": "^2.1|^6.4", - "symfony/routing": "^6.4", - "symfony/serializer": "^6.4", - "symfony/validator": "^6.4", - "symfony/yaml": "^6.4", - "twig/twig": "^3.15.0" + "guzzlehttp/guzzle": "^6.2.1", + "masterminds/html5": "^2.1", + "paragonie/random_compat": "^1.0|^2.0|^9.99.99", + "pear/archive_tar": "^1.4", + "php": "^5.5.9|>=7.0.8", + "stack/builder": "^1.0", + "symfony-cmf/routing": "^1.4", + "symfony/class-loader": "~3.4.0", + "symfony/console": "~3.4.0", + "symfony/dependency-injection": "~3.4.26", + "symfony/event-dispatcher": "~3.4.0", + "symfony/http-foundation": "~3.4.27", + "symfony/http-kernel": "~3.4.14", + "symfony/polyfill-iconv": "^1.0", + "symfony/process": "~3.4.0", + "symfony/psr-http-message-bridge": "^1.0", + "symfony/routing": "~3.4.0", + "symfony/serializer": "~3.4.0", + "symfony/translation": "~3.4.0", + "symfony/validator": "~3.4.0", + "symfony/yaml": "~3.4.5", + "twig/twig": "^1.38.2", + "typo3/phar-stream-wrapper": "^2.1.1", + "zendframework/zend-diactoros": "^1.1", + "zendframework/zend-feed": "^2.4" }, "conflict": { - "drush/drush": "<12.4.3" + "drush/drush": "<8.1.10" }, "replace": { + "drupal/action": "self.version", + "drupal/aggregator": "self.version", + "drupal/automated_cron": "self.version", + "drupal/ban": "self.version", + "drupal/bartik": "self.version", + "drupal/basic_auth": "self.version", + "drupal/big_pipe": "self.version", + "drupal/block": "self.version", + "drupal/block_content": "self.version", + "drupal/block_place": "self.version", + "drupal/book": "self.version", + "drupal/breakpoint": "self.version", + "drupal/ckeditor": "self.version", + "drupal/classy": "self.version", + "drupal/color": "self.version", + "drupal/comment": "self.version", + "drupal/config": "self.version", + "drupal/config_translation": "self.version", + "drupal/contact": "self.version", + "drupal/content_moderation": "self.version", + "drupal/content_translation": "self.version", + "drupal/contextual": "self.version", "drupal/core-annotation": "self.version", "drupal/core-assertion": "self.version", + "drupal/core-bridge": "self.version", "drupal/core-class-finder": "self.version", "drupal/core-datetime": "self.version", "drupal/core-dependency-injection": "self.version", @@ -4955,9 +3405,7 @@ "drupal/core-discovery": "self.version", "drupal/core-event-dispatcher": "self.version", "drupal/core-file-cache": "self.version", - "drupal/core-file-security": "self.version", "drupal/core-filesystem": "self.version", - "drupal/core-front-matter": "self.version", "drupal/core-gettext": "self.version", "drupal/core-graph": "self.version", "drupal/core-http-foundation": "self.version", @@ -4969,72 +3417,136 @@ "drupal/core-transliteration": "self.version", "drupal/core-utility": "self.version", "drupal/core-uuid": "self.version", - "drupal/core-version": "self.version" + "drupal/core-version": "self.version", + "drupal/datetime": "self.version", + "drupal/datetime_range": "self.version", + "drupal/dblog": "self.version", + "drupal/dynamic_page_cache": "self.version", + "drupal/editor": "self.version", + "drupal/entity_reference": "self.version", + "drupal/field": "self.version", + "drupal/field_layout": "self.version", + "drupal/field_ui": "self.version", + "drupal/file": "self.version", + "drupal/filter": "self.version", + "drupal/forum": "self.version", + "drupal/hal": "self.version", + "drupal/help": "self.version", + "drupal/history": "self.version", + "drupal/image": "self.version", + "drupal/inline_form_errors": "self.version", + "drupal/jsonapi": "self.version", + "drupal/language": "self.version", + "drupal/layout_builder": "self.version", + "drupal/layout_discovery": "self.version", + "drupal/link": "self.version", + "drupal/locale": "self.version", + "drupal/media": "self.version", + "drupal/media_library": "self.version", + "drupal/menu_link_content": "self.version", + "drupal/menu_ui": "self.version", + "drupal/migrate": "self.version", + "drupal/migrate_drupal": "self.version", + "drupal/migrate_drupal_multilingual": "self.version", + "drupal/migrate_drupal_ui": "self.version", + "drupal/minimal": "self.version", + "drupal/node": "self.version", + "drupal/options": "self.version", + "drupal/page_cache": "self.version", + "drupal/path": "self.version", + "drupal/quickedit": "self.version", + "drupal/rdf": "self.version", + "drupal/responsive_image": "self.version", + "drupal/rest": "self.version", + "drupal/search": "self.version", + "drupal/serialization": "self.version", + "drupal/settings_tray": "self.version", + "drupal/seven": "self.version", + "drupal/shortcut": "self.version", + "drupal/simpletest": "self.version", + "drupal/standard": "self.version", + "drupal/stark": "self.version", + "drupal/statistics": "self.version", + "drupal/syslog": "self.version", + "drupal/system": "self.version", + "drupal/taxonomy": "self.version", + "drupal/telephone": "self.version", + "drupal/text": "self.version", + "drupal/toolbar": "self.version", + "drupal/tour": "self.version", + "drupal/tracker": "self.version", + "drupal/update": "self.version", + "drupal/user": "self.version", + "drupal/views": "self.version", + "drupal/views_ui": "self.version", + "drupal/workflows": "self.version", + "drupal/workspaces": "self.version" }, - "suggest": { - "ext-zip": "Needed to extend the plugin.manager.archiver service capability with the handling of files in the ZIP format." + "require-dev": { + "behat/mink": "1.7.x-dev", + "behat/mink-goutte-driver": "^1.2", + "behat/mink-selenium2-driver": "1.3.x-dev", + "drupal/coder": "^8.3.1", + "jcalderonzumba/gastonjs": "^1.0.2", + "jcalderonzumba/mink-phantomjs-driver": "^0.3.1", + "justinrainbow/json-schema": "^5.2", + "mikey179/vfsstream": "^1.2", + "phpspec/prophecy": "^1.7", + "phpunit/phpunit": "^4.8.35 || ^6.5", + "symfony/css-selector": "^3.4.0", + "symfony/debug": "^3.4.0", + "symfony/phpunit-bridge": "^3.4.3" }, "type": "drupal-core", "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", - "[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]/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]/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/default/default.services.yml": "assets/scaffold/files/default.services.yml", - "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php" - } + "merge-plugin": { + "require": [ + "core/lib/Drupal/Component/Annotation/composer.json", + "core/lib/Drupal/Component/Assertion/composer.json", + "core/lib/Drupal/Component/Bridge/composer.json", + "core/lib/Drupal/Component/ClassFinder/composer.json", + "core/lib/Drupal/Component/Datetime/composer.json", + "core/lib/Drupal/Component/DependencyInjection/composer.json", + "core/lib/Drupal/Component/Diff/composer.json", + "core/lib/Drupal/Component/Discovery/composer.json", + "core/lib/Drupal/Component/EventDispatcher/composer.json", + "core/lib/Drupal/Component/FileCache/composer.json", + "core/lib/Drupal/Component/FileSystem/composer.json", + "core/lib/Drupal/Component/Gettext/composer.json", + "core/lib/Drupal/Component/Graph/composer.json", + "core/lib/Drupal/Component/HttpFoundation/composer.json", + "core/lib/Drupal/Component/PhpStorage/composer.json", + "core/lib/Drupal/Component/Plugin/composer.json", + "core/lib/Drupal/Component/ProxyBuilder/composer.json", + "core/lib/Drupal/Component/Render/composer.json", + "core/lib/Drupal/Component/Serialization/composer.json", + "core/lib/Drupal/Component/Transliteration/composer.json", + "core/lib/Drupal/Component/Utility/composer.json", + "core/lib/Drupal/Component/Uuid/composer.json", + "core/lib/Drupal/Component/Version/composer.json" + ], + "recurse": false, + "replace": false, + "merge-extra": false + }, + "patches_applied": { + "Allow an install hook in profiles installing from configuration": "https://www.drupal.org/files/issues/2018-11-27/2982052-22.patch" } }, "autoload": { - "files": [ - "includes/bootstrap.inc" - ], "psr-4": { "Drupal\\Core\\": "lib/Drupal/Core", - "Drupal\\Component\\": "lib/Drupal/Component" + "Drupal\\Component\\": "lib/Drupal/Component", + "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver" }, "classmap": [ "lib/Drupal.php", - "lib/Drupal/Component/DependencyInjection/Container.php", - "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php", - "lib/Drupal/Component/FileCache/FileCacheFactory.php", "lib/Drupal/Component/Utility/Timer.php", "lib/Drupal/Component/Utility/Unicode.php", - "lib/Drupal/Core/Cache/Cache.php", - "lib/Drupal/Core/Cache/CacheBackendInterface.php", - "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php", - "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php", - "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php", - "lib/Drupal/Core/Cache/DatabaseBackend.php", - "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php", - "lib/Drupal/Core/Database/Connection.php", "lib/Drupal/Core/Database/Database.php", - "lib/Drupal/Core/Database/StatementInterface.php", - "lib/Drupal/Core/DependencyInjection/Container.php", "lib/Drupal/Core/DrupalKernel.php", "lib/Drupal/Core/DrupalKernelInterface.php", - "lib/Drupal/Core/Installer/InstallerRedirectTrait.php", - "lib/Drupal/Core/Site/Settings.php", - "lib/Drupal/Component/Datetime/Time.php" + "lib/Drupal/Core/Site/Settings.php" ] }, "notification-url": "https://packagist.org/downloads/", @@ -5042,168 +3554,33 @@ "GPL-2.0-or-later" ], "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" - }, - "time": "2025-06-26T14:05:15+00:00" - }, - { - "name": "drupal/core-composer-scaffold", - "version": "10.5.1", - "source": { - "type": "git", - "url": "https://github.com/drupal/core-composer-scaffold.git", - "reference": "db17b59620ce1c142a34dc017d9e696ce4771e55" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/db17b59620ce1c142a34dc017d9e696ce4771e55", - "reference": "db17b59620ce1c142a34dc017d9e696ce4771e55", - "shasum": "" - }, - "require": { - "composer-plugin-api": "^2", - "php": ">=7.3.0" - }, - "conflict": { - "drupal-composer/drupal-scaffold": "*" - }, - "require-dev": { - "composer/composer": "^1.8@stable" - }, - "type": "composer-plugin", - "extra": { - "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin", - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Drupal\\Composer\\Plugin\\Scaffold\\": "" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "description": "A flexible Composer project scaffold builder.", - "homepage": "https://www.drupal.org/project/drupal", - "keywords": [ - "drupal" - ], - "support": { - "source": "https://github.com/drupal/core-composer-scaffold/tree/10.5.1" - }, - "time": "2024-08-22T14:31:30+00:00" - }, - { - "name": "drupal/core-recommended", - "version": "10.5.1", - "source": { - "type": "git", - "url": "https://github.com/drupal/core-recommended.git", - "reference": "60b76ba11c2ae9088283a1e6963b929ca976f4fc" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/drupal/core-recommended/zipball/60b76ba11c2ae9088283a1e6963b929ca976f4fc", - "reference": "60b76ba11c2ae9088283a1e6963b929ca976f4fc", - "shasum": "" - }, - "require": { - "asm89/stack-cors": "~v2.3.0", - "composer/semver": "~3.4.3", - "doctrine/annotations": "~1.14.4", - "doctrine/deprecations": "~1.1.5", - "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", - "masterminds/html5": "~2.9.0", - "mck89/peast": "~v1.17.0", - "pear/archive_tar": "~1.5.0", - "pear/console_getopt": "~v1.4.3", - "pear/pear-core-minimal": "~v1.10.16", - "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", - "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" - }, - "conflict": { - "webflo/drupal-core-strict": "*" - }, - "type": "metapackage", - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "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" - }, - "time": "2025-06-26T14:05:15+00:00" + "time": "2019-08-07T19:19:20+00:00" }, { "name": "drupal/crop", - "version": "2.4.0", + "version": "1.5.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/crop.git", - "reference": "8.x-2.4" + "reference": "8.x-1.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/crop-8.x-2.4.zip", - "reference": "8.x-2.4", - "shasum": "be11fad0abf1d53544d35cb4ca6cedd8e91d2542" + "url": "https://ftp.drupal.org/files/projects/crop-8.x-1.5.zip", + "reference": "8.x-1.5", + "shasum": "bb275293508cb3988ca6ab766dc1f6ecc22cc03d" }, "require": { - "drupal/core": "^9.3 || ^10 || ^11" + "drupal/core": "*" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-2.4", - "datestamp": "1720455738", + "version": "8.x-1.5", + "datestamp": "1516357085", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5212,17 +3589,13 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { "name": "Drupal Media Team", "homepage": "https://www.drupal.org/user/3260690" }, - { - "name": "phenaproxima", - "homepage": "https://www.drupal.org/user/205645" - }, { "name": "slashrsm", "homepage": "https://www.drupal.org/user/744628" @@ -5241,30 +3614,32 @@ }, { "name": "drupal/cshs", - "version": "4.0.3", + "version": "1.0.0-beta4", "source": { "type": "git", "url": "https://git.drupalcode.org/project/cshs.git", - "reference": "4.0.3" + "reference": "8.x-1.0-beta4" }, "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-8.x-1.0-beta4.zip", + "reference": "8.x-1.0-beta4", + "shasum": "332c4cf5b70644ab65b338706186e390256a034e" }, "require": { - "drupal/core": "^10.3 || ^11", - "php": ">=8.0" + "drupal/core": "*" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "4.0.3", - "datestamp": "1732597582", + "version": "8.x-1.0-beta4", + "datestamp": "1497737343", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Beta releases are not covered by Drupal security advisories." } } }, @@ -5274,120 +3649,58 @@ ], "authors": [ { - "name": "Walter Jenner", - "homepage": "https://drupal.org/u/valderama" + "name": "BR0kEN", + "homepage": "https://www.drupal.org/user/2802285" }, { - "name": "Sergii Bondarenko", - "homepage": "https://drupal.org/u/BR0kEN", - "email": "sb@firstvector.org" + "name": "purushotam.rai", + "homepage": "https://www.drupal.org/user/3193859" }, { - "name": "Daneel Cruz", - "homepage": "https://drupal.org/u/daneelcm" - }, - { - "name": "Purushotam Rai", - "homepage": "https://drupal.org/u/purushotam.rai" + "name": "valderama", + "homepage": "https://www.drupal.org/user/103634" } ], "description": "A simple client-side hierarchical select widget for taxonomy terms.", "homepage": "https://www.drupal.org/project/cshs", - "keywords": [ - "client-side-select", - "hierarchical-select", - "module", - "select", - "taxonomy" - ], "support": { - "source": "https://git.drupalcode.org/project/cshs", - "issues": "https://www.drupal.org/project/issues/cshs" - } - }, - { - "name": "drupal/csp", - "version": "1.40.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/csp.git", - "reference": "8.x-1.40" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/csp-8.x-1.40.zip", - "reference": "8.x-1.40", - "shasum": "37f39e13f9afce4ac4a67c207ae0659b924c1e99" - }, - "require": { - "drupal/core": "^10.1.3 || ^11", - "ext-json": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.40", - "datestamp": "1741745877", - "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": "gapple", - "homepage": "https://www.drupal.org/user/490940" - } - ], - "description": "Provide Content-Security-Policy headers", - "homepage": "https://www.drupal.org/project/csp", - "keywords": [ - "Drupal" - ], - "support": { - "source": "https://git.drupalcode.org/project/csp", - "issues": "https://www.drupal.org/project/issues/csp" + "source": "https://git.drupalcode.org/project/cshs" } }, { "name": "drupal/ctools", - "version": "4.1.0", + "version": "3.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/ctools.git", - "reference": "4.1.0" + "reference": "8.x-3.2" }, "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.2.zip", + "reference": "8.x-3.2", + "shasum": "d6da87239b64ba708a5977e7b33b1e009e36b091" }, "require": { - "drupal/core": "^9.5 || ^10 || ^11" + "drupal/core": "^8.5" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-3.x": "3.x-dev" + }, "drupal": { - "version": "4.1.0", - "datestamp": "1718144949", + "version": "8.x-3.2", + "datestamp": "1550728386", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } - }, - "branch-alias": { - "dev-8.x-3.x": "3.x-dev" } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { @@ -5443,267 +3756,35 @@ "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.", "homepage": "https://www.drupal.org/project/ctools", "support": { - "source": "https://git.drupalcode.org/project/ctools", + "source": "http://cgit.drupalcode.org/ctools", "issues": "https://www.drupal.org/project/issues/ctools" } }, - { - "name": "drupal/customerror", - "version": "1.0.0-beta3", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/customerror.git", - "reference": "8.x-1.0-beta3" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/customerror-8.x-1.0-beta3.zip", - "reference": "8.x-1.0-beta3", - "shasum": "dbb6df7770620b65300a472284b980485fd97ec5" - }, - "require": { - "drupal/core": "^8.8 || ^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.0-beta3", - "datestamp": "1682597105", - "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-or-later" - ], - "authors": [ - { - "name": "gisle", - "homepage": "https://www.drupal.org/user/409554" - }, - { - "name": "kbahey", - "homepage": "https://www.drupal.org/user/4063" - }, - { - "name": "me-taras", - "homepage": "https://www.drupal.org/user/2526320" - }, - { - "name": "mlncn", - "homepage": "https://www.drupal.org/user/64383" - }, - { - "name": "wafaa", - "homepage": "https://www.drupal.org/user/50133" - } - ], - "description": "Enables the creation of custom error pages for 404 and 403 errors, as well as redirects for 404s.", - "homepage": "https://www.drupal.org/project/customerror", - "support": { - "source": "https://git.drupalcode.org/project/customerror" - } - }, - { - "name": "drupal/dashboards", - "version": "2.1.10", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/dashboards.git", - "reference": "2.1.10" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/dashboards-2.1.10.zip", - "reference": "2.1.10", - "shasum": "5b2df04b0138ea0d6213bb2df1b6636de9dcf6c7" - }, - "require": { - "drupal/core": "^9.4 || ^10 || ^11", - "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", - "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": "erik seifert", - "homepage": "https://www.drupal.org/user/161429" - }, - { - "name": "leymannx", - "homepage": "https://www.drupal.org/user/2482808" - } - ], - "description": "Dashboards based on Layout Builder.", - "homepage": "https://www.drupal.org/project/dashboards", - "keywords": [ - "Drupal" - ], - "support": { - "source": "https://git.drupalcode.org/project/dashboards", - "issues": "https://www.drupal.org/project/issues/dashboards" - } - }, - { - "name": "drupal/date_popup", - "version": "2.0.2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/date_popup.git", - "reference": "2.0.2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/date_popup-2.0.2.zip", - "reference": "2.0.2", - "shasum": "fc40e429d927b80aaf75093a4458d9cddbf7f921" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.2", - "datestamp": "1721718242", - "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": "benjy", - "homepage": "https://www.drupal.org/user/1852732" - }, - { - "name": "larowlan", - "homepage": "https://www.drupal.org/user/395439" - } - ], - "description": "Provides a HTML 5 date popup for all views filters.", - "homepage": "https://www.drupal.org/project/date_popup", - "support": { - "source": "https://git.drupalcode.org/project/date_popup" - } - }, - { - "name": "drupal/datetimehideseconds", - "version": "1.5.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/datetimehideseconds.git", - "reference": "8.x-1.5" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/datetimehideseconds-8.x-1.5.zip", - "reference": "8.x-1.5", - "shasum": "81857730eb3a610d00d1119f337222005b0bc1a0" - }, - "require": { - "drupal/core": "^8.7.7 || ^9 || ^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.5", - "datestamp": "1730329777", - "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": "Andi Rüther (anruether)", - "homepage": "https://www.drupal.org/u/anruether", - "role": "Maintainer" - }, - { - "name": "Merlin Axel Rutz (geek-merlin)", - "homepage": "https://www.drupal.org/u/geek-merlin", - "role": "Maintainer" - }, - { - "name": "Rainer Halbmann (heliogabal)", - "homepage": "https://www.drupal.org/u/heliogabal", - "role": "Maintainer" - } - ], - "description": "Provides the option to hide seconds in datetime fields.", - "homepage": "https://www.drupal.org/project/datetimehideseconds", - "support": { - "source": "https://git.drupalcode.org/project/datetimehideseconds", - "issues": "https://www.drupal.org/project/issues/datetimehideseconds" - } - }, { "name": "drupal/default_content", - "version": "2.0.0-alpha3", + "version": "1.0.0-alpha8", "source": { "type": "git", "url": "https://git.drupalcode.org/project/default_content.git", - "reference": "2.0.0-alpha3" + "reference": "8.x-1.0-alpha8" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/default_content-2.0.0-alpha3.zip", - "reference": "2.0.0-alpha3", - "shasum": "fdd90c70bd91896835f6ba5ec42c260c1a144a2b" + "url": "https://ftp.drupal.org/files/projects/default_content-8.x-1.0-alpha8.zip", + "reference": "8.x-1.0-alpha8", + "shasum": "cb16848a5c34bd5c11da1412fd49841814337ae8" }, "require": { - "drupal/core": "^9.1 || ^10 || ^11" - }, - "require-dev": { - "drupal/hal": "^1 || ^2", - "drupal/paragraphs": "^1" + "drupal/core": "~8.3" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "2.0.0-alpha3", - "datestamp": "1724492420", + "version": "8.x-1.0-alpha8", + "datestamp": "1556924587", "security-coverage": { "status": "not-covered", "message": "Alpha releases are not covered by Drupal security advisories." @@ -5711,7 +3792,7 @@ }, "drush": { "services": { - "drush.services.yml": "^9 || ^10 || ^11 || ^12" + "drush.services.yml": "^9" } } }, @@ -5720,6 +3801,14 @@ "GPL-2.0+" ], "authors": [ + { + "name": "Berdir", + "homepage": "https://www.drupal.org/user/214652" + }, + { + "name": "Sam152", + "homepage": "https://www.drupal.org/user/1485048" + }, { "name": "andypost", "homepage": "https://www.drupal.org/user/118908" @@ -5728,10 +3817,6 @@ "name": "benjy", "homepage": "https://www.drupal.org/user/1852732" }, - { - "name": "berdir", - "homepage": "https://www.drupal.org/user/214652" - }, { "name": "dawehner", "homepage": "https://www.drupal.org/user/99340" @@ -5743,10 +3828,6 @@ { "name": "larowlan", "homepage": "https://www.drupal.org/user/395439" - }, - { - "name": "sam152", - "homepage": "https://www.drupal.org/user/1485048" } ], "description": "Imports default content when a module is enabled", @@ -5755,1135 +3836,43 @@ "source": "https://git.drupalcode.org/project/default_content" } }, - { - "name": "drupal/diff", - "version": "1.9.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/diff.git", - "reference": "8.x-1.9" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/diff-8.x-1.9.zip", - "reference": "8.x-1.9", - "shasum": "4ef0126e983e4935a41ad8131faa00a2e28bcec0" - }, - "require": { - "drupal/core": "^10 || ^11", - "mkalkbrenner/php-htmldiff-advanced": "~0.0.8", - "php": "^8.1" - }, - "require-dev": { - "jangregor/phpstan-prophecy": "^1.0", - "mglaman/phpstan-drupal": "^1.2.10", - "phpstan/extension-installer": "^1.2", - "phpstan/phpstan": "^1.11", - "phpstan/phpstan-deprecation-rules": "*", - "phpstan/phpstan-phpunit": "1.4.x-dev", - "phpstan/phpstan-strict-rules": "^1@stable", - "previousnext/coding-standard": "1.0.1" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.9", - "datestamp": "1748990194", - "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": "Miro Dietiker (miro_dietiker)", - "homepage": "https://www.drupal.org/u/miro_dietiker", - "role": "Maintainer" - }, - { - "name": "Juampy NR (juampynr)", - "homepage": "https://www.drupal.org/u/juampynr", - "role": "Maintainer" - }, - { - "name": "Lucian Hangea (lhangea)", - "homepage": "https://www.drupal.org/u/lhangea", - "role": "Maintainer" - }, - { - "name": "Alan D.", - "homepage": "https://www.drupal.org/u/alan-d.", - "role": "Maintainer" - }, - { - "name": "Brian Gilbert (realityloop).", - "homepage": "https://www.drupal.org/u/realityloop", - "role": "Maintainer" - }, - { - "name": "Adam Bramley (acbramley)", - "homepage": "https://www.drupal.org/u/acbramley", - "role": "Maintainer" - }, - { - "name": "lhangea", - "homepage": "https://www.drupal.org/user/2743803" - }, - { - "name": "miro_dietiker", - "homepage": "https://www.drupal.org/user/227761" - }, - { - "name": "phenaproxima", - "homepage": "https://www.drupal.org/user/205645" - }, - { - "name": "realityloop", - "homepage": "https://www.drupal.org/user/139189" - }, - { - "name": "rötzi", - "homepage": "https://www.drupal.org/user/73064" - }, - { - "name": "yhahn", - "homepage": "https://www.drupal.org/user/264833" - } - ], - "description": "Compares two entity revisions", - "homepage": "https://www.drupal.org/project/diff", - "support": { - "source": "https://git.drupalcode.org/project/diff", - "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", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/drd_agent.git", - "reference": "4.1.4" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drd_agent-4.1.4.zip", - "reference": "4.1.4", - "shasum": "79b23afa8e1547a1d4c2c0dfb79107939d95256d" - }, - "require": { - "drupal/core": "^10 || ^11", - "php": ">=8.1" - }, - "require-dev": { - "drupal/hacked": "^2.0", - "drupal/job_scheduler": "^4.0", - "drupal/monitoring": "^1.13", - "drupal/security_review": "^3.0" - }, - "suggest": { - "drupal/hacked": "Validate each project if it got changed compared to the original code from drupal.org.", - "drupal/monitoring": "Site monitoring module with sensors.", - "drupal/security_review": "Site security and configuration review module." - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "4.1.4", - "datestamp": "1748435997", - "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": "Jürgen Haas", - "homepage": "https://www.drupal.org/u/jurgenhaas" - }, - { - "name": "jurgenhaas", - "homepage": "https://www.drupal.org/user/168924" - } - ], - "description": "Agent on remote Drupal sites for the main DRD module.", - "homepage": "https://www.drupal.org/project/drd_agent", - "keywords": [ - "Drupal" - ], - "support": { - "source": "https://git.drupal.org/project/drd_agent", - "issues": "https://www.drupal.org/project/issues/drd" - } - }, { "name": "drupal/drutopia_action", - "version": "2.0.0-rc1", + "version": "1.0.0-beta3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_action.git", - "reference": "2.0.0-rc1" + "reference": "8.x-1.0-beta3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_action-2.0.0-rc1.zip", - "reference": "2.0.0-rc1", - "shasum": "e1e9aea007a1b2174ff286b8cf54a9bc3edac75a" + "url": "https://ftp.drupal.org/files/projects/drutopia_action-8.x-1.0-beta3.zip", + "reference": "8.x-1.0-beta3", + "shasum": "b2ecac510f76c26ee38de380a4895cd08fa22f09" }, "require": { - "drupal/config_actions": "^1.1", - "drupal/config_snapshot": "*", - "drupal/core": "^9.4 || ^10", + "drupal/config_actions": "^1.0-beta1", + "drupal/core": "*", "drupal/drutopia_core": "*", - "drupal/drutopia_seo": "^2", + "drupal/drutopia_seo": "^1.0-alpha1", "drupal/drutopia_site": "*", - "drupal/ds": "^3.7", + "drupal/ds": "^3.0-rc1", "drupal/entity_reference_revisions": "*", - "drupal/field_group": "^3.0", + "drupal/field_group": "^3.0-beta1", "drupal/focal_point": "*", - "drupal/media_library_media_modify": "*", - "drupal/media_responsive_thumbnail": "*", "drupal/metatag": "*", - "drupal/paragraphs": "^1.12", - "drupal/pathauto": "^1.8", - "drupal/search_api": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.0-rc1", - "datestamp": "1697332194", - "security-coverage": { - "status": "not-covered", - "message": "RC releases are not covered by Drupal security advisories." - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "name": "drutopia", - "homepage": "https://www.drupal.org/user/3763727" - }, - { - "name": "drutopia_gitlab", - "homepage": "https://www.drupal.org/user/3514271" - }, - { - "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": "ronaldmulero", - "homepage": "https://www.drupal.org/user/241652" - }, - { - "name": "wolcen", - "homepage": "https://www.drupal.org/user/3099655" - } - ], - "description": "Drutopia Action is a base feature providing an action content type and related configuration.", - "homepage": "https://www.drupal.org/project/drutopia_action", - "keywords": [ - "actions", - "campaign", - "drutopia", - "grassroots", - "group" - ], - "support": { - "source": "https://git.drupalcode.org/project/drutopia_action/-/tree/2.0.x", - "issues": "https://www.drupal.org/project/issues/drutopia_action" - } - }, - { - "name": "drupal/drutopia_article", - "version": "dev-2.0.x", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/drutopia_article.git", - "reference": "0c4d5f0f695914e154282fc4d6bb0d866675fb1a" - }, - "require": { - "drupal/block_visibility_groups": "^2", - "drupal/config_actions": "^1.4", - "drupal/config_snapshot": "*", - "drupal/core": "^9.4 || ^10", - "drupal/ctools": "^4.1", - "drupal/drutopia_comment": "*", - "drupal/drutopia_core": "*", - "drupal/drutopia_people": "*", - "drupal/drutopia_seo": "^2", - "drupal/drutopia_site": "*", - "drupal/ds": "^3.28", - "drupal/entity_reference_revisions": "*", - "drupal/facets": "^3", - "drupal/field_group": "^3.6", - "drupal/focal_point": "*", - "drupal/media_library_media_modify": "*", - "drupal/media_responsive_thumbnail": "*", - "drupal/metatag": "*", - "drupal/paragraphs": "*", - "drupal/pathauto": "^1.13", - "drupal/rdf": "*", - "drupal/search_api": "*", - "drupal/token": "^1.15" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-2.0.x": "2.0.x-dev" - }, - "drupal": { - "version": "2.0.0-rc2+4-dev", - "datestamp": "1738966837", - "security-coverage": { - "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "name": "drutopia", - "homepage": "https://www.drupal.org/user/3763727" - }, - { - "name": "drutopia_gitlab", - "homepage": "https://www.drupal.org/user/3514271" - }, - { - "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": "ronaldmulero", - "homepage": "https://www.drupal.org/user/241652" - }, - { - "name": "wolcen", - "homepage": "https://www.drupal.org/user/3099655" - } - ], - "description": "Drutopia Article is a base feature providing an article content type and related configuration.", - "homepage": "https://www.drupal.org/project/drutopia_article", - "support": { - "source": "https://git.drupalcode.org/project/drutopia_article" - } - }, - { - "name": "drupal/drutopia_blog", - "version": "dev-2.0.x", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/drutopia_blog.git", - "reference": "2a9b1a9c8fb87d799b118e95a22af9167bc5d5d2" - }, - "require": { - "drupal/block_visibility_groups": "^2", - "drupal/config_actions": "^1.4", - "drupal/core": "^9.4 || ^10", - "drupal/ctools": "^4.1", - "drupal/drutopia_comment": "*", - "drupal/drutopia_core": "*", - "drupal/drutopia_people": "*", - "drupal/drutopia_seo": "^2", - "drupal/drutopia_site": "*", - "drupal/ds": "^3.28", - "drupal/entity_reference_revisions": "*", - "drupal/facets": "^3", - "drupal/field_group": "^3.6", - "drupal/focal_point": "*", - "drupal/media_library_media_modify": "*", - "drupal/media_responsive_thumbnail": "*", - "drupal/metatag": "*", - "drupal/paragraphs": "*", - "drupal/pathauto": "^1.13", - "drupal/search_api": "*", - "drupal/token": "^1.15" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-2.0.x": "2.0.x-dev" - }, - "drupal": { - "version": "2.0.0-rc2+4-dev", - "datestamp": "1738966933", - "security-coverage": { - "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "name": "drutopia", - "homepage": "https://www.drupal.org/user/3763727" - }, - { - "name": "drutopia_gitlab", - "homepage": "https://www.drupal.org/user/3514271" - }, - { - "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": "ronaldmulero", - "homepage": "https://www.drupal.org/user/241652" - }, - { - "name": "wolcen", - "homepage": "https://www.drupal.org/user/3099655" - } - ], - "description": "Drutopia Blog is a base feature providing a blog content type and related configuration.", - "homepage": "https://www.drupal.org/project/drutopia_blog", - "keywords": [ - "blogging", - "content", - "drutopia", - "journal" - ], - "support": { - "source": "https://git.drupalcode.org/project/drutopia_blog/-/tree/2.0.x", - "issues": "https://www.drupal.org/project/issues/drutopia_blog" - } - }, - { - "name": "drupal/drutopia_campaign", - "version": "2.0.0-rc1", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/drutopia_campaign.git", - "reference": "2.0.0-rc1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_campaign-2.0.0-rc1.zip", - "reference": "2.0.0-rc1", - "shasum": "6a3570196c34c24daa780e64319af9a6e292e3cc" - }, - "require": { - "drupal/block_visibility_groups": "*", - "drupal/config_actions": "^1.1", - "drupal/core": "^9.4 || ^10", - "drupal/drutopia_core": "^2", - "drupal/drutopia_seo": "^2", - "drupal/ds": "^3.7", - "drupal/entity_reference_revisions": "*", - "drupal/facets": "*", - "drupal/field_group": "^3.0", - "drupal/focal_point": "*", - "drupal/media_library_media_modify": "*", - "drupal/media_responsive_thumbnail": "*", - "drupal/metatag": "*", - "drupal/paragraphs": "^1.12", - "drupal/pathauto": "^1.8", - "drupal/search_api": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.0-rc1", - "datestamp": "1697332856", - "security-coverage": { - "status": "not-covered", - "message": "RC releases are not covered by Drupal security advisories." - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "name": "drutopia", - "homepage": "https://www.drupal.org/user/3763727" - }, - { - "name": "drutopia_gitlab", - "homepage": "https://www.drupal.org/user/3514271" - }, - { - "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": "ronaldmulero", - "homepage": "https://www.drupal.org/user/241652" - }, - { - "name": "wolcen", - "homepage": "https://www.drupal.org/user/3099655" - } - ], - "description": "Drutopia Campaign provides a Campaign content type, including background information as well as ability to list demands and updates, and related configuration.", - "homepage": "https://www.drupal.org/project/drutopia_campaign", - "keywords": [ - "campaign", - "content", - "drutopia", - "initiative" - ], - "support": { - "source": "https://git.drupalcode.org/project/drutopia_campaign/-/tree/2.0.x", - "issues": "https://www.drupal.org/project/issues/drutopia_campaign" - } - }, - { - "name": "drupal/drutopia_collection", - "version": "dev-2.0.x", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/drutopia_collection.git", - "reference": "6a56ad10454f362422cc232a4bfe0ddd32ae7586" - }, - "require": { - "drupal/config_actions": "^1.4", - "drupal/core": "^8 || ^9 || ^10", - "drupal/ctools": "^4.1", - "drupal/drutopia_article": "^2", - "drupal/drutopia_blog": "^2", - "drupal/drutopia_core": "*", - "drupal/drutopia_people": "^2", - "drupal/drutopia_seo": "^2", - "drupal/ds": "^3.28", - "drupal/entity_reference_revisions": "*", - "drupal/metatag": "^2.1", - "drupal/paragraphs": "*" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-2.0.x": "2.0.x-dev" - }, - "drupal": { - "version": "2.0.x-dev", - "datestamp": "1738965303", - "security-coverage": { - "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "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 Collection is a feature providing the ability to create collections to bring together ordered listings of Articles, Blog posts, or other content. This is useful for magazine issues or online books (referencing each chapter) or to create a meta-resource of recommended resources and people. an article content type and related configuration.", - "homepage": "https://www.drupal.org/project/drutopia_collection", - "support": { - "source": "https://git.drupalcode.org/project/drutopia_collection" - } - }, - { - "name": "drupal/drutopia_comment", - "version": "2.0.0-rc1", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/drutopia_comment.git", - "reference": "2.0.0-rc1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_comment-2.0.0-rc1.zip", - "reference": "2.0.0-rc1", - "shasum": "bc213075e952a46d86978e7e9ff828d9d9b91c14" - }, - "require": { - "drupal/config_actions": "^1.1", - "drupal/core": "^8.9 || ^9 || ^10", - "drupal/drutopia_core": "*", - "drupal/rdf": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.0-rc1", - "datestamp": "1697331973", - "security-coverage": { - "status": "not-covered", - "message": "RC releases are not covered by Drupal security advisories." - } - }, - "branch-alias": { - "dev-8.x-1.x": "^1.0-alpha1" - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "name": "drutopia", - "homepage": "https://www.drupal.org/user/3763727" - }, - { - "name": "drutopia_gitlab", - "homepage": "https://www.drupal.org/user/3514271" - }, - { - "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": "ronaldmulero", - "homepage": "https://www.drupal.org/user/241652" - }, - { - "name": "wolcen", - "homepage": "https://www.drupal.org/user/3099655" - } - ], - "description": "Drutopia comment is a base feature providing comments and related configuration.", - "homepage": "https://www.drupal.org/project/drutopia_comment", - "keywords": [ - "comments", - "content", - "discussion", - "drutopia" - ], - "support": { - "source": "https://git.drupalcode.org/project/drutopia_comment/-/tree/2.0.x", - "issues": "https://www.drupal.org/project/issues/drutopia_comment" - } - }, - { - "name": "drupal/drutopia_core", - "version": "dev-2.0.x", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/drutopia_core.git", - "reference": "ecbcab8ee9779dbcb8f86bd731192842e8da14e0" - }, - "require": { - "drupal/automated_crop": "^4.0", - "drupal/config_actions": "^1.4", - "drupal/config_perms": "^2.1", - "drupal/core": "^9.4 || ^10", - "drupal/crop": "^2.1", - "drupal/ds": "^3.28", - "drupal/exclude_node_title": "*", - "drupal/facets": "^3", - "drupal/faqfield": "^7.1", - "drupal/focal_point": "^2.1", - "drupal/image_field_to_media": "^3.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/pathauto": "*", - "drupal/rdf": "*", - "drupal/search_api": "^1.37", - "drupal/search_api_db": "*", - "drupal/video_embed_field": "^2.5" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-2.0.x": "2.0.x-dev" - }, - "drupal": { - "version": "2.0.x-dev", - "datestamp": "1738964608", - "security-coverage": { - "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." - } - }, - "patches": { - "drupal/entity_reference_revisions": { - "Support normalization without local revision ID": "https://www.drupal.org/files/issues/2022-08-18/entity_reference_revisions-normalizer-2913713-12.patch" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "name": "drutopia", - "homepage": "https://www.drupal.org/user/3763727" - }, - { - "name": "drutopia_gitlab", - "homepage": "https://www.drupal.org/user/3514271" - }, - { - "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": "ronaldmulero", - "homepage": "https://www.drupal.org/user/241652" - }, - { - "name": "wolcen", - "homepage": "https://www.drupal.org/user/3099655" - } - ], - "description": "Drutopia core is a base feature providing core components required by other features.", - "homepage": "https://www.drupal.org/project/drutopia_core", - "keywords": [ - "base", - "core", - "drutopia" - ], - "support": { - "source": "https://git.drupalcode.org/project/drutopia_core/-/tree/2.0.x", - "issues": "https://www.drupal.org/project/issues/drutopia_core" - } - }, - { - "name": "drupal/drutopia_event", - "version": "dev-2.0.x", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/drutopia_event.git", - "reference": "493e86fe85f947aca945fe8e91cda4e781bb9513" - }, - "require": { - "drupal/block_visibility_groups": "^2", - "drupal/config_actions": "^1.4", - "drupal/core": "^9.4 || ^10", - "drupal/ctools": "^4.1", - "drupal/drutopia_core": "*", - "drupal/drutopia_seo": "^2", - "drupal/ds": "^3.28", - "drupal/entity_reference_revisions": "*", - "drupal/facets": "^3", - "drupal/field_group": "*", - "drupal/focal_point": "*", - "drupal/media_library_media_modify": "*", - "drupal/media_responsive_thumbnail": "*", - "drupal/metatag": "*", - "drupal/paragraphs": "*", - "drupal/pathauto": "^1.13", - "drupal/search_api": "*", - "drupal/token": "^1.15" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-2.0.x": "2.0.x-dev" - }, - "drupal": { - "version": "2.0.x-dev", - "datestamp": "1738966631", - "security-coverage": { - "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "name": "drutopia", - "homepage": "https://www.drupal.org/user/3763727" - }, - { - "name": "drutopia_gitlab", - "homepage": "https://www.drupal.org/user/3514271" - }, - { - "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": "ronaldmulero", - "homepage": "https://www.drupal.org/user/241652" - }, - { - "name": "wolcen", - "homepage": "https://www.drupal.org/user/3099655" - } - ], - "description": "Drutopia Event is a base feature providing a event content type, with date and event type, and related configuration.", - "homepage": "https://www.drupal.org/project/drutopia_event", - "keywords": [ - "calendar", - "date", - "drutopia", - "events" - ], - "support": { - "source": "https://git.drupalcode.org/project/drutopia_event/-/tree/2.0.x", - "issues": "https://www.drupal.org/project/issues/drutopia_event" - } - }, - { - "name": "drupal/drutopia_group", - "version": "dev-2.0.x", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/drutopia_group.git", - "reference": "f744305a5f93fa85eab281f7e001f84fe6d1cb35" - }, - "require": { - "drupal/address": "^2.0", - "drupal/config_actions": "*", - "drupal/config_perms": "*", - "drupal/core": "^9.4 || ^10", - "drupal/ctools": "*", - "drupal/drutopia_core": "^2", - "drupal/ds": "*", - "drupal/entity_reference_revisions": "*", - "drupal/gnode": "*", - "drupal/group": "^3", - "drupal/paragraphs": "*", - "drupal/pathauto": "^1.13" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-2.0.x": "2.0.x-dev" - }, - "drupal": { - "version": "2.0.x-dev", - "datestamp": "1738967926", - "security-coverage": { - "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "name": "drutopia", - "homepage": "https://www.drupal.org/user/3763727" - }, - { - "name": "drutopia_gitlab", - "homepage": "https://www.drupal.org/user/3514271" - }, - { - "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": "ronaldmulero", - "homepage": "https://www.drupal.org/user/241652" - }, - { - "name": "wolcen", - "homepage": "https://www.drupal.org/user/3099655" - } - ], - "description": "Drutopia Group provides a group content type that can be classified by a group type vocabulary and related configuration.", - "homepage": "https://www.drupal.org/project/drutopia_group", - "keywords": [ - "drutopia", - "grassroots", - "groups", - "organizations" - ], - "support": { - "source": "https://git.drupalcode.org/project/drutopia_group/-/tree/2.0.x", - "issues": "https://www.drupal.org/project/issues/drutopia_group" - } - }, - { - "name": "drupal/drutopia_landing_page", - "version": "dev-2.0.x", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/drutopia_landing_page.git", - "reference": "6c9fed4cbb476a99e1536aaee94dc8182c82e387" - }, - "require": { - "cweagans/composer-patches": "^1", - "drupal/config_actions": "^1", - "drupal/config_snapshot": "*", - "drupal/core": "^9.4 || ^10", - "drupal/ctools": "^4", - "drupal/drutopia_core": "*", - "drupal/drutopia_seo": "^2", - "drupal/ds": "^3", - "drupal/entity_reference_revisions": "*", - "drupal/exclude_node_title": "^1", - "drupal/metatag": "*", - "drupal/paragraphs": "*", - "drupal/pathauto": "^1", - "drupal/token": "^1" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-2.0.x": "2.0.x-dev" - }, - "drupal": { - "version": "2.0.x-dev", - "datestamp": "1738971149", - "security-coverage": { - "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "name": "drutopia", - "homepage": "https://www.drupal.org/user/3763727" - }, - { - "name": "drutopia_gitlab", - "homepage": "https://www.drupal.org/user/3514271" - }, - { - "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": "ronaldmulero", - "homepage": "https://www.drupal.org/user/241652" - }, - { - "name": "wolcen", - "homepage": "https://www.drupal.org/user/3099655" - } - ], - "description": "Drutopia Landing Page is a base feature providing a landing page content type and related configuration.", - "homepage": "https://www.drupal.org/project/drutopia_landing_page", - "keywords": [ - "content", - "drutopia", - "entry", - "standalone" - ], - "support": { - "source": "https://git.drupalcode.org/project/drutopia_landing_page/-/tree/2.0.x", - "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/paragraphs": "^1.1", + "drupal/pathauto": "^1.0", "drupal/search_api": "*" }, "type": "drupal-module", "extra": { "branch-alias": { - "dev-2.0.x": "2.0.x-dev" + "dev-1.x": "1.x-dev" }, "drupal": { - "version": "2.0.x-dev", - "datestamp": "1738968329", + "version": "8.x-1.0-beta3", + "datestamp": "1559237288", "security-coverage": { "status": "not-covered", "message": "Project has not opted into security advisory coverage!" @@ -6896,895 +3885,13 @@ ], "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" - }, - "require": { - "drupal/config_actions": "^1.4", - "drupal/core": "^8.9 || ^9 || ^10", - "drupal/ctools": "^4.1", - "drupal/drutopia_core": "*", - "drupal/drutopia_seo": "^2", - "drupal/ds": "^3.28", - "drupal/entity_reference_revisions": "*", - "drupal/metatag": "*", - "drupal/paragraphs": "*", - "drupal/pathauto": "^1.13", - "drupal/rdf": "*", - "drupal/token": "^1.15" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-2.0.x": "2.0.x-dev" - }, - "drupal": { - "version": "2.0.x-dev", - "datestamp": "1738965862", - "security-coverage": { - "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "name": "drutopia", - "homepage": "https://www.drupal.org/user/3763727" + "name": "cedewey", + "homepage": "https://www.drupal.org/user/38694" }, { "name": "drutopia_gitlab", "homepage": "https://www.drupal.org/user/3514271" }, - { - "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": "ronaldmulero", - "homepage": "https://www.drupal.org/user/241652" - }, - { - "name": "wolcen", - "homepage": "https://www.drupal.org/user/3099655" - } - ], - "description": "Drutopia Page is a base feature providing a page content type and related configuration.", - "homepage": "https://www.drupal.org/project/drutopia_page", - "keywords": [ - "content", - "drutopia", - "pages" - ], - "support": { - "source": "https://git.drupalcode.org/project/drutopia_page/-/tree/2.0.x", - "issues": "https://www.drupal.org/project/issues/drutopia_page" - } - }, - { - "name": "drupal/drutopia_paragraph_title", - "version": "dev-1.0.x", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/drutopia_paragraph_title.git", - "reference": "d74353db8e3c92e9fb4a469e86b9c979d48f1297" - }, - "require": { - "drupal/allowed_formats": "^3", - "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/ui_patterns": "*", - "drupal/ui_patterns_ds": "*", - "drupal/ui_patterns_layouts": "*", - "drupal/ui_patterns_library": "*" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-1.0.x": "1.0.x-dev" - }, - "drupal": { - "version": "1.0.0+9-dev", - "datestamp": "1738968607", - "security-coverage": { - "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "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": "Provides a title paragraph that can replace regular page titles with a title, subtitle, and image.", - "homepage": "https://www.drupal.org/project/drutopia_paragraph_title", - "keywords": [ - "content", - "drutopia", - "paragraphs", - "titles" - ], - "support": { - "source": "https://git.drupalcode.org/project/drutopia_paragraph_title", - "issues": "https://www.drupal.org/project/issues/drutopia_paragraph_title" - } - }, - { - "name": "drupal/drutopia_people", - "version": "dev-2.0.x", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/drutopia_people.git", - "reference": "338484dc18c27ddc3cdfc0adbe7af2532fef6dc4" - }, - "require": { - "drupal/config_actions": "^1", - "drupal/core": "^8.9 || ^9 || ^10", - "drupal/ctools": "*", - "drupal/drutopia_core": "^2", - "drupal/drutopia_seo": "^2", - "drupal/ds": "^3", - "drupal/entity_reference_revisions": "*", - "drupal/field_group": "^3", - "drupal/focal_point": "*", - "drupal/metatag": "*", - "drupal/paragraphs": "^1", - "drupal/pathauto": "^1", - "drupal/search_api": "*", - "drupal/views_plain": "^1" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-2.0.x": "2.0.x-dev" - }, - "drupal": { - "version": "2.0.x-dev", - "datestamp": "1738968707", - "security-coverage": { - "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "name": "drutopia", - "homepage": "https://www.drupal.org/user/3763727" - }, - { - "name": "drutopia_gitlab", - "homepage": "https://www.drupal.org/user/3514271" - }, - { - "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": "ronaldmulero", - "homepage": "https://www.drupal.org/user/241652" - }, - { - "name": "wolcen", - "homepage": "https://www.drupal.org/user/3099655" - } - ], - "description": "Drutopia People provides a People content type for showing visitors information about staff, volunteers, contributors, and more.", - "homepage": "https://www.drupal.org/project/drutopia_people", - "keywords": [ - "biography", - "content", - "drutopia", - "person", - "profile", - "staff", - "volunteers" - ], - "support": { - "source": "https://git.drupalcode.org/project/drutopia_people/-/tree/2.0.x", - "issues": "https://www.drupal.org/project/issues/drutopia_people" - } - }, - { - "name": "drupal/drutopia_related_content", - "version": "2.0.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/drutopia_related_content.git", - "reference": "2.0.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_related_content-2.0.0.zip", - "reference": "2.0.0", - "shasum": "205cf7d5f35cc0ae87a7a6916e295c96463c0d5b" - }, - "require": { - "drupal/block_visibility_groups": "^2", - "drupal/core": "^8.9 || ^9 || ^10", - "drupal/drutopia_core": "^2", - "drupal/similarterms": "^1.3" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.0", - "datestamp": "1701820686", - "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": "drutopia", - "homepage": "https://www.drupal.org/user/3763727" - }, - { - "name": "drutopia_gitlab", - "homepage": "https://www.drupal.org/user/3514271" - }, - { - "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": "ronaldmulero", - "homepage": "https://www.drupal.org/user/241652" - }, - { - "name": "wolcen", - "homepage": "https://www.drupal.org/user/3099655" - } - ], - "description": "Shows content (articles, actions, etc.) related to the current page's content based on the taxonomy terms held in common.", - "homepage": "https://www.drupal.org/project/drutopia_related_content", - "keywords": [ - "content", - "drutopia", - "relations", - "similar" - ], - "support": { - "source": "https://git.drupalcode.org/project/drutopia_related_content/-/tree/2.0.x", - "issues": "https://www.drupal.org/project/issues/drutopia_related_content" - } - }, - { - "name": "drupal/drutopia_resource", - "version": "dev-2.0.x", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/drutopia_resource.git", - "reference": "0907b1f514b7361c78085bfefc1ce0ed4d83c062" - }, - "require": { - "drupal/block_visibility_groups": "^2", - "drupal/config_actions": "^1.4", - "drupal/core": "^9.4 || ^10", - "drupal/ctools": "^4.1", - "drupal/drutopia_core": "*", - "drupal/drutopia_seo": "^2", - "drupal/ds": "^3.28", - "drupal/entity_reference_revisions": "*", - "drupal/facets": "^3", - "drupal/field_group": "^3.6", - "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/search_api": "*", - "drupal/token": "^1.15", - "drupal/video_embed_field": "^2.5" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-2.0.x": "2.0.x-dev" - }, - "drupal": { - "version": "2.0.x-dev", - "datestamp": "1738965704", - "security-coverage": { - "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "name": "drutopia", - "homepage": "https://www.drupal.org/user/3763727" - }, - { - "name": "drutopia_gitlab", - "homepage": "https://www.drupal.org/user/3514271" - }, - { - "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": "ronaldmulero", - "homepage": "https://www.drupal.org/user/241652" - }, - { - "name": "wolcen", - "homepage": "https://www.drupal.org/user/3099655" - } - ], - "description": "Provides Resource content type and related configuration. A resource can be a file, such as a PDF, a link, such as a website URL, or an embedded video.", - "homepage": "https://www.drupal.org/project/drutopia_resource", - "keywords": [ - "content", - "drutopia", - "facets", - "files", - "filtering", - "resources", - "search" - ], - "support": { - "source": "https://git.drupalcode.org/project/drutopia_resource/-/tree/2.0.x", - "issues": "https://www.drupal.org/project/issues/drutopia_resource" - } - }, - { - "name": "drupal/drutopia_search", - "version": "2.0.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/drutopia_search.git", - "reference": "2.0.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_search-2.0.0.zip", - "reference": "2.0.0", - "shasum": "1328a24be4f450489684add8b2bf72c0bf78fcd6" - }, - "require": { - "drupal/block_visibility_groups": "^2", - "drupal/core": "^8.9 || ^9 || ^10", - "drupal/drutopia_core": "^2", - "drupal/facets": "*", - "drupal/search_api": "*", - "drupal/search_api_db": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.0", - "datestamp": "1701816050", - "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": "drutopia", - "homepage": "https://www.drupal.org/user/3763727" - }, - { - "name": "drutopia_gitlab", - "homepage": "https://www.drupal.org/user/3514271" - }, - { - "name": "lelkneralfaro", - "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": "ronaldmulero", - "homepage": "https://www.drupal.org/user/241652" - }, - { - "name": "wolcen", - "homepage": "https://www.drupal.org/user/3099655" - } - ], - "description": "Drutopia Search provides a search server, index, and view.", - "homepage": "https://www.drupal.org/project/drutopia_search", - "keywords": [ - "content", - "drutopia", - "finding", - "searching" - ], - "support": { - "source": "https://git.drupalcode.org/project/drutopia_search/-/tree/2.0.x", - "issues": "https://www.drupal.org/project/issues/drutopia_search" - } - }, - { - "name": "drupal/drutopia_seo", - "version": "dev-2.0.x", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/drutopia_seo.git", - "reference": "e92b8ff100dd06b1eb1cf88a4761416f26381dc8" - }, - "require": { - "drupal/config_actions": "^1.4", - "drupal/core": "^8.9 || ^9 || ^10", - "drupal/drutopia_core": "*", - "drupal/metatag": "^2.1", - "drupal/redirect": "^1.11", - "drupal/redirect_404": "*" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-2.0.x": "2.0.x-dev" - }, - "drupal": { - "version": "2.0.x-dev", - "datestamp": "1738965074", - "security-coverage": { - "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "name": "drutopia", - "homepage": "https://www.drupal.org/user/3763727" - }, - { - "name": "drutopia_gitlab", - "homepage": "https://www.drupal.org/user/3514271" - }, - { - "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": "ronaldmulero", - "homepage": "https://www.drupal.org/user/241652" - }, - { - "name": "wolcen", - "homepage": "https://www.drupal.org/user/3099655" - } - ], - "description": "Sensible Search Engine Optimization default configuration for a site.", - "homepage": "https://www.drupal.org/project/drutopia_seo", - "keywords": [ - "SEO", - "content", - "discoverability", - "drutopia", - "metatags", - "optimization", - "visibility" - ], - "support": { - "source": "https://git.drupalcode.org/project/drutopia_seo/-/tree/2.0.x", - "issues": "https://www.drupal.org/project/issues/drutopia_seo" - } - }, - { - "name": "drupal/drutopia_site", - "version": "dev-2.0.x", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/drutopia_site.git", - "reference": "da5e9dfb288a0ae17b424dfe1c704fd521dd556a" - }, - "require": { - "drupal/admin_toolbar": "^3", - "drupal/admin_toolbar-admin_toolbar_search": "*", - "drupal/admin_toolbar_tools": "*", - "drupal/autosave_form": "^1", - "drupal/config_actions": "^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/paragraphs": "*", - "drupal/role_delegation": "^1", - "drupal/workflow_buttons": "^1", - "drupal/workflow_buttons_trash": "*", - "drupal/wysiwyg_linebreaks": "^2" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-2.0.x": "2.0.x-dev" - }, - "drupal": { - "version": "2.0.x-dev", - "datestamp": "1738969316", - "security-coverage": { - "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "name": "drutopia", - "homepage": "https://www.drupal.org/user/3763727" - }, - { - "name": "drutopia_gitlab", - "homepage": "https://www.drupal.org/user/3514271" - }, - { - "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": "ronaldmulero", - "homepage": "https://www.drupal.org/user/241652" - }, - { - "name": "wolcen", - "homepage": "https://www.drupal.org/user/3099655" - } - ], - "description": "Drutopia site is a base feature providing site components.", - "homepage": "https://www.drupal.org/project/drutopia_site", - "keywords": [ - "base", - "drutopia", - "site" - ], - "support": { - "source": "https://git.drupalcode.org/project/drutopia_site/-/tree/2.0.x", - "issues": "https://www.drupal.org/project/issues/drutopia_site" - } - }, - { - "name": "drupal/drutopia_social", - "version": "dev-2.0.x", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/drutopia_social.git", - "reference": "0922fd6688d5b49903c30bb626d03c0df36d65c8" - }, - "require": { - "drupal/core": "^8.9 || ^9 || ^10", - "drupal/social_media_links": "^2" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-2.0.x": "2.0.x-dev" - }, - "drupal": { - "version": "2.0.x-dev", - "datestamp": "1738969425", - "security-coverage": { - "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "name": "drutopia", - "homepage": "https://www.drupal.org/user/3763727" - }, - { - "name": "drutopia_gitlab", - "homepage": "https://www.drupal.org/user/3514271" - }, - { - "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": "ronaldmulero", - "homepage": "https://www.drupal.org/user/241652" - }, - { - "name": "wolcen", - "homepage": "https://www.drupal.org/user/3099655" - } - ], - "description": "Drutopia Social provides a social media block, perhaps more in the future.", - "homepage": "https://www.drupal.org/project/drutopia_social", - "support": { - "source": "https://git.drupalcode.org/project/drutopia_social" - } - }, - { - "name": "drupal/drutopia_storyline", - "version": "dev-2.0.x", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/drutopia_storyline.git", - "reference": "bf79a2124dd2b0429403e22f2abae55cbd4b0224" - }, - "require": { - "drupal/config_actions": "*", - "drupal/core": "^8.9 || ^9 || ^10", - "drupal/drutopia_core": "^2", - "drupal/drutopia_page": "^2", - "drupal/entity_reference_revisions": "*", - "drupal/field_group": "^3", - "drupal/paragraphs": "*" - }, - "require-dev": { - "drupal/drutopia_page": "*", - "drupal/entity_reference_revisions": "*" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-2.0.x": "2.0.x-dev" - }, - "drupal": { - "version": "2.0.x-dev", - "datestamp": "1738969481", - "security-coverage": { - "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "name": "drutopia", - "homepage": "https://www.drupal.org/user/3763727" - }, - { - "name": "drutopia_gitlab", - "homepage": "https://www.drupal.org/user/3514271" - }, - { - "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": "ronaldmulero", - "homepage": "https://www.drupal.org/user/241652" - }, - { - "name": "wolcen", - "homepage": "https://www.drupal.org/user/3099655" - } - ], - "description": "Provides storyline paragraphs and an accompanying module to add a storyline to a basic page so that you can provide a simple chronology or story in a timeline format.", - "homepage": "https://www.drupal.org/project/drutopia_storyline", - "keywords": [ - "chronology", - "content", - "drutopia", - "storyline", - "timeline" - ], - "support": { - "source": "https://git.drupalcode.org/project/drutopia_storyline/-/tree/2.0.x", - "issues": "https://www.drupal.org/project/issues/drutopia_storyline" - } - }, - { - "name": "drupal/drutopia_user", - "version": "dev-2.0.x", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/drutopia_user.git", - "reference": "bba7bc4fbbc5a6e18b4bd66711e0d6735d8cb3d1" - }, - "require": { - "drupal/core": "^8.9 || ^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-2.0.x": "2.0.x-dev" - }, - "drupal": { - "version": "2.0.x-dev", - "datestamp": "1693752967", - "security-coverage": { - "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "name": "drutopia", - "homepage": "https://www.drupal.org/user/3763727" - }, - { - "name": "drutopia_gitlab", - "homepage": "https://www.drupal.org/user/3514271" - }, - { - "name": "lelkneralfaro", - "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" @@ -7800,14 +3907,1550 @@ { "name": "rosemarymann", "homepage": "https://www.drupal.org/user/837536" + } + ], + "description": "Drutopia Action is a base feature providing an action content type and related configuration.", + "homepage": "https://gitlab.com/drutopia/drutopia_action", + "keywords": [ + "actions", + "campaign", + "drutopia", + "grassroots", + "group" + ], + "support": { + "source": "https://gitlab.com/drutopia/drutopia_action/tree/8.x-1.x", + "issues": "https://gitlab.com/drutopia/drutopia_action/issues" + } + }, + { + "name": "drupal/drutopia_article", + "version": "1.0.0-beta3", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drutopia_article.git", + "reference": "8.x-1.0-beta3" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/drutopia_article-8.x-1.0-beta3.zip", + "reference": "8.x-1.0-beta3", + "shasum": "b39e7808288255a88668b8ba8768baf79e7b15a7" + }, + "require": { + "drupal/block_visibility_groups": "^1.3", + "drupal/config_actions": "^1.0", + "drupal/core": "*", + "drupal/ctools": "^3.0", + "drupal/drutopia_comment": "*", + "drupal/drutopia_core": "*", + "drupal/drutopia_people": "*", + "drupal/drutopia_seo": "^1.0-alpha1", + "drupal/drutopia_site": "*", + "drupal/ds": "^3.1", + "drupal/entity_reference_revisions": "*", + "drupal/facets": "^1.1", + "drupal/field_group": "^3.0-beta1", + "drupal/focal_point": "*", + "drupal/metatag": "*", + "drupal/paragraphs": "*", + "drupal/pathauto": "^1.3", + "drupal/search_api": "*", + "drupal/token": "^1.4" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-beta3", + "datestamp": "1559237586", + "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": "cedewey", + "homepage": "https://www.drupal.org/user/38694" }, { - "name": "wolcen", - "homepage": "https://www.drupal.org/user/3099655" + "name": "drutopia_gitlab", + "homepage": "https://www.drupal.org/user/3514271" + }, + { + "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" + } + ], + "description": "Drutopia Article is a base feature providing an article content type and related configuration.", + "homepage": "https://gitlab.com/drutopia/drutopia_article", + "support": { + "source": "https://git.drupalcode.org/project/drutopia_article" + } + }, + { + "name": "drupal/drutopia_blog", + "version": "1.0.0-beta3", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drutopia_blog.git", + "reference": "8.x-1.0-beta3" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/drutopia_blog-8.x-1.0-beta3.zip", + "reference": "8.x-1.0-beta3", + "shasum": "bc06460e45ee210c9b9f597d8294862e4ea352d6" + }, + "require": { + "drupal/block_visibility_groups": "^1.3", + "drupal/config_actions": "^1.0", + "drupal/core": "*", + "drupal/ctools": "^3.0", + "drupal/drutopia_comment": "*", + "drupal/drutopia_core": "*", + "drupal/drutopia_people": "*", + "drupal/drutopia_seo": "^1.0-alpha1", + "drupal/drutopia_site": "*", + "drupal/ds": "^3.1", + "drupal/entity_reference_revisions": "*", + "drupal/facets": "^1.1", + "drupal/field_group": "^3.0-beta1", + "drupal/focal_point": "*", + "drupal/metatag": "*", + "drupal/paragraphs": "*", + "drupal/pathauto": "^1.3", + "drupal/search_api": "*", + "drupal/token": "^1.4" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-beta3", + "datestamp": "1559237884", + "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": "cedewey", + "homepage": "https://www.drupal.org/user/38694" + }, + { + "name": "drutopia_gitlab", + "homepage": "https://www.drupal.org/user/3514271" + }, + { + "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" + } + ], + "description": "Drutopia Blog is a base feature providing a blog content type and related configuration.", + "homepage": "https://gitlab.com/drutopia/drutopia_blog", + "keywords": [ + "blogging", + "content", + "drutopia", + "journal" + ], + "support": { + "source": "https://gitlab.com/drutopia/drutopia_blog/tree/8.x-1.x", + "issues": "https://gitlab.com/drutopia/drutopia_blog/issues" + } + }, + { + "name": "drupal/drutopia_campaign", + "version": "1.0.0-beta3", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drutopia_campaign.git", + "reference": "8.x-1.0-beta3" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/drutopia_campaign-8.x-1.0-beta3.zip", + "reference": "8.x-1.0-beta3", + "shasum": "ea6d0d33f9b7e2ec68892a769bb95c394f0f5197" + }, + "require": { + "drupal/config_actions": "^1.0-beta1", + "drupal/core": "*", + "drupal/drutopia_core": "^1.0-alpha1", + "drupal/drutopia_seo": "^1.0-alpha1", + "drupal/ds": "^3.0-rc1", + "drupal/entity_reference_revisions": "*", + "drupal/field_group": "^3.0-beta1", + "drupal/focal_point": "*", + "drupal/metatag": "*", + "drupal/paragraphs": "^1.1", + "drupal/pathauto": "^1.0", + "drupal/search_api": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-beta3", + "datestamp": "1559237884", + "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": "cedewey", + "homepage": "https://www.drupal.org/user/38694" + }, + { + "name": "drutopia_gitlab", + "homepage": "https://www.drupal.org/user/3514271" + }, + { + "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" + } + ], + "description": "Drutopia Campaign provides a Campaign content type, including background information as well as ability to list demands and updates, and related configuration.", + "homepage": "https://gitlab.com/drutopia/drutopia_campaign", + "keywords": [ + "campaign", + "content", + "drutopia", + "initiative" + ], + "support": { + "source": "https://gitlab.com/drutopia/drutopia_campaign/tree/8.x-1.x", + "issues": "https://gitlab.com/drutopia/drutopia_campaign/issues" + } + }, + { + "name": "drupal/drutopia_collection", + "version": "dev-8.x-1.x", + "source": { + "type": "git", + "url": "git@gitlab.com:drutopia/drutopia_collection.git", + "reference": "ec9e99b42debe91d0b80dfd7d06c53f7831c1c35" + }, + "require": { + "drupal/config_actions": "^1.0", + "drupal/ctools": "^3.0", + "drupal/drutopia_people": "^1.0-beta3", + "drupal/drutopia_seo": "^1.0-beta2", + "drupal/ds": "^3.1", + "drupal/metatag": "^1.9" + }, + "type": "drupal-module", + "license": [ + "GPL-2.0+" + ], + "description": "Drutopia Collection is a feature providing the ability to create collections to bring together ordered listings of Articles, Blog posts, or other content. This is useful for magazine issues or online books (referencing each chapter) or to create a meta-resource of recommended resources and people. an article content type and related configuration.", + "homepage": "https://gitlab.com/drutopia/drutopia_collection", + "time": "2019-07-29T16:18:26+00:00" + }, + { + "name": "drupal/drutopia_comment", + "version": "1.0.0-beta1", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drutopia_comment.git", + "reference": "8.x-1.0-beta1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/drutopia_comment-8.x-1.0-beta1.zip", + "reference": "8.x-1.0-beta1", + "shasum": "ddedcc571efa3ea32cbc08dffd29863b2884dbac" + }, + "require": { + "drupal/config_actions": "^1.0-beta1", + "drupal/core": "*", + "drupal/drutopia_core": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev", + "dev-8.x-1.x": "^1.0-alpha1" + }, + "drupal": { + "version": "8.x-1.0-beta1", + "datestamp": "1540932180", + "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": "cedewey", + "homepage": "https://www.drupal.org/user/38694" + }, + { + "name": "drutopia_gitlab", + "homepage": "https://www.drupal.org/user/3514271" + }, + { + "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" + } + ], + "description": "Drutopia comment is a base feature providing comments and related configuration.", + "homepage": "https://gitlab.com/drutopia/drutopia_comment", + "keywords": [ + "comments", + "content", + "discussion", + "drutopia" + ], + "support": { + "source": "https://gitlab.com/drutopia/drutopia_comment/tree/8.x-1.x", + "issues": "https://gitlab.com/drutopia/drutopia_comment/issues" + } + }, + { + "name": "drupal/drutopia_core", + "version": "1.0.0-beta3", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drutopia_core.git", + "reference": "8.x-1.0-beta3" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/drutopia_core-8.x-1.0-beta3.zip", + "reference": "8.x-1.0-beta3", + "shasum": "4cba6ea64c485fcfbabc04335e059b0a646c83eb" + }, + "require": { + "drupal/config_actions": "^1.0", + "drupal/config_perms": "^2.0-beta1", + "drupal/core": "^8.6", + "drupal/crop": "^1.5", + "drupal/default_content": "^1.0-alpha8", + "drupal/ds": "^3.1", + "drupal/entity_reference_revisions": "^1.5", + "drupal/facets": "^1.3", + "drupal/faqfield": "^1.1", + "drupal/focal_point": "^1.0", + "drupal/metatag": "^1.7", + "drupal/paragraphs": "^1.3", + "drupal/search_api": "^1.9", + "drupal/search_api_db": "*", + "drupal/video_embed_field": "^2.0" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-beta3", + "datestamp": "1559250481", + "security-coverage": { + "status": "not-covered", + "message": "Project has not opted into security advisory coverage!" + } + }, + "patches": { + "drupal/entity_reference_revisions": { + "Support normalization without local revision ID": "https://www.drupal.org/files/issues/entity_reference_revisions-normalizer-2913713-2.patch" + }, + "drupal/facets": { + "Hide facets when it is configured to hide the block without losing support for bigpipe and ajax facets": "https://www.drupal.org/files/issues/2019-04-08/facets-empty-block-2984465-26.patch" + }, + "drupal/search_api": { + "Notice: Undefined index: total When we enable the module in the installation step": "https://www.drupal.org/files/issues/2931562-13--undefined_total_in_task_manager_batch_finish.patch" + } + }, + "patches_applied": { + "Remove default content": "patches/drutopia-core-remove-default-content.patch" + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "cedewey", + "homepage": "https://www.drupal.org/user/38694" + }, + { + "name": "drutopia_gitlab", + "homepage": "https://www.drupal.org/user/3514271" + }, + { + "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" + } + ], + "description": "Drutopia core is a base feature providing core components required by other features.", + "homepage": "https://gitlab.com/drutopia/drutopia_core", + "keywords": [ + "base", + "core", + "drutopia" + ], + "support": { + "source": "https://gitlab.com/drutopia/drutopia_core/tree/8.x-1.x", + "issues": "https://gitlab.com/drutopia/drutopia_core/issues" + } + }, + { + "name": "drupal/drutopia_event", + "version": "1.0.0-beta3", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drutopia_event.git", + "reference": "8.x-1.0-beta3" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/drutopia_event-8.x-1.0-beta3.zip", + "reference": "8.x-1.0-beta3", + "shasum": "4e23ac472b29ba9c0f436ac209bed4d5b70b49e3" + }, + "require": { + "drupal/block_visibility_groups": "^1.3", + "drupal/config_actions": "^1.0", + "drupal/core": "*", + "drupal/ctools": "^3.0", + "drupal/drutopia_core": "*", + "drupal/drutopia_seo": "^1.0-alpha1", + "drupal/ds": "^3.1", + "drupal/entity_reference_revisions": "*", + "drupal/facets": "^1.1", + "drupal/field_group": "*", + "drupal/focal_point": "*", + "drupal/metatag": "*", + "drupal/paragraphs": "*", + "drupal/pathauto": "^1.3", + "drupal/search_api": "*", + "drupal/token": "^1.4" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-beta3", + "datestamp": "1559238489", + "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": "cedewey", + "homepage": "https://www.drupal.org/user/38694" + }, + { + "name": "drutopia_gitlab", + "homepage": "https://www.drupal.org/user/3514271" + }, + { + "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" + } + ], + "description": "Drutopia Event is a base feature providing a event content type and related configuration.", + "homepage": "https://gitlab.com/drutopia/drutopia_event", + "keywords": [ + "calendar", + "date", + "drutopia", + "events" + ], + "support": { + "source": "https://gitlab.com/drutopia/drutopia_event/tree/8.x-1.x", + "issues": "https://gitlab.com/drutopia/drutopia_event/issues" + } + }, + { + "name": "drupal/drutopia_group", + "version": "1.0.0-beta3", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drutopia_group.git", + "reference": "8.x-1.0-beta3" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/drutopia_group-8.x-1.0-beta3.zip", + "reference": "8.x-1.0-beta3", + "shasum": "4b85c1df64d164f59b259039b2263298415953fe" + }, + "require": { + "drupal/address": "^1.0", + "drupal/config_actions": "*", + "drupal/config_perms": "*", + "drupal/core": "*", + "drupal/ctools": "*", + "drupal/drutopia_core": "^1.0-alpha1", + "drupal/ds": "*", + "drupal/entity_reference_revisions": "*", + "drupal/gnode": "*", + "drupal/group": "~1.0-beta5", + "drupal/paragraphs": "*", + "drupal/pathauto": "^1.0" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-beta3", + "datestamp": "1559238785", + "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": "cedewey", + "homepage": "https://www.drupal.org/user/38694" + }, + { + "name": "drutopia_gitlab", + "homepage": "https://www.drupal.org/user/3514271" + }, + { + "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" + } + ], + "description": "Drutopia Group provides a group content type that can be classified by a group type vocabulary and related configuration.", + "homepage": "https://gitlab.com/drutopia/drutopia_group", + "keywords": [ + "drutopia", + "grassroots", + "groups", + "organizations" + ], + "support": { + "source": "https://gitlab.com/drutopia/drutopia_group/tree/8.x-1.x", + "issues": "https://gitlab.com/drutopia/drutopia_group/issues" + } + }, + { + "name": "drupal/drutopia_landing_page", + "version": "1.0.0-beta1", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drutopia_landing_page.git", + "reference": "8.x-1.0-beta1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/drutopia_landing_page-8.x-1.0-beta1.zip", + "reference": "8.x-1.0-beta1", + "shasum": "1d4d924738b6ef3f27828723146dc86cab2a8223" + }, + "require": { + "cweagans/composer-patches": "^1.5.0", + "drupal/config_actions": "^1.0-beta1", + "drupal/core": "*", + "drupal/ctools": "^3.0", + "drupal/drutopia_core": "*", + "drupal/drutopia_seo": "^1.0-alpha1", + "drupal/ds": "^3.0-rc1", + "drupal/entity_reference_revisions": "*", + "drupal/exclude_node_title": "^1.0-beta1", + "drupal/metatag": "*", + "drupal/paragraphs": "*", + "drupal/pathauto": "^1.0", + "drupal/token": "^1.0" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-beta1", + "datestamp": "1540933681", + "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": "cedewey", + "homepage": "https://www.drupal.org/user/38694" + }, + { + "name": "drutopia_gitlab", + "homepage": "https://www.drupal.org/user/3514271" + }, + { + "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" + } + ], + "description": "Drutopia Landing Page is a base feature providing a landing page content type and related configuration.", + "homepage": "https://gitlab.com/drutopia/drutopia_landing_page", + "keywords": [ + "content", + "drutopia", + "entry", + "standalone" + ], + "support": { + "source": "https://gitlab.com/drutopia/drutopia_landing_page/tree/8.x-1.x", + "issues": "https://gitlab.com/drutopia/drutopia_landing_page/issues" + } + }, + { + "name": "drupal/drutopia_page", + "version": "1.0.0-beta3", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drutopia_page.git", + "reference": "8.x-1.0-beta3" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/drutopia_page-8.x-1.0-beta3.zip", + "reference": "8.x-1.0-beta3", + "shasum": "27500afb0cd9d5d25a8d7d5e06e8a0c950b43f2a" + }, + "require": { + "drupal/config_actions": "^1.0-beta1", + "drupal/core": "*", + "drupal/ctools": "^3.0", + "drupal/drutopia_core": "*", + "drupal/drutopia_seo": "^1.0-alpha1", + "drupal/ds": "^3.0-rc1", + "drupal/entity_reference_revisions": "*", + "drupal/metatag": "*", + "drupal/paragraphs": "*", + "drupal/pathauto": "^1.0", + "drupal/token": "^1.0" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-beta3", + "datestamp": "1559238785", + "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": "cedewey", + "homepage": "https://www.drupal.org/user/38694" + }, + { + "name": "drutopia_gitlab", + "homepage": "https://www.drupal.org/user/3514271" + }, + { + "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" + } + ], + "description": "Drutopia Page is a base feature providing a page content type and related configuration.", + "homepage": "https://gitlab.com/drutopia/drutopia_page", + "keywords": [ + "content", + "drutopia", + "pages" + ], + "support": { + "source": "https://gitlab.com/drutopia/drutopia_page/tree/8.x-1.x", + "issues": "https://gitlab.com/drutopia/drutopia_page/issues" + } + }, + { + "name": "drupal/drutopia_people", + "version": "1.0.0-beta3", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drutopia_people.git", + "reference": "8.x-1.0-beta3" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/drutopia_people-8.x-1.0-beta3.zip", + "reference": "8.x-1.0-beta3", + "shasum": "58cebbede73784145a7a2a7e1723557c7318cfb3" + }, + "require": { + "drupal/config_actions": "^1.0-beta1", + "drupal/core": "*", + "drupal/ctools": "*", + "drupal/drutopia_core": "^1.0-alpha1", + "drupal/drutopia_seo": "^1.0-alpha1", + "drupal/ds": "^3.0-rc1", + "drupal/entity_reference_revisions": "*", + "drupal/field_group": "^3.0-dev", + "drupal/focal_point": "*", + "drupal/metatag": "*", + "drupal/paragraphs": "^1.1", + "drupal/pathauto": "^1.0", + "drupal/search_api": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-beta3", + "datestamp": "1559239088", + "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": "cedewey", + "homepage": "https://www.drupal.org/user/38694" + }, + { + "name": "drutopia_gitlab", + "homepage": "https://www.drupal.org/user/3514271" + }, + { + "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" + } + ], + "description": "Drutopia People provides a People content type for showing visitors information about staff, volunteers, contributors, and more.", + "homepage": "https://gitlab.com/drutopia/drutopia_people", + "keywords": [ + "biography", + "content", + "drutopia", + "person", + "profile", + "staff", + "volunteers" + ], + "support": { + "source": "https://gitlab.com/drutopia/drutopia_people/tree/8.x-1.x", + "issues": "https://gitlab.com/drutopia/drutopia_people/issues" + } + }, + { + "name": "drupal/drutopia_related_content", + "version": "1.0.0-beta2", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drutopia_related_content.git", + "reference": "8.x-1.0-beta2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/drutopia_related_content-8.x-1.0-beta2.zip", + "reference": "8.x-1.0-beta2", + "shasum": "1c0b1870b44a026548399ca4e529acac7c995973" + }, + "require": { + "drupal/block_visibility_groups": "^1.3", + "drupal/core": "*", + "drupal/drutopia_core": "^1.0-alpha5", + "drupal/similarterms": "^1.3" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-beta2", + "datestamp": "1559239088", + "security-coverage": { + "status": "not-covered", + "message": "Project has not opted into security advisory coverage!" + } + }, + "patches": { + "drupal/similarterms": { + "PHP fatal error, SimilarTermsArgument::query() must be compatible with NumericArgument": "https://www.drupal.org/files/issues/query_4.patch" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "cedewey", + "homepage": "https://www.drupal.org/user/38694" + }, + { + "name": "drutopia_gitlab", + "homepage": "https://www.drupal.org/user/3514271" + }, + { + "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" + } + ], + "description": "Provides related content on node pages generated via similar terms.", + "homepage": "https://gitlab.com/drutopia/drutopia_related_content", + "keywords": [ + "content", + "drutopia", + "relations", + "similar" + ], + "support": { + "source": "https://gitlab.com/drutopia/drutopia_related_content/tree/8.x-1.x", + "issues": "https://gitlab.com/drutopia/drutopia_related_content/issues" + } + }, + { + "name": "drupal/drutopia_resource", + "version": "1.0.0-beta3", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drutopia_resource.git", + "reference": "8.x-1.0-beta3" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/drutopia_resource-8.x-1.0-beta3.zip", + "reference": "8.x-1.0-beta3", + "shasum": "95bc86c6c7e043ce860960e77b6a0e7e3675963b" + }, + "require": { + "drupal/block_visibility_groups": "^1.3", + "drupal/config_actions": "^1.0", + "drupal/core": "*", + "drupal/ctools": "^3.0", + "drupal/drutopia_core": "*", + "drupal/drutopia_seo": "^1.0-alpha1", + "drupal/ds": "^3.1", + "drupal/entity_reference_revisions": "*", + "drupal/facets": "^1.1", + "drupal/field_group": "^3.0-beta1", + "drupal/focal_point": "*", + "drupal/metatag": "*", + "drupal/paragraphs": "*", + "drupal/pathauto": "^1.3", + "drupal/search_api": "*", + "drupal/token": "^1.4", + "drupal/video_embed_field": "^2.0" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-beta3", + "datestamp": "1559239390", + "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": "cedewey", + "homepage": "https://www.drupal.org/user/38694" + }, + { + "name": "drutopia_gitlab", + "homepage": "https://www.drupal.org/user/3514271" + }, + { + "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" + } + ], + "description": "Provides Resource content type and related configuration. A resource can be a file, such as a PDF, a link, such as a website URL, or an embedded video.", + "homepage": "https://gitlab.com/drutopia/drutopia_resource", + "keywords": [ + "content", + "drutopia", + "facets", + "files", + "filtering", + "resources", + "search" + ], + "support": { + "source": "https://gitlab.com/drutopia/drutopia_resource/tree/8.x-1.x", + "issues": "https://gitlab.com/drutopia/drutopia_resource/issues" + } + }, + { + "name": "drupal/drutopia_search", + "version": "1.0.0-beta2", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drutopia_search.git", + "reference": "8.x-1.0-beta2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/drutopia_search-8.x-1.0-beta2.zip", + "reference": "8.x-1.0-beta2", + "shasum": "8a42d35417eb5fa562151553771549d4abc8b993" + }, + "require": { + "drupal/block_visibility_groups": "^1.3", + "drupal/core": "*", + "drupal/drutopia_core": "^1.0-alpha5", + "drupal/facets": "*", + "drupal/search_api": "*", + "drupal/search_api_db": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-beta2", + "datestamp": "1559239684", + "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": "cedewey", + "homepage": "https://www.drupal.org/user/38694" + }, + { + "name": "drutopia_gitlab", + "homepage": "https://www.drupal.org/user/3514271" + }, + { + "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" + } + ], + "description": "Drutopia Search provides a search server, index, and view.", + "homepage": "https://gitlab.com/drutopia/drutopia_search", + "keywords": [ + "content", + "drutopia", + "finding", + "searching" + ], + "support": { + "source": "https://gitlab.com/drutopia/drutopia_search/tree/8.x-1.x", + "issues": "https://gitlab.com/drutopia/drutopia_search/issues" + } + }, + { + "name": "drupal/drutopia_seo", + "version": "1.0.0-beta2", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drutopia_seo.git", + "reference": "8.x-1.0-beta2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/drutopia_seo-8.x-1.0-beta2.zip", + "reference": "8.x-1.0-beta2", + "shasum": "5cbfa74b07273856b98fbbada36615d10e163553" + }, + "require": { + "drupal/config_actions": "^1.0-beta1", + "drupal/core": "*", + "drupal/drutopia_core": "*", + "drupal/metatag": "^1.1", + "drupal/redirect": "^1.3" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-beta2", + "datestamp": "1559239684", + "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": "cedewey", + "homepage": "https://www.drupal.org/user/38694" + }, + { + "name": "drutopia_gitlab", + "homepage": "https://www.drupal.org/user/3514271" + }, + { + "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" + } + ], + "description": "Sensible Search Engine Optimization default configuration for a site.", + "homepage": "https://gitlab.com/drutopia/drutopia_seo", + "keywords": [ + "SEO", + "content", + "discoverability", + "drutopia", + "metatags", + "optimization", + "visibility" + ], + "support": { + "source": "https://gitlab.com/drutopia/drutopia_seo/tree/8.x-1.x", + "issues": "https://gitlab.com/drutopia/drutopia_seo/issues" + } + }, + { + "name": "drupal/drutopia_site", + "version": "1.0.0-beta1", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drutopia_site.git", + "reference": "8.x-1.0-beta1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/drutopia_site-8.x-1.0-beta1.zip", + "reference": "8.x-1.0-beta1", + "shasum": "8a01759078255ffea194c65d3f25456d82367117" + }, + "require": { + "drupal/admin_links_access_filter": "^1.0-alpha3", + "drupal/admin_toolbar": "^1.19", + "drupal/admin_toolbar_tools": "*", + "drupal/config_actions": "^1.0-beta1", + "drupal/core": "*", + "drupal/drutopia_core": "^1.0-alpha1", + "drupal/entity_reference_revisions": "*", + "drupal/paragraphs": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-beta1", + "datestamp": "1540935780", + "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": "cedewey", + "homepage": "https://www.drupal.org/user/38694" + }, + { + "name": "drutopia_gitlab", + "homepage": "https://www.drupal.org/user/3514271" + }, + { + "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" + } + ], + "description": "Drutopia site is a base feature providing site components.", + "homepage": "https://gitlab.com/drutopia/drutopia_site", + "keywords": [ + "base", + "drutopia", + "site" + ], + "support": { + "source": "https://gitlab.com/drutopia/drutopia_site/tree/8.x-1.x", + "issues": "https://gitlab.com/drutopia/drutopia_site/issues" + } + }, + { + "name": "drupal/drutopia_social", + "version": "1.0.0-beta1", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drutopia_social.git", + "reference": "8.x-1.0-beta1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/drutopia_social-8.x-1.0-beta1.zip", + "reference": "8.x-1.0-beta1", + "shasum": "f7bf2a1f2482fa15ee028b07611427838baf71b3" + }, + "require": { + "drupal/core": "*", + "drupal/social_media_links": "^2.0" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-beta1", + "datestamp": "1540936080", + "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": "cedewey", + "homepage": "https://www.drupal.org/user/38694" + }, + { + "name": "drutopia_gitlab", + "homepage": "https://www.drupal.org/user/3514271" + }, + { + "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" + } + ], + "description": "Drutopia Social provides a social media block, perhaps more in the future.", + "homepage": "https://gitlab.com/drutopia/drutopia_social", + "support": { + "source": "https://git.drupalcode.org/project/drutopia_social" + } + }, + { + "name": "drupal/drutopia_storyline", + "version": "1.0.0-beta3", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drutopia_storyline.git", + "reference": "8.x-1.0-beta3" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/drutopia_storyline-8.x-1.0-beta3.zip", + "reference": "8.x-1.0-beta3", + "shasum": "74ec37a2c9ab30cb28cf7fcf0eae684774f3cb81" + }, + "require": { + "drupal/config_actions": "*", + "drupal/core": "*", + "drupal/drutopia_core": "^1.0-beta1", + "drupal/drutopia_page": "^1.0-beta2", + "drupal/entity_reference_revisions": "*", + "drupal/field_group": "^3.0-beta1", + "drupal/paragraphs": "*" + }, + "require-dev": { + "drupal/drutopia_page": "*", + "drupal/entity_reference_revisions": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-beta3", + "datestamp": "1559239684", + "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": "cedewey", + "homepage": "https://www.drupal.org/user/38694" + }, + { + "name": "drutopia_gitlab", + "homepage": "https://www.drupal.org/user/3514271" + }, + { + "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" + } + ], + "description": "Provides storyline paragraphs and an accompanying module to add a storyline to a basic page so that you can provide a simple chronology or story in a timeline format.", + "homepage": "https://gitlab.com/drutopia/drutopia_storyline", + "keywords": [ + "chronology", + "content", + "drutopia", + "storyline", + "timeline" + ], + "support": { + "source": "https://gitlab.com/drutopia/drutopia_storyline/tree/8.x-1.x", + "issues": "https://gitlab.com/drutopia/drutopia_storyline/issues" + } + }, + { + "name": "drupal/drutopia_user", + "version": "1.0.0-beta1", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drutopia_user.git", + "reference": "8.x-1.0-beta1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/drutopia_user-8.x-1.0-beta1.zip", + "reference": "8.x-1.0-beta1", + "shasum": "22cdfd25ada1b3f3e50943451465b34c8e5174dc" + }, + "require": { + "drupal/core": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev", + "dev-8.x-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-beta1", + "datestamp": "1540936681", + "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": "cedewey", + "homepage": "https://www.drupal.org/user/38694" + }, + { + "name": "drutopia_gitlab", + "homepage": "https://www.drupal.org/user/3514271" + }, + { + "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" } ], "description": "Drutopia user is a base feature providing user-related configuration.", - "homepage": "https://git.drupalcode.org/project/drutopia_user", + "homepage": "https://gitlab.com/drutopia/drutopia_user", "keywords": [ "drutopia", "people", @@ -7815,45 +5458,51 @@ "users" ], "support": { - "source": "https://git.drupalcode.org/project/drutopia_user/-/tree/2.0.x", - "issues": "https://www.drupal.org/project/issues/drutopia_user" + "source": "https://gitlab.com/drutopia/drutopia_user/tree/8.x-1.x", + "issues": "https://gitlab.com/drutopia/drutopia_user/issues" } }, { "name": "drupal/ds", - "version": "3.30.0", + "version": "3.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/ds.git", - "reference": "8.x-3.30" + "reference": "8.x-3.4" }, "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.4.zip", + "reference": "8.x-3.4", + "shasum": "ebf070ba2f7cf78a62cf74678a9948546a93e773" }, "require": { - "drupal/core": "^10.2 || ^11" + "drupal/core": "^8.6" }, "require-dev": { - "drupal/devel": "5.x-dev", - "drupal/field_group": "3.x-dev" + "drupal/devel": "*", + "drupal/field_group": "*" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-3.x": "3.x-dev" + }, "drupal": { - "version": "8.x-3.30", - "datestamp": "1746467919", + "version": "8.x-3.4", + "datestamp": "1567165687", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } + }, + "patches_applied": { + "Parent theme template inheritance bug": "https://www.drupal.org/files/issues/parent_profile_template-2895316-3.patch" } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { @@ -7889,543 +5538,44 @@ "irc": "irc://irc.freenode.org/drupal-contribute" } }, - { - "name": "drupal/dynamic_entity_reference", - "version": "3.2.1", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/dynamic_entity_reference.git", - "reference": "3.2.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/dynamic_entity_reference-3.2.1.zip", - "reference": "3.2.1", - "shasum": "051c565f6580f512cbc7ddc3f49fdd6ba8d406af" - }, - "require": { - "drupal/core": "^10 || ^11", - "php": ">=8.1" - }, - "require-dev": { - "drupal/diff": "*", - "mglaman/phpstan-drupal": "^1.1", - "phpstan/phpstan": "^1.1", - "phpstan/phpstan-deprecation-rules": "^1.0" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "3.2.1", - "datestamp": "1740521060", - "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": "Lee Rowlands", - "homepage": "https://www.drupal.org/u/larowlan", - "role": "Maintainer" - }, - { - "name": "Jibran Ijaz", - "homepage": "https://www.drupal.org/u/jibran", - "role": "Maintainer" - }, - { - "name": "larowlan", - "homepage": "https://www.drupal.org/user/395439" - } - ], - "description": "Provides a field that allows an entity-reference field to reference more than one entity type.", - "homepage": "http://drupal.org/project/dynamic_entity_reference", - "support": { - "source": "http://cgit.drupalcode.org/dynamic_entity_reference", - "issues": "http://drupal.org/project/dynamic_entity_reference", - "irc": "irc://irc.freenode.org/drupal-contribute" - } - }, - { - "name": "drupal/easy_breadcrumb", - "version": "2.0.9", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/easy_breadcrumb.git", - "reference": "2.0.9" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/easy_breadcrumb-2.0.9.zip", - "reference": "2.0.9", - "shasum": "9e7c33e2ec0637d37d509776795a476f2f2d9bb8" - }, - "require": { - "drupal/core": "^9.2 || ^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.9", - "datestamp": "1732752214", - "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": "Neslee Canil Pinto", - "homepage": "https://www.drupal.org/u/neslee-canil-pinto", - "role": "Maintainer" - }, - { - "name": "Greg Boggs", - "homepage": "https://www.drupal.org/u/greg-boggs", - "role": "Maintainer" - }, - { - "name": "diamondsea", - "homepage": "https://www.drupal.org/user/430714" - }, - { - "name": "greg boggs", - "homepage": "https://www.drupal.org/user/153069" - }, - { - "name": "hmartens", - "homepage": "https://www.drupal.org/user/622826" - }, - { - "name": "loopduplicate", - "homepage": "https://www.drupal.org/user/717290" - }, - { - "name": "neslee canil pinto", - "homepage": "https://www.drupal.org/user/3580850" - }, - { - "name": "nickdickinsonwilde", - "homepage": "https://www.drupal.org/user/3094661" - }, - { - "name": "rakesh.gectcr", - "homepage": "https://www.drupal.org/user/1177822" - }, - { - "name": "renatog", - "homepage": "https://www.drupal.org/user/3326031" - }, - { - "name": "sonemonu", - "homepage": "https://www.drupal.org/user/1667988" - }, - { - "name": "spuky", - "homepage": "https://www.drupal.org/user/209353" - }, - { - "name": "tatarbj", - "homepage": "https://www.drupal.org/user/649590" - } - ], - "description": "Adds configuration to the system breadcrumbs.", - "homepage": "https://www.drupal.org/project/easy_breadcrumb", - "support": { - "source": "https://git.drupalcode.org/project/easy_breadcrumb", - "issues": "https://www.drupal.org/project/issues/easy_breadcrumb" - } - }, - { - "name": "drupal/eca", - "version": "1.1.13", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/eca.git", - "reference": "1.1.13" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/eca-1.1.13.zip", - "reference": "1.1.13", - "shasum": "b7243501ab454dd81085c82e9efe01def7c66ed4" - }, - "require": { - "dragonmantank/cron-expression": "^3.1", - "drupal/core": "^9.5 || ^10", - "ext-dom": "*", - "ext-json": "*", - "mtownsend/xml-to-array": "^2.0", - "php": ">=7.4" - }, - "require-dev": { - "drupal/eca_ui": "*", - "drupal/token": "^1.10" - }, - "suggest": { - "drupal/context_stack": "Integrates ECA with Context Stacks for more fine-grained control", - "drupal/eca_state_machine": "Integrates ECA with State Machine functionality", - "drupal/eca_tamper": "Integrates ECA with the Tamper API", - "drupal/entity_share": "Integrates ECA with Entity Share functionality", - "drupal/group_action": "Integrates ECA with Group Actions if you're using groups", - "drupal/token": "Provides the token browser in the UI and offers more token values" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "1.1.13", - "datestamp": "1748859330", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - }, - "drush": { - "services": { - "drush.services.yml": "^9 || ^10 || ^11" - } - } - }, - "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": "Event, Conditions, Actions - powerful, versatile, and user-friendly rules engine for Drupal", - "homepage": "https://www.drupal.org/project/eca", - "support": { - "source": "https://drupal.org/project/eca", - "issues": "https://drupal.org/project/issues/eca" - } - }, - { - "name": "drupal/eca_context", - "version": "1.0.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/eca_context.git", - "reference": "1.0.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/eca_context-1.0.0.zip", - "reference": "1.0.0", - "shasum": "5f5efd8c389b013cec26a476fad89cceb8f42f17" - }, - "require": { - "drupal/context_stack": "^1.0", - "drupal/core": "^9 || ^10", - "drupal/eca": "^1.0", - "php": ">=7.4" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "1.0.0", - "datestamp": "1659336697", - "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": "mxh", - "homepage": "https://www.drupal.org/user/1124384" - } - ], - "description": "A Drupal module which provides a context stack for ECA.", - "homepage": "https://www.drupal.org/project/eca_context", - "support": { - "source": "https://drupal.org/project/eca_context", - "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", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/editor_advanced_link.git", - "reference": "2.3.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/editor_advanced_link-2.3.1.zip", - "reference": "2.3.1", - "shasum": "5ceb0eb21a4015389cfe77fff9e7c3d53ef41667" - }, - "require": { - "drupal/core": "^10.5 || ^11.2" - }, - "require-dev": { - "drupal/ckeditor": "*", - "phpro/grumphp": "^2.0" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.3.1", - "datestamp": "1751979921", - "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": "duaelfr", - "homepage": "https://www.drupal.org/user/931394" - }, - { - "name": "vladimiraus", - "homepage": "https://www.drupal.org/user/673120" - } - ], - "description": "Editor Advanced link", - "homepage": "https://www.drupal.org/project/editor_advanced_link", - "support": { - "source": "https://git.drupalcode.org/project/editor_advanced_link" - } - }, - { - "name": "drupal/editoria11y", - "version": "2.2.13", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/editoria11y.git", - "reference": "2.2.13" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/editoria11y-2.2.13.zip", - "reference": "2.2.13", - "shasum": "75c337db893c935d60935bcdf03ae40c186fbba6" - }, - "require": { - "drupal/core": "^9 || ^10 || ^11" - }, - "conflict": { - "drupal/csp": "<1.24" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.2.13", - "datestamp": "1752844518", - "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": "John Jameson", - "homepage": "https://www.drupal.org/u/itmaybejj", - "role": "Maintainer" - }, - { - "name": "Brian Osborne", - "homepage": "https://www.drupal.org/u/bkosborne", - "role": "Maintainer" - }, - { - "name": "Jason Partyka", - "homepage": "https://www.drupal.org/u/partyka", - "role": "Maintainer" - }, - { - "name": "See other contributors", - "homepage": "https://www.drupal.org/node/3187132/committers", - "role": "contributor" - } - ], - "description": "Editoria11y (\"editorial accessibility\") is a user-friendly accessibility checker.", - "homepage": "https://drupal.org/project/editoria11y", - "support": { - "source": "https://git.drupalcode.org/project/editoria11y", - "issues": "https://drupal.org/project/issues/editoria11y" - } - }, - { - "name": "drupal/empty_page", - "version": "dev-8.x-1.x", - "source": { - "type": "git", - "url": "git@git.drupal.org:issue/empty_page-3287186.git", - "reference": "cb8e4a1b3c7d4b45d8e4c8c470413022ca616fab" - }, - "type": "drupal-module", - "license": [ - "GPL-2.0-or-later" - ], - "description": "A simple empty page solution. Assists in creating empty menu callbacks mostly used for pages that only consist of blocks.", - "homepage": "https://www.drupal.org/project/empty_page", - "support": { - "issues": "https://www.drupal.org/project/issues/empty_page", - "source": "https://git.drupalcode.org/project/empty_page" - }, - "time": "2024-10-22T10:44:11+00:00" - }, { "name": "drupal/entity", - "version": "1.6.0", + "version": "1.0.0-rc3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/entity.git", - "reference": "8.x-1.6" + "reference": "8.x-1.0-rc3" }, "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.0-rc3.zip", + "reference": "8.x-1.0-rc3", + "shasum": "6b4ccc0231c52ed9594502a0718057f53d98404d" }, "require": { - "drupal/core": "^10.1 || ^11" + "drupal/core": "^8.6" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.6", - "datestamp": "1740006812", + "version": "8.x-1.0-rc3", + "datestamp": "1559579884", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "RC releases are not covered by Drupal security advisories." } } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { - "name": "berdir", + "name": "Berdir", "homepage": "https://www.drupal.org/user/214652" }, { @@ -8443,126 +5593,49 @@ { "name": "fago", "homepage": "https://www.drupal.org/user/16747" - }, - { - "name": "mglaman", - "homepage": "https://www.drupal.org/user/2416470" - }, - { - "name": "tr", - "homepage": "https://www.drupal.org/user/202830" } ], "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.", - "homepage": "https://www.drupal.org/project/entity", + "homepage": "http://drupal.org/project/entity", "support": { - "source": "https://git.drupalcode.org/project/entity", - "issues": "https://www.drupal.org/project/issues/entity" - } - }, - { - "name": "drupal/entity_reference_override", - "version": "2.0.0-beta4", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/entity_reference_override.git", - "reference": "2.0.0-beta4" - }, - "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" - }, - "require": { - "drupal/core": "^10.1 || ^11" - }, - "require-dev": { - "drupal/entity_browser": "*", - "drupal/entity_reference_revisions": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.0-beta4", - "datestamp": "1744343662", - "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-or-later" - ], - "authors": [ - { - "name": "alexpott", - "homepage": "https://www.drupal.org/user/157725" - }, - { - "name": "dawehner", - "homepage": "https://www.drupal.org/user/99340" - }, - { - "name": "eaton", - "homepage": "https://www.drupal.org/user/16496" - }, - { - "name": "elkaro", - "homepage": "https://www.drupal.org/user/3577260" - }, - { - "name": "mlncn", - "homepage": "https://www.drupal.org/user/64383" - }, - { - "name": "ultimike", - "homepage": "https://www.drupal.org/user/51132" - } - ], - "description": "Entity reference with overridable title", - "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" + "source": "https://git.drupalcode.org/project/entity" } }, { "name": "drupal/entity_reference_revisions", - "version": "1.12.0", + "version": "1.6.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/entity_reference_revisions.git", - "reference": "8.x-1.12" + "reference": "8.x-1.6" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.12.zip", - "reference": "8.x-1.12", - "shasum": "2a2ff8617c7ce01b56df1caaf0a563da04948e26" + "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.6.zip", + "reference": "8.x-1.6", + "shasum": "82d515de04d3a75fb677ed82241a6aff3f54ab47" }, "require": { - "drupal/core": "^9 || ^10 || ^11" + "drupal/core": "~8.0" }, "require-dev": { - "drupal/diff": "^1 || ^2" + "drupal/diff": "*" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.12", - "datestamp": "1722804497", + "version": "8.x-1.6", + "datestamp": "1539588781", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } }, - "drush": { - "services": { - "drush.services.yml": "^9 || ^10 || ^11" - } + "patches_applied": { + "Support normalization without local revision ID": "https://www.drupal.org/files/issues/entity_reference_revisions-normalizer-2913713-2.patch" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -8571,7 +5644,7 @@ ], "authors": [ { - "name": "berdir", + "name": "Berdir", "homepage": "https://www.drupal.org/user/214652" }, { @@ -8587,160 +5660,37 @@ "homepage": "https://www.drupal.org/user/227761" } ], - "description": "Entity Reference Revisions", + "description": "Adds a Entity Reference field type with revision support.", "homepage": "https://www.drupal.org/project/entity_reference_revisions", "support": { "source": "https://git.drupalcode.org/project/entity_reference_revisions" } }, - { - "name": "drupal/entitygroupfield", - "version": "2.0.0-alpha1", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/entitygroupfield.git", - "reference": "2.0.0-alpha1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/entitygroupfield-2.0.0-alpha1.zip", - "reference": "2.0.0-alpha1", - "shasum": "8a652543ba7cf587d023c8e4e8652592691b3565" - }, - "require": { - "drupal/core": "^9.2 || ^10", - "drupal/group": "^2.0 || ^3.0" - }, - "require-dev": { - "drupal/variationcache": "~1.0" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.0-alpha1", - "datestamp": "1687130173", - "security-coverage": { - "status": "not-covered", - "message": "Alpha releases are not covered by Drupal security advisories." - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "Derek Wright", - "homepage": "https://www.drupal.org/u/dww", - "role": "Maintainer" - }, - { - "name": "Ivan Duarte", - "homepage": "https://www.drupal.org/u/jidrone", - "role": "Co-Maintainer" - } - ], - "description": "Defines a field to view and edit the groups associated with content.", - "homepage": "http://drupal.org/project/entitygroupfield", - "support": { - "source": "https://git.drupalcode.org/project/entitygroupfield", - "issues": "https://drupal.org/project/issues/entitygroupfield" - } - }, - { - "name": "drupal/environment_indicator", - "version": "4.0.25", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/environment_indicator.git", - "reference": "4.0.25" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/environment_indicator-4.0.25.zip", - "reference": "4.0.25", - "shasum": "1bb58f759644efea79a44de2af5986eee9c1966e" - }, - "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", - "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": "Tom Kirkpatrick (mrfelton)", - "homepage": "https://www.drupal.org/u/mrfelton", - "role": "Original author" - }, - { - "name": "Mateu Aguiló Bosch (e0ipso)", - "homepage": "https://www.drupal.org/u/e0ipso", - "email": "mateu@mateuaguilo.com", - "role": "Maintainer" - }, - { - "name": "Ignacio Sánchez (isholgueras)", - "homepage": "https://www.drupal.org/u/isholgueras", - "email": "nacho@isholgueras.com", - "role": "Co-maintainer" - }, - { - "name": "Chris Green (trackleft2)", - "homepage": "https://www.drupal.org/u/trackleft2", - "role": "Co-maintainer" - }, - { - "name": "trackleft2", - "homepage": "https://www.drupal.org/user/2860655" - } - ], - "description": "Environment Indicator adds some visual cues 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" - } - }, { "name": "drupal/eu_cookie_compliance", - "version": "1.28.0", + "version": "1.8.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/eu-cookie-compliance.git", - "reference": "8.x-1.28" + "reference": "8.x-1.8" }, "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.8.zip", + "reference": "8.x-1.8", + "shasum": "f4b5c48d0d4347c414b91eaa59acad88707b5907" }, "require": { - "drupal/core": "^8.9 || ^9 || ^10 || ^11" + "drupal/core": "*" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.28", - "datestamp": "1753332673", + "version": "8.x-1.8", + "datestamp": "1563997086", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8749,7 +5699,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { @@ -8762,14 +5712,37 @@ "homepage": "https://www.drupal.org/u/svenryen", "role": "Maintainer" }, - { - "name": "Neslee Canil Pinto", - "homepage": "https://www.drupal.org/u/neslee-canil-pinto", - "role": "Maintainer" - }, { "name": "See other contributors", "homepage": "https://www.drupal.org/node/1538032/committers" + }, + { + "name": "dakku", + "homepage": "https://www.drupal.org/user/97634" + }, + { + "name": "grzegorz.bartman", + "homepage": "https://www.drupal.org/user/363120" + }, + { + "name": "id.tornado", + "homepage": "https://www.drupal.org/user/2754049" + }, + { + "name": "killua99", + "homepage": "https://www.drupal.org/user/699418" + }, + { + "name": "mibfire", + "homepage": "https://www.drupal.org/user/155136" + }, + { + "name": "naveenvalecha", + "homepage": "https://www.drupal.org/user/2665733" + }, + { + "name": "svenryen", + "homepage": "https://www.drupal.org/user/667244" } ], "description": "This module aims at making the website compliant with the new EU cookie regulation.", @@ -8781,101 +5754,41 @@ "GDPR" ], "support": { - "source": "https://git.drupalcode.org/project/eu-cookie-compliance", - "docs": "https://www.drupal.org/docs/contributed-modules/eu-cookie-compliance", + "source": "https://cgit.drupalcode.org/eu-cookie-compliance", + "docs": "https://www.drupal.org/project/eu_cookie_compliance", "forum": "https://drupal.stackexchange.com/search?q=eu+cookie+compliance", "issues": "https://www.drupal.org/project/issues/eu_cookie_compliance?version=8.x", - "slack": "https://app.slack.com/client/T06GX3JTS/C012XBTH81E" - } - }, - { - "name": "drupal/eva", - "version": "3.1.1", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/eva.git", - "reference": "3.1.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/eva-3.1.1.zip", - "reference": "3.1.1", - "shasum": "11df2285cc479033637b9aac2fe65f681e5ed38b" - }, - "require": { - "drupal/core": "^9.5.11 || ^10 || ^11" - }, - "suggest": { - "drupal/token": "Enable the argument token browser" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "3.1.1", - "datestamp": "1732295600", - "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": "ahebrank", - "homepage": "https://www.drupal.org/user/3190515" - }, - { - "name": "Crell", - "homepage": "https://www.drupal.org/user/26398" - }, - { - "name": "eaton", - "homepage": "https://www.drupal.org/user/16496" - }, - { - "name": "geek-merlin", - "homepage": "https://www.drupal.org/user/229048" - }, - { - "name": "mkadin", - "homepage": "https://www.drupal.org/user/1093166" - } - ], - "description": "Attach a view to an entity", - "homepage": "https://www.drupal.org/project/eva", - "support": { - "source": "https://git.drupalcode.org/project/eva" + "irc": "irc://irc.freenode.org/drupal-contribute" } }, { "name": "drupal/exclude_node_title", - "version": "1.4.0", + "version": "1.0.0-beta1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/exclude_node_title.git", - "reference": "8.x-1.4" + "reference": "8.x-1.0-beta1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/exclude_node_title-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "c6f6c0e06c202f3ace436867a459f8672e1494f5" + "url": "https://ftp.drupal.org/files/projects/exclude_node_title-8.x-1.0-beta1.zip", + "reference": "8.x-1.0-beta1", + "shasum": "04b307c90c71285f421f8727d5ba8fd84b3df066" }, "require": { - "drupal/core": "^8 || ^9 || ^10" + "drupal/core": "*" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.4", - "datestamp": "1659271679", + "version": "8.x-1.0-beta1", + "datestamp": "1452548339", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Beta releases are not covered by Drupal security advisories." } } }, @@ -8885,234 +5798,63 @@ ], "authors": [ { - "name": "Neslee Canil Pinto", - "homepage": "https://www.drupal.org/u/neslee-canil-pinto", - "role": "Maintainer" + "name": "fizk", + "homepage": "https://www.drupal.org/user/473174" }, { "name": "gabrielu", "homepage": "https://www.drupal.org/user/279352" }, { - "name": "neslee canil pinto", - "homepage": "https://www.drupal.org/user/3580850" + "name": "id.tarzanych", + "homepage": "https://www.drupal.org/user/2776543" }, { - "name": "smustgrave", - "homepage": "https://www.drupal.org/user/3252890" + "name": "jordanpagewhite", + "homepage": "https://www.drupal.org/user/3162067" } ], - "description": "Provides the option of excluding node title(s) from display by individual node, node bundle, and view mode.", + "description": "Excludes a node title from display. It provides a checkbox on node-edit pages for easier exclusion. You can also exclude title display from teaser pages.", "homepage": "https://www.drupal.org/project/exclude_node_title", "support": { - "source": "https://git.drupalcode.org/project/exclude_node_title", - "issues": "https://www.drupal.org/project/issues/exclude_node_title" - } - }, - { - "name": "drupal/exif_orientation", - "version": "1.5.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/exif_orientation.git", - "reference": "8.x-1.5" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/exif_orientation-8.x-1.5.zip", - "reference": "8.x-1.5", - "shasum": "9e5a9d06f974835ea7eee2da64a4b073099b6639" - }, - "require": { - "drupal/core": "^9.2 || ^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.5", - "datestamp": "1732132295", - "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": "heddn", - "homepage": "https://www.drupal.org/user/1463982" - }, - { - "name": "mglaman", - "homepage": "https://www.drupal.org/user/2416470" - }, - { - "name": "nickdickinsonwilde", - "homepage": "https://www.drupal.org/user/3094661" - } - ], - "description": "Rotates images per their EXIF Orientation", - "homepage": "https://www.drupal.org/project/exif_orientation", - "support": { - "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" + "source": "https://git.drupalcode.org/project/exclude_node_title" } }, { "name": "drupal/facets", - "version": "dev-3.0.x", + "version": "1.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/facets.git", - "reference": "3a5dd4df8d7b16d150fe5a2f7370f133a93a4fe4" + "reference": "8.x-1.4" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/facets-8.x-1.4.zip", + "reference": "8.x-1.4", + "shasum": "ee2d584b8a225ab981e313f6050e13bc9c98e40b" }, "require": { - "drupal/core": "^10.1 || ^11" - }, - "conflict": { - "drupal/core": "<10.1.0", - "drupal/search_api": "<1.14" + "drupal/core": "~8.0" }, "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": "*" - }, - "suggest": { - "drupal/better_exposed_filters": "Required for AJAX support for facets rendered as views exposed filters", - "drupal/jquery_ui_slider": "Required for the 'Facets Range Widget' module to work", - "drupal/jquery_ui_touch_punch": "Required for the 'Facets Range Widget' module to work" + "drupal/search_api": "~1.5" }, "type": "drupal-module", "extra": { "branch-alias": { - "dev-3.0.x": "3.0.x-dev" + "dev-1.x": "1.x-dev" }, "drupal": { - "version": "3.0.0+7-dev", - "datestamp": "1741877379", - "security-coverage": { - "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "See all contributors", - "homepage": "https://www.drupal.org/node/2348769/committers" - }, - { - "name": "drunken monkey", - "homepage": "https://www.drupal.org/user/205582" - }, - { - "name": "mkalkbrenner", - "homepage": "https://www.drupal.org/user/124705" - }, - { - "name": "nick_vh", - "homepage": "https://www.drupal.org/user/122682" - }, - { - "name": "strykaizer", - "homepage": "https://www.drupal.org/user/462700" - } - ], - "description": "The Facet module allows site builders to easily create and manage faceted search interfaces.", - "homepage": "https://www.drupal.org/project/facets", - "support": { - "source": "https://git.drupalcode.org/project/facets.git", - "issues": "https://www.drupal.org/project/issues/facets", - "irc": "irc://irc.freenode.org/drupal-search-api" - } - }, - { - "name": "drupal/fakeobjects", - "version": "2.0.1", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/fakeobjects.git", - "reference": "2.0.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/fakeobjects-2.0.1.zip", - "reference": "2.0.1", - "shasum": "a11cac7fa7fd2d511048ba0ff3d18321e767b296" - }, - "require": { - "drupal-ckeditor-libraries-group/fakeobjects": "^4.5.11", - "drupal/core": "^8 || ^9 || ^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.1", - "datestamp": "1740094419", + "version": "8.x-1.4", + "datestamp": "1556645881", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } + }, + "patches_applied": { + "Hide facets when it is configured to hide the block without losing support for bigpipe and ajax facets": "https://www.drupal.org/files/issues/2019-04-08/facets-empty-block-2984465-26.patch" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -9121,52 +5863,51 @@ ], "authors": [ { - "name": "Kevin Quillen (kevinquillen)", - "homepage": "https://www.drupal.org/u/kevinquillen", - "role": "Maintainer" + "name": "See all contributors", + "homepage": "https://www.drupal.org/node/2348769/committers" }, { - "name": "kevinquillen", - "homepage": "https://www.drupal.org/user/317279" + "name": "StryKaizer", + "homepage": "https://www.drupal.org/user/462700" }, { - "name": "xmacinfo", - "homepage": "https://www.drupal.org/user/12131" + "name": "borisson_", + "homepage": "https://www.drupal.org/user/2393360" } ], - "description": "Adds the FakeObjects plugin to CKEditor. This plugin is a utility plugin that is required by certain user-facing CKEditor plugins.", - "homepage": "http://drupal.org/project/fakeobjects", - "keywords": [ - "Drupal" - ], + "description": "The Facet module allows site builders to easily create and manage faceted search interfaces.", + "homepage": "https://www.drupal.org/project/facets", "support": { - "source": "http://cgit.drupalcode.org/fakeobjects", - "issues": "http://drupal.org/project/issues/fakeobjects" + "source": "git://git.drupal.org/project/facets.git", + "issues": "https://www.drupal.org/project/issues/facets", + "irc": "irc://irc.freenode.org/drupal-search-api" } }, { "name": "drupal/faqfield", - "version": "7.1.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/faqfield.git", - "reference": "8.x-7.1" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/faqfield-8.x-7.1.zip", - "reference": "8.x-7.1", - "shasum": "c602e57dc07926bc5a263f56ee36ba7afa8dd574" + "url": "https://ftp.drupal.org/files/projects/faqfield-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "61aeccae9ebf2347567df1a891772e88e9452aa6" }, "require": { - "drupal/core": "^8 || ^9 || ^10", - "drupal/jquery_ui_accordion": "^2.0" + "drupal/core": "*" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-7.1", - "datestamp": "1678202291", + "version": "8.x-1.1", + "datestamp": "1519216085", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9187,10 +5928,6 @@ "name": "Kevin Quillen (kevinquillen)", "homepage": "https://www.drupal.org/u/kevinquillen", "role": "Maintainer" - }, - { - "name": "pifagor", - "homepage": "https://www.drupal.org/user/2375692" } ], "description": "This module provides a field for frequently asked questions.", @@ -9205,27 +5942,30 @@ }, { "name": "drupal/features", - "version": "3.14.0", + "version": "3.8.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/features.git", - "reference": "8.x-3.14" + "reference": "8.x-3.8" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/features-8.x-3.14.zip", - "reference": "8.x-3.14", - "shasum": "fff0bb2d133c524ddb326422eba625c55585232c" + "url": "https://ftp.drupal.org/files/projects/features-8.x-3.8.zip", + "reference": "8.x-3.8", + "shasum": "15cebd00e38d63c0d946682e76327a03499c27be" }, "require": { - "drupal/config_update": "^1.4 || ^2", - "drupal/core": "^9.4 || ^10" + "drupal/config_update": "^1.4", + "drupal/core": "*" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-3.x": "3.x-dev" + }, "drupal": { - "version": "8.x-3.14", - "datestamp": "1702059191", + "version": "8.x-3.8", + "datestamp": "1536512284", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9233,27 +5973,19 @@ }, "drush": { "services": { - "drush.services.yml": "^10 || ^11" + "drush.services.yml": "^9" } } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ - { - "name": "Dave Reid", - "homepage": "https://www.drupal.org/user/53892" - }, { "name": "dawehner", "homepage": "https://www.drupal.org/user/99340" }, - { - "name": "donquixote", - "homepage": "https://www.drupal.org/user/459338" - }, { "name": "e2thex", "homepage": "https://www.drupal.org/user/189123" @@ -9262,10 +5994,6 @@ "name": "febbraro", "homepage": "https://www.drupal.org/user/43670" }, - { - "name": "flocondetoile", - "homepage": "https://www.drupal.org/user/2006064" - }, { "name": "jmiccolis", "homepage": "https://www.drupal.org/user/31731" @@ -9274,13 +6002,17 @@ "name": "joseph.olstad", "homepage": "https://www.drupal.org/user/1321830" }, - { - "name": "matthand", - "homepage": "https://www.drupal.org/user/171527" - }, { "name": "mpotter", "homepage": "https://www.drupal.org/user/616192" + }, + { + "name": "nedjo", + "homepage": "https://www.drupal.org/user/4481" + }, + { + "name": "tim.plunkett", + "homepage": "https://www.drupal.org/user/241634" } ], "description": "Enables administrators to package configuration into modules", @@ -9289,233 +6021,99 @@ "source": "https://git.drupalcode.org/project/features" } }, - { - "name": "drupal/field_defaults", - "version": "2.1.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/field_defaults.git", - "reference": "2.1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/field_defaults-2.1.0.zip", - "reference": "2.1.0", - "shasum": "ca90ca6814ff05457ec8ec0be6a976b0315c28a4" - }, - "require": { - "drupal/core": "^10.0 || ^11.0" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.1.0", - "datestamp": "1745506968", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - }, - "drush": { - "services": { - "drush.services.yml": "^11 || ^12" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "b_sharpe", - "homepage": "https://www.drupal.org/user/2512258" - } - ], - "description": "Field Defaults allows batch updating of default field values to existing content.", - "homepage": "https://www.drupal.org/project/field_defaults", - "keywords": [ - "Content", - "Drupal", - "Fields" - ], - "support": { - "source": "https://git.drupalcode.org/project/field_defaults", - "issues": "https://www.drupal.org/project/issues/field_defaults" - } - }, - { - "name": "drupal/field_formatter_class", - "version": "1.8.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/field_formatter_class.git", - "reference": "8.x-1.8" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/field_formatter_class-8.x-1.8.zip", - "reference": "8.x-1.8", - "shasum": "66f39802ac8ef43f362b7e3530280f751788f169" - }, - "require": { - "drupal/core": "^10.2 || ^11.0" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.8", - "datestamp": "1724880268", - "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": "Andrew Macpherson", - "homepage": "https://www.drupal.org/u/andrewmacpherson", - "role": "maintainer" - }, - { - "name": "Oleksandr Dekhteruk", - "homepage": "https://www.drupal.org/u/pifagor", - "role": "maintainer" - }, - { - "name": "dave reid", - "homepage": "https://www.drupal.org/user/53892" - }, - { - "name": "mfer", - "homepage": "https://www.drupal.org/user/25701" - }, - { - "name": "pifagor", - "homepage": "https://www.drupal.org/user/2375692" - } - ], - "description": "Provides custom HTML class settings for field formatters.", - "homepage": "https://www.drupal.org/project/field_formatter_class", - "support": { - "source": "https://git.drupalcode.org/project/field_formatter_class", - "issues": "https://www.drupal.org/project/issues/field_formatter_class" - } - }, { "name": "drupal/field_group", - "version": "3.6.0", + "version": "3.0.0-rc1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/field_group.git", - "reference": "8.x-3.6" + "reference": "8.x-3.0-rc1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.6.zip", - "reference": "8.x-3.6", - "shasum": "427c0a65dc1936e69e60c120776056cfe5b43e86" + "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.0-rc1.zip", + "reference": "8.x-3.0-rc1", + "shasum": "e291b5468c834a344e9aa6cafd3a76171d473a22" }, "require": { - "drupal/core": "^9.2 || ^10 || ^11" - }, - "require-dev": { - "drupal/jquery_ui_accordion": "*" + "drupal/core": "*" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-3.x": "3.x-dev" + }, "drupal": { - "version": "8.x-3.6", - "datestamp": "1722672510", + "version": "8.x-3.0-rc1", + "datestamp": "1558647185", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "RC releases are not covered by Drupal security advisories." } } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { - "name": "anybody", - "homepage": "https://www.drupal.org/user/291091" - }, - { - "name": "grevil", - "homepage": "https://www.drupal.org/user/3668491" - }, - { - "name": "hydra", + "name": "Hydra", "homepage": "https://www.drupal.org/user/647364" }, - { - "name": "joevagyok", - "homepage": "https://www.drupal.org/user/2876343" - }, - { - "name": "jyve", - "homepage": "https://www.drupal.org/user/591438" - }, - { - "name": "nils.destoop", - "homepage": "https://www.drupal.org/user/361625" - }, { "name": "Stalski", "homepage": "https://www.drupal.org/user/322618" }, + { + "name": "jyve", + "homepage": "https://www.drupal.org/user/591438" + }, { "name": "swentel", "homepage": "https://www.drupal.org/user/107403" + }, + { + "name": "zuuperman", + "homepage": "https://www.drupal.org/user/361625" } ], "description": "Provides the field_group module.", "homepage": "https://www.drupal.org/project/field_group", "support": { - "source": "https://git.drupalcode.org/project/field_group", - "issues": "https://www.drupal.org/project/issues/field_group" + "source": "https://git.drupalcode.org/project/field_group" } }, { "name": "drupal/field_token_value", - "version": "3.1.0", + "version": "1.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/field_token_value.git", - "reference": "3.1.0" + "reference": "8.x-1.0" }, "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-8.x-1.0.zip", + "reference": "8.x-1.0", + "shasum": "ba0c70108ca09589b9fa2ecce4c7a7194cdca897" }, "require": { - "drupal/core": "^10 || ^11", - "drupal/token": "^1.15", - "php": ">=8.1.0" + "drupal/core": "~8.0", + "drupal/token": "*" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "3.1.0", - "datestamp": "1740522009", + "version": "8.x-1.0", + "datestamp": "1503548344", "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,157 +6123,40 @@ "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" - } - }, - { - "name": "drupal/filter_perms", - "version": "1.0.0-alpha2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/filter_perms.git", - "reference": "8.x-1.0-alpha2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/filter_perms-8.x-1.0-alpha2.zip", - "reference": "8.x-1.0-alpha2", - "shasum": "07e2047ea46cd76839522f04cab59a91b90abdb3" - }, - "require": { - "drupal/core": "^9.0 || ^10.0" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.0-alpha2", - "datestamp": "1686873472", - "security-coverage": { - "status": "not-covered", - "message": "Alpha releases are not covered by Drupal security advisories." - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "name": "cyu", - "homepage": "https://www.drupal.org/user/202205" - }, - { - "name": "deekayen", - "homepage": "https://www.drupal.org/user/972" - }, - { - "name": "ivavictoria", - "homepage": "https://www.drupal.org/user/3061533" - }, - { - "name": "justcaldwell", - "homepage": "https://www.drupal.org/user/290069" - }, - { - "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" - } - ], - "description": "Provides role and module filters to simplify the user permissions page.", - "homepage": "https://www.drupal.org/project/filter_perms", - "support": { - "source": "http://cgit.drupalcode.org/filter_perms", - "issues": "https://www.drupal.org/project/issues/filter_perms?categories=All" - } - }, - { - "name": "drupal/fitvids", - "version": "2.1.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/fitvids.git", - "reference": "2.1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/fitvids-2.1.0.zip", - "reference": "2.1.0", - "shasum": "9bdc84fb6a7c0f03f9172ac7cf2274ccf11ce127" - }, - "require": { - "drupal/core": "^9.2 || ^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.1.0", - "datestamp": "1729218906", - "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": "DerekAhmedzai", - "homepage": "https://www.drupal.org/user/167927" - }, - { - "name": "nickdickinsonwilde", - "homepage": "https://www.drupal.org/user/3094661" - } - ], - "description": "Uses the FitVids.js library for fluid width video embeds.", - "homepage": "https://www.drupal.org/project/fitvids", - "support": { - "source": "https://git.drupalcode.org/project/fitvids", - "issues": "https://www.drupal.org/project/issues/fitvids" + "source": "https://git.drupalcode.org/project/field_token_value" } }, { "name": "drupal/fixed_block_content", - "version": "1.4.0", + "version": "1.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/fixed_block_content.git", - "reference": "8.x-1.4" + "reference": "8.x-1.0" }, "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.0.zip", + "reference": "8.x-1.0", + "shasum": "ebd2474259f45b738aa46a48b8f439de9b2f2bc7" }, "require": { - "drupal/core": "^9 || ^10 || ^11", - "drupal/hal": "^1.0 || ^2.0" + "drupal/core": "~8" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.4", - "datestamp": "1743628825", + "version": "8.x-1.0", + "datestamp": "1542482880", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9703,86 +6184,35 @@ "issues": "https://drupal.org/project/issues/fixed_block_content" } }, - { - "name": "drupal/flexible_permissions", - "version": "2.0.1", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/flexible_permissions.git", - "reference": "2.0.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/flexible_permissions-2.0.1.zip", - "reference": "2.0.1", - "shasum": "382ad20c674a6c07974d411e767310166851a0a8" - }, - "require": { - "drupal/core": "^10.3 || ^11" - }, - "require-dev": { - "jangregor/phpstan-prophecy": "^1.0" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.1", - "datestamp": "1726835397", - "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": "Kristiaan Van den Eynde", - "homepage": "https://www.drupal.org/u/kristiaanvandeneynde", - "role": "Maintainer" - }, - { - "name": "Mathias Wächter", - "homepage": "https://www.drupal.org/u/mef", - "role": "Maintainer" - } - ], - "description": "This module allows you to gather, calculate and cache permissions from a myriad of sources", - "homepage": "http://drupal.org/project/flexible_permissions", - "support": { - "source": "https://git.drupalcode.org/project/flexible_permissions", - "issues": "https://drupal.org/project/issues/flexible_permissions" - } - }, { "name": "drupal/focal_point", - "version": "2.1.2", + "version": "1.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/focal_point.git", - "reference": "2.1.2" + "reference": "8.x-1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/focal_point-2.1.2.zip", - "reference": "2.1.2", - "shasum": "5f8ffadd37748506c8f00314b1d45c947eb27cf7" + "url": "https://ftp.drupal.org/files/projects/focal_point-8.x-1.0.zip", + "reference": "8.x-1.0", + "shasum": "dec88d870aaa21e99984d6328ccf95b8120ee472" }, "require": { - "drupal/core": "^9.3 || ^10 || ^11", - "drupal/crop": "^2.3" + "drupal/core": "*", + "drupal/crop": "*" }, "require-dev": { "drupal/crop": "*" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "2.1.2", - "datestamp": "1731556344", + "version": "8.x-1.0", + "datestamp": "1553270584", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9795,124 +6225,42 @@ ], "authors": [ { - "name": "Alexander Ross (bleen)", - "homepage": "https://www.drupal.org/u/bleen", - "role": "Maintainer" - }, - { - "name": "rajeshreeputra", - "homepage": "https://www.drupal.org/user/3418561" + "name": "bleen", + "homepage": "https://www.drupal.org/user/77375" } ], - "description": "Focal Point allows content creators to mark the most important part of an image for easier cropping.", - "homepage": "https://drupal.org/project/focal_point", + "description": "Allows users to specify the focal point of an image for use during cropping.", + "homepage": "https://www.drupal.org/project/focal_point", "support": { - "source": "https://cgit.drupalcode.org/focal_point", - "issues": "https://drupal.org/project/issues/focal_point", - "irc": "irc://irc.freenode.org/drupal-contribute" - } - }, - { - "name": "drupal/footnotes", - "version": "4.0.0-beta7", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/footnotes.git", - "reference": "4.0.0-beta7" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/footnotes-4.0.0-beta7.zip", - "reference": "4.0.0-beta7", - "shasum": "664be170477906662f0c53d7538f59fbccf61df9" - }, - "require": { - "drupal/core": ">=10.0" - }, - "require-dev": { - "drupal/metatag": "^2.0", - "drupal/search_api": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "4.0.0-beta7", - "datestamp": "1752088035", - "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": "Andrii Aleksandrov (id.aleks)", - "homepage": "https://www.drupal.org/u/idaleks", - "role": "Maintainer" - }, - { - "name": "Oleksandr Dekhteruk (pifagor)", - "homepage": "https://www.drupal.org/u/pifagor", - "role": "Maintainer" - }, - { - "name": "Fernando Conceição (yukare)", - "homepage": "https://www.drupal.org/u/yukare", - "role": "Maintainer" - }, - { - "name": "Henrik Ingo (hingo)", - "homepage": "https://www.drupal.org/u/hingo", - "role": "Maintainer" - }, - { - "name": "Scott Euser (scott_euser)", - "homepage": "https://www.drupal.org/u/scott_euser", - "role": "Maintainer" - }, - { - "name": "smulvih2", - "homepage": "https://www.drupal.org/user/795442" - }, - { - "name": "yukare", - "homepage": "https://www.drupal.org/user/889254" - } - ], - "description": "Add automatically numbered footnotes to your posts.", - "homepage": "https://drupal.org/project/footnotes", - "support": { - "source": "https://cgit.drupalcode.org/footnotes", - "issues": "https://drupal.org/project/issues/footnotes" + "source": "https://git.drupalcode.org/project/focal_point" } }, { "name": "drupal/gdpr", - "version": "3.1.2", + "version": "2.0.0-alpha7", "source": { "type": "git", "url": "https://git.drupalcode.org/project/gdpr.git", - "reference": "3.1.2" + "reference": "8.x-2.0-alpha7" }, "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-8.x-2.0-alpha7.zip", + "reference": "8.x-2.0-alpha7", + "shasum": "07d2ebdd811e069f564bdd27158a67e17d031679" }, "require": { - "drupal/checklistapi": "^2.1", - "drupal/core": "^9 || ^10 || ^11", - "drupal/entity": "^1.4", - "drupal/entity_reference_revisions": "^1.11", - "drupal/message": "^1.5", - "drupal/token": "^1.14", - "fakerphp/faker": "^1 || ^2", - "php": ">=8.1" + "cweagans/composer-patches": "~1.0", + "drupal/checklistapi": "^1.0", + "drupal/core": "~8.4", + "drupal/entity": "^1.0", + "drupal/entity_reference_revisions": "^1.4", + "drupal/message": "^1.0", + "drupal/token": "^1.1", + "drush/drush": "~9.0", + "ext-zip": "*", + "fzaninotto/faker": "^1.7", + "php": "^7.1" }, "require-dev": { "drupal/anonymizer": "*", @@ -9922,18 +6270,17 @@ "drupal/message": "*", "drupal/token": "*" }, - "suggest": { - "drush/drush": "GDPR Dump requires Drush ^9 || ^10", - "ext-zip": "GDPR Tasks requires the PHP zip extension" - }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-2.x": "2.x-dev" + }, "drupal": { - "version": "3.1.2", - "datestamp": "1740594868", + "version": "8.x-2.0-alpha7", + "datestamp": "1552919885", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Project has not opted into security advisory coverage!" } } }, @@ -9944,33 +6291,25 @@ "authors": [ { "name": "mhavelant", - "homepage": "https://www.drupal.org/user/1358588", + "homepage": "https://www.drupal.org/user/1086292", "email": "mhavelant@brainsum.com" }, { - "name": "andrewbelcher", - "homepage": "https://www.drupal.org/user/655282" + "name": "Kosa Ilma", + "homepage": "https://www.drupal.org/user/3435475" }, { - "name": "baluertl", - "homepage": "https://www.drupal.org/user/1086292" + "name": "back-2-95", + "homepage": "https://www.drupal.org/user/327328" }, { "name": "bfr", "homepage": "https://www.drupal.org/user/369262" }, - { - "name": "dj1999", - "homepage": "https://www.drupal.org/user/387119" - }, { "name": "golddragon007", "homepage": "https://www.drupal.org/user/2723471" }, - { - "name": "kosa ilma", - "homepage": "https://www.drupal.org/user/3435475" - }, { "name": "lbesenyei", "homepage": "https://www.drupal.org/user/2626013" @@ -9979,18 +6318,10 @@ "name": "mhavelant", "homepage": "https://www.drupal.org/user/3331139" }, - { - "name": "norman.lol", - "homepage": "https://www.drupal.org/user/2482808" - }, { "name": "pedrop", "homepage": "https://www.drupal.org/user/1043368" }, - { - "name": "rajeshreeputra", - "homepage": "https://www.drupal.org/user/3418561" - }, { "name": "szato", "homepage": "https://www.drupal.org/user/389677" @@ -10006,1121 +6337,21 @@ "source": "https://git.drupalcode.org/project/gdpr" } }, - { - "name": "drupal/geolocation", - "version": "3.14.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/geolocation.git", - "reference": "8.x-3.14" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/geolocation-8.x-3.14.zip", - "reference": "8.x-3.14", - "shasum": "2f7cda9ce6ca1c03e30405f892714ae6f6a04bfd" - }, - "require": { - "drupal/core": "^10.3 || ^11", - "drupal/jquery_ui": "*", - "drupal/jquery_ui_autocomplete": "^2.0", - "php": "^8.0" - }, - "require-dev": { - "drupal/address": "*", - "drupal/geofield": "*", - "drupal/geolocation_demo": "*", - "drupal/geolocation_geometry": "*", - "drupal/geolocation_geometry_data": "*", - "drupal/geolocation_google_maps": "*", - "drupal/geolocation_google_maps_demo": "*", - "drupal/geolocation_google_static_maps": "*", - "drupal/geolocation_leaflet": "*", - "drupal/geolocation_leaflet_demo": "*", - "drupal/search_api": "*", - "drupal/search_api_location": "*", - "drupal/search_api_location_views": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-3.14", - "datestamp": "1729420964", - "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": "derjochenmeyer", - "homepage": "https://www.drupal.org/u/derjochenmeyer" - }, - { - "name": "cadamski", - "homepage": "https://www.drupal.org/u/cadamski" - } - ], - "description": "Provides a simple geolocation Drupal field type to store and display location data (lat, lng).", - "homepage": "https://www.drupal.org/project/geolocation", - "support": { - "source": "https://git.drupal.org/project/geolocation.git", - "issues": "https://www.drupal.org/project/issues/geolocation" - } - }, - { - "name": "drupal/gin", - "version": "4.1.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/gin.git", - "reference": "4.1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/gin-4.1.0.zip", - "reference": "4.1.0", - "shasum": "96dd28e9ba8adce53313c334612135e3cfaef885" - }, - "require": { - "drupal/core": "^10.3 || ^11 <11.2", - "drupal/gin_toolbar": "^2.0" - }, - "type": "drupal-theme", - "extra": { - "drupal": { - "version": "4.1.0", - "datestamp": "1750246743", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "scripts": { - "phpcs": [ - "phpcs -s --runtime-set ignore_warnings_on_exit 1 --runtime-set ignore_errors_on_exit 0 'web/modules/custom'" - ] - }, - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "Sascha Eggenberger (saschaeggi)", - "homepage": "https://www.drupal.org/u/saschaeggi", - "role": "Maintainer" - }, - { - "name": "saschaeggi", - "homepage": "https://www.drupal.org/user/1999056" - } - ], - "description": "For a better Admin and Content Editor Experience.", - "homepage": "https://www.drupal.org/project/gin", - "support": { - "source": "https://git.drupalcode.org/project/gin", - "issues": "https://www.drupal.org/project/issues/gin" - }, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/saschaeggi" - }, - { - "type": "other", - "url": "https://paypal.me/saschaeggi" - } - ] - }, - { - "name": "drupal/gin_gutenberg", - "version": "1.1.16", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/gin_gutenberg.git", - "reference": "1.1.16" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/gin_gutenberg-1.1.16.zip", - "reference": "1.1.16", - "shasum": "5a39790f1038f733a0177808ec64e6ff38843a15" - }, - "require": { - "drupal/core": "^8 || ^9.3 || ^10 || ^11", - "drupal/gutenberg": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "1.1.16", - "datestamp": "1742293958", - "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": "Sohail Lajevardi", - "homepage": "https://www.drupal.org/u/doxigo", - "role": "Maintainer" - }, - { - "name": "hosisam", - "homepage": "https://www.drupal.org/user/3449435" - }, - { - "name": "kiss.jozsef", - "homepage": "https://www.drupal.org/user/2848443" - }, - { - "name": "mnlund", - "homepage": "https://www.drupal.org/user/80815" - }, - { - "name": "szeidler", - "homepage": "https://www.drupal.org/user/767652" - } - ], - "description": "The Gin Gutenberg module provides an integration between Gutenberg editor and Gin theme", - "homepage": "https://drupal.org/project/gin_gutenberg", - "support": { - "source": "https://git.drupalcode.org/project/gin_gutenberg", - "issues": "https://drupal.org/project/issues/gin_gutenberg" - } - }, - { - "name": "drupal/gin_login", - "version": "2.1.3", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/gin_login.git", - "reference": "2.1.3" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/gin_login-2.1.3.zip", - "reference": "2.1.3", - "shasum": "4fd1a4f36205f511ab7c222f3543aa15ad2331c6" - }, - "require": { - "drupal/core": "^9 || ^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.1.3", - "datestamp": "1719750649", - "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": "Sascha Eggenberger (saschaeggi)", - "homepage": "https://www.drupal.org/u/saschaeggi", - "role": "Maintainer" - } - ], - "description": "Custom Drupal Login for Gin theme", - "homepage": "https://www.drupal.org/project/gin_login", - "keywords": [ - "Drupal" - ], - "support": { - "source": "http://cgit.drupalcode.org/gin_login", - "issues": "https://www.drupal.org/project/issues/gin_login" - }, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/saschaeggi" - }, - { - "type": "other", - "url": "https://paypal.me/saschaeggi" - } - ] - }, - { - "name": "drupal/gin_toolbar", - "version": "2.1.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/gin_toolbar.git", - "reference": "2.1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/gin_toolbar-2.1.0.zip", - "reference": "2.1.0", - "shasum": "b312a2dea5379ea5883d92c2a2e5f0499972a083" - }, - "require": { - "drupal/core": "^10 || ^11 <11.2" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.1.0", - "datestamp": "1750245881", - "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": "Sascha Eggenberger (saschaeggi)", - "homepage": "https://www.drupal.org/u/saschaeggi", - "role": "Maintainer" - }, - { - "name": "saschaeggi", - "homepage": "https://www.drupal.org/user/1999056" - } - ], - "description": "Gin Toolbar for Frontend use", - "homepage": "https://www.drupal.org/project/gin_toolbar", - "keywords": [ - "Drupal" - ], - "support": { - "source": "http://cgit.drupalcode.org/gin_toolbar", - "issues": "https://www.drupal.org/project/issues/gin_toolbar" - }, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/saschaeggi" - }, - { - "type": "other", - "url": "https://paypal.me/saschaeggi" - } - ] - }, - { - "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": "1.0.0-rc4", "require": { - "drupal/core": "^10.3 || ^11", - "drupal/group": "*" + "drupal/core": "*", + "drupal/group": "self.version" }, "type": "metapackage", "extra": { - "drupal": { - "version": "3.3.5", - "datestamp": "1746519542", - "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": "dww", - "homepage": "https://www.drupal.org/user/46549" - }, - { - "name": "kristiaanvandeneynde", - "homepage": "https://www.drupal.org/user/1345130" - } - ], - "description": "Enables Group functionality for the Node module", - "homepage": "https://www.drupal.org/project/group", - "support": { - "source": "https://git.drupalcode.org/project/group" - } - }, - { - "name": "drupal/google_analytics", - "version": "4.0.3", - "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" - }, - "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" - ], - "authors": [ - { - "name": "See contributors", - "homepage": "https://www.drupal.org/node/49388/committers" + "dev-1.x": "1.x-dev" }, - { - "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" - } - }, - { - "name": "drupal/group", - "version": "3.3.5", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/group.git", - "reference": "3.3.5" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/group-3.3.5.zip", - "reference": "3.3.5", - "shasum": "5e8df19cf48ef171bbe042e4d4b2f8107a339530" - }, - "require": { - "drupal/core": "^10.3 || ^11", - "drupal/entity": "^1.2", - "drupal/flexible_permissions": "^2.0" - }, - "require-dev": { - "drupal/variationcache": "^1.5", - "jangregor/phpstan-prophecy": "^1.0" - }, - "type": "drupal-module", - "extra": { "drupal": { - "version": "3.3.5", - "datestamp": "1746519542", - "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": "Kristiaan Van den Eynde", - "homepage": "https://www.drupal.org/u/kristiaanvandeneynde", - "role": "Maintainer" - }, - { - "name": "kristiaanvandeneynde", - "homepage": "https://www.drupal.org/user/1345130" - } - ], - "description": "This module allows you to group users, content and other entities", - "homepage": "http://drupal.org/project/group", - "support": { - "source": "https://git.drupalcode.org/project/group", - "issues": "https://drupal.org/project/issues/group" - } - }, - { - "name": "drupal/gutenberg", - "version": "2.14.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/gutenberg.git", - "reference": "8.x-2.14" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/gutenberg-8.x-2.14.zip", - "reference": "8.x-2.14", - "shasum": "c6610a940797ad6eadc19d1a279467a36560c9bd" - }, - "require": { - "drupal/core": "^9 || ^10 || ^11", - "ext-json": "*", - "php": ">=7.4" - }, - "require-dev": { - "phpspec/prophecy-phpunit": "^2" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-2.14", - "datestamp": "1728499573", - "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": "Marco Fernandes (marcofernandes)", - "homepage": "https://www.drupal.org/u/marcofernandes" - }, - { - "name": "Thor Andre Gretland (thorandre)", - "homepage": "https://www.drupal.org/u/thorandre" - }, - { - "name": "Roberto Ornelas (roborn)", - "homepage": "https://www.drupal.org/u/roborn" - }, - { - "name": "codebymikey", - "homepage": "https://www.drupal.org/u/codebymikey" - }, - { - "name": "Stephan Zeidler (szeidler)", - "homepage": "https://www.drupal.org/u/szeidler" - }, - { - "name": "marcofernandes", - "homepage": "https://www.drupal.org/user/2127558" - }, - { - "name": "perandre", - "homepage": "https://www.drupal.org/user/221337" - }, - { - "name": "roborn", - "homepage": "https://www.drupal.org/user/139474" - }, - { - "name": "szeidler", - "homepage": "https://www.drupal.org/user/767652" - }, - { - "name": "thorandre", - "homepage": "https://www.drupal.org/user/223878" - }, - { - "name": "truls1502", - "homepage": "https://www.drupal.org/user/325866" - } - ], - "description": "Drupal Gutenberg brings the powerful admin features of Gutenberg Editor to Drupal.", - "homepage": "https://www.drupal.org/project/gutenberg", - "support": { - "source": "https://git.drupalcode.org/project/gutenberg", - "issues": "https://www.drupal.org/project/issues/gutenberg" - } - }, - { - "name": "drupal/hal", - "version": "2.0.4", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/hal.git", - "reference": "2.0.4" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/hal-2.0.4.zip", - "reference": "2.0.4", - "shasum": "5d98f2ebbc7952d183278351d24d3e51ea18c8ee" - }, - "require": { - "drupal/core": "^10 || ^11" - }, - "require-dev": { - "drupal/aggregator": "2.x-dev", - "drupal/entity_reference_revisions": "1.x-dev", - "drupal/rdf": "^2.1 || 3.0.x-dev", - "drupal/tour": "^1" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.4", - "datestamp": "1738532063", - "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": "bbrala", - "homepage": "https://www.drupal.org/user/3366066" - }, - { - "name": "larowlan", - "homepage": "https://www.drupal.org/user/395439" - } - ], - "description": "Hypermedia Application Language (HAL)", - "homepage": "https://www.drupal.org/project/hal", - "support": { - "source": "https://git.drupalcode.org/project/hal" - } - }, - { - "name": "drupal/honeypot", - "version": "2.2.2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/honeypot.git", - "reference": "2.2.2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/honeypot-2.2.2.zip", - "reference": "2.2.2", - "shasum": "828872d31d1a2c37a818cacae7fcd77a60996c66" - }, - "require": { - "drupal/core": "^10.3 || ^11" - }, - "require-dev": { - "drupal/rules": "^4.0", - "drupal/webform": "^6.2" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.2.2", - "datestamp": "1739854442", - "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": "Jeff Geerling", - "homepage": "https://www.drupal.org/user/389011", - "email": "geerlingguy@mac.com" - }, - { - "name": "manuel garcia", - "homepage": "https://www.drupal.org/user/213194" - }, - { - "name": "tr", - "homepage": "https://www.drupal.org/user/202830" - }, - { - "name": "vijaycs85", - "homepage": "https://www.drupal.org/user/93488" - } - ], - "description": "Mitigates spam form submissions using the honeypot method.", - "homepage": "https://www.drupal.org/project/honeypot", - "keywords": [ - "deterrent", - "form", - "honeypot", - "honeytrap", - "php", - "spam" - ], - "support": { - "source": "https://git.drupalcode.org/project/honeypot", - "issues": "https://www.drupal.org/project/issues/honeypot" - } - }, - { - "name": "drupal/http_cache_control", - "version": "2.6.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/http_cache_control.git", - "reference": "8.x-2.6" - }, - "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" - }, - "require": { - "drupal/core": "^9 || ^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-2.6", - "datestamp": "1740741248", - "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": "dieterholvoet", - "homepage": "https://www.drupal.org/user/3567222" - }, - { - "name": "josh waihi", - "homepage": "https://www.drupal.org/user/188162" - } - ], - "description": "Module for controlling HTTP Cache Control response headers.", - "homepage": "https://www.drupal.org/project/http_cache_control", - "support": { - "source": "https://git.drupalcode.org/project/http_cache_control" - } - }, - { - "name": "drupal/http_client_error_status", - "version": "3.1.3", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/http_client_error_status.git", - "reference": "3.1.3" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/http_client_error_status-3.1.3.zip", - "reference": "3.1.3", - "shasum": "4880388d93182e98a716790d05440b18c47edb2e" - }, - "require": { - "drupal/core": "^10.2 || ^11" - }, - "require-dev": { - "drush/drush": "^12.5.2 || ^13" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "3.1.3", - "datestamp": "1720219453", - "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": "Jeff Logan (jefflogan)", - "homepage": "https://www.drupal.org/u/jefflogan", - "role": "Maintainer" - } - ], - "description": "Provide HTTP client error status context plugin", - "homepage": "https://drupal.org/project/http_client_error_status", - "support": { - "source": "https://git.drupal.org/project/http_client_error_status.git", - "issues": "https://drupal.org/project/issues/http_client_error_status", - "irc": "irc://irc.freenode.org/drupal-contribute" - } - }, - { - "name": "drupal/ief_complex_open", - "version": "1.0.2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/ief_complex_open.git", - "reference": "1.0.2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/ief_complex_open-1.0.2.zip", - "reference": "1.0.2", - "shasum": "4bebc5d5f97cbdccb69343d8a2a3c0d6edfb0b98" - }, - "require": { - "drupal/core": "^8.8 || ^9 || ^10 || ^11", - "drupal/inline_entity_form": "^1 || ^3" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "1.0.2", - "datestamp": "1748056584", - "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": "drpldrp", - "homepage": "https://www.drupal.org/user/3630968" - }, - { - "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" - } - ], - "description": "Inline entity form complex widget with add existing open by default.", - "homepage": "https://www.drupal.org/project/ief_complex_open", - "keywords": [ - "Drupal" - ], - "support": { - "source": "https://git.drupalcode.org/project/ief_complex_open", - "issues": "http://drupal.org/project/issues/ief_complex_open" - } - }, - { - "name": "drupal/image_field_to_media", - "version": "3.0.1", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/image_field_to_media.git", - "reference": "3.0.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/image_field_to_media-3.0.1.zip", - "reference": "3.0.1", - "shasum": "4b5359fb456d401a18e21999cdb8dcbd22e0a883" - }, - "require": { - "drupal/core": "^10.3 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "3.0.1", - "datestamp": "1752280146", - "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": "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.", - "homepage": "https://www.drupal.org/project/image_field_to_media", - "support": { - "source": "https://git.drupalcode.org/project/image_field_to_media", - "issues": "https://www.drupal.org/project/issues/image_field_to_media" - } - }, - { - "name": "drupal/image_widget_crop", - "version": "2.4.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/image_widget_crop.git", - "reference": "8.x-2.4" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/image_widget_crop-8.x-2.4.zip", - "reference": "8.x-2.4", - "shasum": "6fcf4641d730bf1f5afce2a95d58f76094c72d1b" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10", - "drupal/crop": "^1 || ^2" - }, - "require-dev": { - "drupal/bartik": "^1", - "drupal/crop": "*", - "drupal/ctools": "^3", - "drupal/entity_browser": "^2", - "drupal/inline_entity_form": "^1" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-2.4", - "datestamp": "1667435355", - "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": "Alexandre Mallet", - "homepage": "https://github.com/woprrr", - "role": "Maintainer" - }, - { - "name": "Drupal media CI", - "homepage": "https://www.drupal.org/user/3057985" - }, - { - "name": "Drupal Media Team", - "homepage": "https://www.drupal.org/user/3260690" - }, - { - "name": "phenaproxima", - "homepage": "https://www.drupal.org/user/205645" - }, - { - "name": "slashrsm", - "homepage": "https://www.drupal.org/user/744628" - }, - { - "name": "woprrr", - "homepage": "https://www.drupal.org/user/858604" - } - ], - "description": "Provides an interface for using the features of the Crop API.", - "homepage": "https://www.drupal.org/project/image_widget_crop", - "keywords": [ - "Crop", - "Drupal", - "Drupal Media" - ], - "support": { - "source": "https://www.drupal.org/project/image_widget_crop", - "issues": "https://www.drupal.org/project/issues/image_widget_crop", - "irc": "irc://irc.freenode.org/drupal-contribute" - } - }, - { - "name": "drupal/indieweb", - "version": "1.26.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/indieweb.git", - "reference": "8.x-1.26" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/indieweb-8.x-1.26.zip", - "reference": "8.x-1.26", - "shasum": "5393c42a9c11ffed9026a70439454f9a20aff408" - }, - "require": { - "drupal/core": "^10 || ^11", - "indieauth/client": "^1.1", - "indieweb/mention-client": "^1.2", - "lcobucci/jwt": "4.3.0", - "p3k/micropub": "^0.0.3", - "p3k/websub": "^0.0.1", - "p3k/xray": "^1.12" - }, - "require-dev": { - "drupal/externalauth": "^2.0", - "drupal/indieweb_indieauth": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.26", - "datestamp": "1740916115", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - }, - "drush": { - "services": { - "drush.services.yml": "^9" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "Kristof De Jaeger", - "homepage": "https://realize.be", - "email": "swentel@realize.be", - "role": "Maintainer" - } - ], - "description": "IndieWeb functionality for your site.", - "homepage": "http://drupal.org/project/indieweb", - "support": { - "source": "https://git.drupalcode.org/project/indieweb" - } - }, - { - "name": "drupal/inline_entity_form", - "version": "3.0.0-rc21", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/inline_entity_form.git", - "reference": "3.0.0-rc21" - }, - "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" - }, - "require": { - "drupal/core": "^8.8 || ^9 || ^10 || ^11", - "drupal/rat": "^1.0.0@stable", - "php": ">=7.1" - }, - "require-dev": { - "drupal/entity_reference_revisions": "^1.0" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "3.0.0-rc21", - "datestamp": "1746459780", + "version": "8.x-1.0-rc4", + "datestamp": "1563460085", "security-coverage": { "status": "not-covered", "message": "RC releases are not covered by Drupal security advisories." @@ -11133,87 +6364,49 @@ ], "authors": [ { - "name": "bojanz", - "homepage": "https://www.drupal.org/user/86106" + "name": "kristiaanvandeneynde", + "homepage": "https://www.drupal.org/user/1345130" }, { - "name": "centarro", - "homepage": "https://www.drupal.org/user/3661446" - }, - { - "name": "dawehner", - "homepage": "https://www.drupal.org/user/99340" - }, - { - "name": "dww", - "homepage": "https://www.drupal.org/user/46549" - }, - { - "name": "geek-merlin", - "homepage": "https://www.drupal.org/user/229048" - }, - { - "name": "joachim", - "homepage": "https://www.drupal.org/user/107701" - }, - { - "name": "jsacksick", - "homepage": "https://www.drupal.org/user/972218" - }, - { - "name": "oknate", - "homepage": "https://www.drupal.org/user/471638" - }, - { - "name": "ram4nd", - "homepage": "https://www.drupal.org/user/601534" - }, - { - "name": "rszrama", - "homepage": "https://www.drupal.org/user/49344" - }, - { - "name": "slashrsm", - "homepage": "https://www.drupal.org/user/744628" - }, - { - "name": "webflo", - "homepage": "https://www.drupal.org/user/254778" + "name": "ronaldtebrake", + "homepage": "https://www.drupal.org/user/2314038" } ], - "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.", - "homepage": "https://www.drupal.org/project/inline_entity_form", + "description": "Enables Group functionality for the Node module", + "homepage": "https://www.drupal.org/project/group", "support": { - "source": "https://git.drupalcode.org/project/inline_entity_form" + "source": "https://git.drupalcode.org/project/group" } }, { - "name": "drupal/inotherwords", - "version": "3.0.2", + "name": "drupal/group", + "version": "1.0.0-rc4", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/inotherwords.git", - "reference": "3.0.2" + "url": "https://git.drupalcode.org/project/group.git", + "reference": "8.x-1.0-rc4" }, "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/group-8.x-1.0-rc4.zip", + "reference": "8.x-1.0-rc4", + "shasum": "d5d55167523a3ddccef7f66159b4c417d950d6f5" }, "require": { - "agaric/oxford-comma": "^1.2", - "drupal/core": "^8 || ^9 || ^10 || ^11", - "kwn/number-to-words": "^1.8" + "drupal/core": "^8.6", + "drupal/entity": "^1.0-rc1" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "3.0.2", - "datestamp": "1747959034", + "version": "8.x-1.0-rc4", + "datestamp": "1563460085", "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." } } }, @@ -11223,642 +6416,48 @@ ], "authors": [ { - "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", - "homepage": "https://www.drupal.org/user/3620027" - }, - { - "name": "mlncn", - "homepage": "https://www.drupal.org/user/64383" - } - ], - "description": "Provides a field formatter for condensing sequential lists into shorter text.", - "homepage": "https://drupal.org/project/inotherwords", - "keywords": [ - "content", - "drupal", - "field", - "field formatter", - "ux" - ], - "support": { - "source": "https://git.drupalcode.org/project/inotherwords", - "issues": "https://www.drupal.org/project/issues/inotherwords" - } - }, - { - "name": "drupal/insert", - "version": "3.0.2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/insert.git", - "reference": "3.0.2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/insert-3.0.2.zip", - "reference": "3.0.2", - "shasum": "df73a01b20be742b53c95b3b5a8424894d2ce703" - }, - "require": { - "drupal/core": "^10 || ^11" - }, - "require-dev": { - "drupal/colorbox": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "3.0.2", - "datestamp": "1739545285", - "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": "quicksketch", - "homepage": "https://www.drupal.org/user/35821" - }, - { - "name": "snater", - "homepage": "https://www.drupal.org/user/3513717" - } - ], - "description": "Assists in inserting files, images, or other media into the body field as well as other editor and text areas.", - "homepage": "https://www.drupal.org/project/insert", - "support": { - "source": "https://git.drupalcode.org/project/insert" - } - }, - { - "name": "drupal/jquery_ui", - "version": "1.7.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/jquery_ui.git", - "reference": "8.x-1.7" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.7.zip", - "reference": "8.x-1.7", - "shasum": "3f893843ec30fed18fa1b0cb326e51880b0cb686" - }, - "require": { - "drupal/core": "^9.2 || ^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.7", - "datestamp": "1717002098", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "bnjmnm", - "homepage": "https://www.drupal.org/user/2369194" - }, - { - "name": "jjeff", - "homepage": "https://www.drupal.org/user/17190" - }, - { - "name": "lauriii", - "homepage": "https://www.drupal.org/user/1078742" - }, - { - "name": "litwol", - "homepage": "https://www.drupal.org/user/78134" - }, - { - "name": "mfb", - "homepage": "https://www.drupal.org/user/12302" - }, - { - "name": "mfer", - "homepage": "https://www.drupal.org/user/25701" - }, - { - "name": "mikelutz", - "homepage": "https://www.drupal.org/user/2972409" - }, - { - "name": "nod_", - "homepage": "https://www.drupal.org/user/598310" - }, - { - "name": "phenaproxima", - "homepage": "https://www.drupal.org/user/205645" - }, - { - "name": "RobLoach", - "homepage": "https://www.drupal.org/user/61114" - }, - { - "name": "sun", - "homepage": "https://www.drupal.org/user/54136" - }, - { - "name": "webchick", - "homepage": "https://www.drupal.org/user/24967" - }, - { - "name": "Wim Leers", - "homepage": "https://www.drupal.org/user/99777" - }, - { - "name": "zrpnr", - "homepage": "https://www.drupal.org/user/1448368" - } - ], - "description": "Provides jQuery UI library.", - "homepage": "https://www.drupal.org/project/jquery_ui", - "support": { - "source": "https://git.drupalcode.org/project/jquery_ui" - } - }, - { - "name": "drupal/jquery_ui_accordion", - "version": "2.1.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/jquery_ui_accordion.git", - "reference": "2.1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/jquery_ui_accordion-2.1.0.zip", - "reference": "2.1.0", - "shasum": "f52cfc83f302a54b9c71a038e9ac1ce496f47edd" - }, - "require": { - "drupal/core": "^9.2 || ^10 || ^11", - "drupal/jquery_ui": "^1.7" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.1.0", - "datestamp": "1717015495", - "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 Accordion library.", - "homepage": "https://www.drupal.org/project/jquery_ui_accordion", - "support": { - "source": "https://git.drupalcode.org/project/jquery_ui_accordion" - } - }, - { - "name": "drupal/jquery_ui_autocomplete", - "version": "2.1.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/jquery_ui_autocomplete.git", - "reference": "2.1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/jquery_ui_autocomplete-2.1.0.zip", - "reference": "2.1.0", - "shasum": "ecf9500d8bff6c3673e92019a09dcce87ac81fc6" - }, - "require": { - "drupal/core": "^9.2 || ^10 || ^11", - "drupal/jquery_ui": "^1.7", - "drupal/jquery_ui_menu": "^2.1" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.1.0", - "datestamp": "1717035046", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "bnjmnm", - "homepage": "https://www.drupal.org/user/2369194" - }, - { - "name": "lauriii", - "homepage": "https://www.drupal.org/user/1078742" - }, - { - "name": "nod_", - "homepage": "https://www.drupal.org/user/598310" - }, - { - "name": "phenaproxima", - "homepage": "https://www.drupal.org/user/205645" - }, - { - "name": "Wim Leers", - "homepage": "https://www.drupal.org/user/99777" - }, - { - "name": "zrpnr", - "homepage": "https://www.drupal.org/user/1448368" - } - ], - "description": "Provides jQuery UI Autocomplete library.", - "homepage": "https://www.drupal.org/project/jquery_ui_autocomplete", - "support": { - "source": "https://git.drupalcode.org/project/jquery_ui_autocomplete" - } - }, - { - "name": "drupal/jquery_ui_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", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/jquery_ui_menu.git", - "reference": "2.1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/jquery_ui_menu-2.1.0.zip", - "reference": "2.1.0", - "shasum": "9aa6958e52ea12c1cdedd7908c5aeb5309b8b4ea" - }, - "require": { - "drupal/core": "^9.2 || ^10 || ^11", - "drupal/jquery_ui": "^1.7" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.1.0", - "datestamp": "1717031358", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "bnjmnm", - "homepage": "https://www.drupal.org/user/2369194" - }, - { - "name": "lauriii", - "homepage": "https://www.drupal.org/user/1078742" - }, - { - "name": "nod_", - "homepage": "https://www.drupal.org/user/598310" - }, - { - "name": "phenaproxima", - "homepage": "https://www.drupal.org/user/205645" - }, - { - "name": "Wim Leers", - "homepage": "https://www.drupal.org/user/99777" - }, - { - "name": "zrpnr", - "homepage": "https://www.drupal.org/user/1448368" - } - ], - "description": "Provides jQuery UI Menu library.", - "homepage": "https://www.drupal.org/project/jquery_ui_menu", - "support": { - "source": "https://git.drupalcode.org/project/jquery_ui_menu" - } - }, - { - "name": "drupal/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", + "name": "Kristiaan Van den Eynde", + "homepage": "https://www.drupal.org/u/kristiaanvandeneynde", "role": "Maintainer" }, { - "name": "naveenvalecha", - "homepage": "https://www.drupal.org/user/2665733" + "name": "Ronald te Brake", + "homepage": "https://www.drupal.org/u/ronaldtebrake", + "role": "Co-maintainer" } ], - "description": "Provides jQuery UI Touch Punch library.", - "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch", - "keywords": [ - "Drupal", - "jquery_ui_touch_punch" - ], + "description": "This module allows you to group users, content and other entities", + "homepage": "http://drupal.org/project/group", "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", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/key.git", - "reference": "8.x-1.20" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/key-8.x-1.20.zip", - "reference": "8.x-1.20", - "shasum": "f45415552de129e9976af72224393cd1d1f2ea65" - }, - "require": { - "drupal/core": ">=8.9 <12" - }, - "require-dev": { - "drush/drush": ">=9" - }, - "suggest": { - "drush/drush": ">=11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.20", - "datestamp": "1744582168", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - }, - "drush": { - "services": { - "drush.services.yml": ">=9" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "cellar door", - "homepage": "https://www.drupal.org/user/658076" - }, - { - "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" - }, - { - "name": "rlhawk", - "homepage": "https://www.drupal.org/user/352283" - } - ], - "description": "Provides the ability to manage site-wide keys", - "homepage": "http://drupal.org/project/key", - "keywords": [ - "Drupal" - ], - "support": { - "source": "https://git.drupalcode.org/project/key", - "issues": "http://drupal.org/project/key" + "source": "https://git.drupalcode.org/project/group", + "issues": "https://drupal.org/project/issues/group" } }, { "name": "drupal/link_attributes", - "version": "1.14.0", + "version": "1.9.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/link_attributes.git", - "reference": "8.x-1.14" + "reference": "8.x-1.9" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.14.zip", - "reference": "8.x-1.14", - "shasum": "fa4f27ecaed7e6b3c58c0adc679918a9beb7ded5" + "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.9.zip", + "reference": "8.x-1.9", + "shasum": "efbfc869c2e0b13b1bd5c9ff01dd51d3f2a6b755" }, "require": { - "drupal/core": "^9 || ^10" + "drupal/core": "^8.4" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.14", - "datestamp": "1687393687", + "version": "8.x-1.9", + "datestamp": "1564012686", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -11877,664 +6476,35 @@ ], "description": "Provides a widget to allow settings of link attributes for menu links.", "homepage": "https://www.drupal.org/project/link_attributes", - "keywords": [ - "Drupal" - ], "support": { - "source": "https://git.drupalcode.org/project/link_attributes", - "issues": "https://www.drupal.org/project/issues/link_attributes" - } - }, - { - "name": "drupal/linkit", - "version": "7.0.7", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/linkit.git", - "reference": "7.0.7" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/linkit-7.0.7.zip", - "reference": "7.0.7", - "shasum": "aa10493dfa34f4f8ce51313d47c66b21b9596f3e" - }, - "require": { - "drupal/core": "^10.1 || ^11" - }, - "require-dev": { - "drupal/ckeditor": "*", - "drupal/imce": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "7.0.7", - "datestamp": "1753116879", - "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": "Emil Stjerneman", - "homepage": "https://stjerneman.com", - "email": "emil@stjerneman.com", - "role": "Maintainer" - }, - { - "name": "johnwebdev", - "homepage": "https://www.drupal.org/user/3331569" - }, - { - "name": "mark_fullmer", - "homepage": "https://www.drupal.org/user/2612816" - } - ], - "description": "Linkit - Enriched linking experience", - "homepage": "http://drupal.org/project/linkit", - "support": { - "source": "http://cgit.drupalcode.org/linkit", - "issues": "http://drupal.org/project/linkit" - } - }, - { - "name": "drupal/mailchimp", - "version": "2.2.7", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/mailchimp.git", - "reference": "2.2.7" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/mailchimp-2.2.7.zip", - "reference": "2.2.7", - "shasum": "beb930e474895a74f15d7916b00cde425a537a10" - }, - "require": { - "drupal/core": "^8.7.7 || ^9 || ^10", - "thinkshout/mailchimp-api-php": "^3" - }, - "require-dev": { - "drupal/mailchimp_events": "*", - "drupal/mailchimp_lists": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.2.7", - "datestamp": "1753452348", - "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": "aprice42", - "homepage": "https://www.drupal.org/user/369147" - }, - { - "name": "bdimaggio", - "homepage": "https://www.drupal.org/user/70688" - }, - { - "name": "brendanthinkshout", - "homepage": "https://www.drupal.org/user/3578399" - }, - { - "name": "gcb", - "homepage": "https://www.drupal.org/user/1682976" - }, - { - "name": "kescoto-thinkshout", - "homepage": "https://www.drupal.org/user/3664824" - }, - { - "name": "levelos", - "homepage": "https://www.drupal.org/user/54135" - }, - { - "name": "mariacha1", - "homepage": "https://www.drupal.org/user/2210776" - }, - { - "name": "maximumpotter", - "homepage": "https://www.drupal.org/user/3653774" - }, - { - "name": "mshaver", - "homepage": "https://www.drupal.org/user/39079" - }, - { - "name": "olivier.bouwman", - "homepage": "https://www.drupal.org/user/2799483" - }, - { - "name": "tauno", - "homepage": "https://www.drupal.org/user/105595" - }, - { - "name": "wxactly", - "homepage": "https://www.drupal.org/user/3181097" - }, - { - "name": "xenophyle", - "homepage": "https://www.drupal.org/user/664428" - } - ], - "description": "Mailchimp is an integration with the Mailchimp Mass email tool.", - "homepage": "http://drupal.org/project/mailchimp", - "support": { - "source": "https://git.drupalcode.org/project/mailchimp" - } - }, - { - "name": "drupal/markdown", - "version": "3.0.1", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/markdown.git", - "reference": "3.0.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/markdown-3.0.1.zip", - "reference": "3.0.1", - "shasum": "ae33f2819c0f2591484ae02921781fb3ea783330" - }, - "require": { - "composer/semver": "^1.0 || ^2.0 || ^3.0", - "drupal/core": "^9.1 || ^10", - "php": ">=5.5.9" - }, - "suggest": { - "league/commonmark": "The PHP CommonMark parser is a robust, highly-extensible Markdown parser for PHP based on the CommonMark and Github-Flavored Markdown specifications." - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "3.0.1", - "datestamp": "1704727858", - "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": "Mark Halliwell (markhalliwell)", - "homepage": "https://www.drupal.org/u/markhalliwell", - "role": "D8+ Maintainer" - }, - { - "name": "Gisle Hannemyr (gisle)", - "homepage": "https://www.drupal.org/u/gisle", - "role": "D7 Maintainer" - }, - { - "name": "joelpittet", - "homepage": "https://www.drupal.org/user/160302" - }, - { - "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.", - "homepage": "https://www.drupal.org/project/markdown", - "support": { - "source": "https://git.drupalcode.org/project/markdown", - "issues": "https://www.drupal.org/project/markdown" - } - }, - { - "name": "drupal/media_contextual_crop", - "version": "2.1.7", - "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" - }, - "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" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.1.7", - "datestamp": "1752231050", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - }, - "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" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "drdam", - "homepage": "https://www.drupal.org/user/1555440" - } - ], - "description": "Media Contextual Cropping API", - "homepage": "https://www.drupal.org/project/media_contextual_crop", - "keywords": [ - "Drupal" - ], - "support": { - "source": "https://git.drupalcode.org/project/media_contextual_crop" - } - }, - { - "name": "drupal/media_contextual_crop_field_formatter", - "version": "2.0.7", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/media_contextual_crop_field_formatter.git", - "reference": "2.0.7" - }, - "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" - }, - "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" - }, - "require-dev": { - "drupal/advanced_help": "^1" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.7", - "datestamp": "1728401162", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - }, - "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" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "drdam", - "homepage": "https://www.drupal.org/user/1555440" - } - ], - "description": "An implementation of media_contextual_crop API for media references", - "homepage": "https://www.drupal.org/project/media_contextual_crop_field_formatter", - "keywords": [ - "Drupal" - ], - "support": { - "source": "https://git.drupalcode.org/project/media_contextual_crop_field_formatter" - } - }, - { - "name": "drupal/media_contextual_crop_fp_adapter", - "version": "2.0.2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/media_contextual_crop_fp_adapter.git", - "reference": "2.0.2" - }, - "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" - }, - "require": { - "drupal/core": "^10 || ^11", - "drupal/focal_point": "^1.5 || ^2.0@alpha", - "drupal/media_contextual_crop": "~2.0" - }, - "require-dev": { - "drupal/advanced_help": "^1" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.2", - "datestamp": "1725437111", - "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": "drdam", - "homepage": "https://www.drupal.org/user/1555440" - } - ], - "description": "An adapter between focal_point crop plugin and media_contextual_crop", - "homepage": "https://www.drupal.org/project/media_contextual_crop_fp_adapter", - "keywords": [ - "Drupal" - ], - "support": { - "source": "https://git.drupalcode.org/project/media_contextual_crop_fp_adapter" - } - }, - { - "name": "drupal/media_contextual_crop_iwc_adapter", - "version": "2.0.3", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/media_contextual_crop_iwc_adapter.git", - "reference": "2.0.3" - }, - "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" - }, - "require": { - "drupal/core": "^10 || ^11", - "drupal/image_widget_crop": "^2.4 || ^3.0", - "drupal/media_contextual_crop": "~2.0" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.3", - "datestamp": "1747295243", - "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": "drdam", - "homepage": "https://www.drupal.org/user/1555440" - } - ], - "description": "An adapter between focal_point crop plugin and media_contextual_crop", - "homepage": "https://www.drupal.org/project/media_contextual_crop_iwc_adapter", - "keywords": [ - "Drupal" - ], - "support": { - "source": "https://git.drupalcode.org/project/media_contextual_crop_iwc_adapter" - } - }, - { - "name": "drupal/media_library_media_modify", - "version": "1.0.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/media_library_media_modify.git", - "reference": "1.0.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/media_library_media_modify-1.0.0.zip", - "reference": "1.0.0", - "shasum": "62386e5b8f9ec926fc58ecff1145aae6f835808a" - }, - "require": { - "drupal/core": "^9.5 || ^10" - }, - "require-dev": { - "drupal/diff": "^1.0", - "drupal/inline_entity_form": "1.0-rc14", - "drush/drush": "^12.0" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "1.0.0", - "datestamp": "1723624265", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - }, - "patches": { - "drupal/core": { - "Issue #3263397-10: Simplify form logic in media library": "https://www.drupal.org/files/issues/2023-01-19/3263397-16.patch" - }, - "drupal/inline_entity_form": { - "Issue #3271293: Changes are lost when collapsing a paragraphs subform including an inline_entity_form": "https://www.drupal.org/files/issues/2022-09-22/47-8.diff" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "Christian Fritsch", - "homepage": "https://www.drupal.org/user/157725", - "email": "christian.fritsch@burda.com" - }, - { - "name": "chr.fritsch", - "homepage": "https://www.drupal.org/user/2103716" - }, - { - "name": "daniel.bosen", - "homepage": "https://www.drupal.org/user/404865" - }, - { - "name": "volkerk", - "homepage": "https://www.drupal.org/user/57527" - } - ], - "description": "Store context specific overrides for entity reference fields.", - "homepage": "https://www.drupal.org/project/media_library_media_modify", - "support": { - "source": "https://git.drupalcode.org/project/media_library_media_modify" - } - }, - { - "name": "drupal/media_responsive_thumbnail", - "version": "1.5.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/media_responsive_thumbnail.git", - "reference": "8.x-1.5" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/media_responsive_thumbnail-8.x-1.5.zip", - "reference": "8.x-1.5", - "shasum": "ef96d0c4e4f2759eb19888823e9e733af67f7445" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.5", - "datestamp": "1678903132", - "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": "tunic", - "homepage": "https://www.drupal.org/user/397132" - }, - { - "name": "yoruvo", - "homepage": "https://www.drupal.org/user/2989799" - } - ], - "description": "Adds a field formatter for Media references which displays a responsive image.", - "homepage": "https://www.drupal.org/project/media_responsive_thumbnail", - "support": { - "source": "https://git.drupalcode.org/project/media_responsive_thumbnail" - } - }, - { - "name": "drupal/menu_admin_per_menu", - "version": "1.7.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git", - "reference": "8.x-1.7" - }, - "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" - }, - "require": { - "drupal/core": "^10.2 || ^11.0 || ^12" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.7", - "datestamp": "1750246188", - "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": "anrikun", - "homepage": "https://www.drupal.org/user/410199" - }, - { - "name": "jeroent", - "homepage": "https://www.drupal.org/user/2228934" - }, - { - "name": "jonas139", - "homepage": "https://www.drupal.org/user/2873401" - }, - { - "name": "mkdok", - "homepage": "https://www.drupal.org/user/3308753" - } - ], - "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.", - "homepage": "https://www.drupal.org/project/menu_admin_per_menu", - "keywords": [ - "Drupal" - ], - "support": { - "source": "https://git.drupalcode.org/project/menu_admin_per_menu", - "issues": "https://drupal.org/project/issues/menu_admin_per_menu" + "source": "https://git.drupalcode.org/project/link_attributes" } }, { "name": "drupal/menu_block", - "version": "1.14.0", + "version": "1.5.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/menu_block.git", - "reference": "8.x-1.14" + "reference": "8.x-1.5" }, "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.5.zip", + "reference": "8.x-1.5", + "shasum": "b3ac3e23e426f702974d88cc8bf93bf2a0b6236b" }, "require": { - "drupal/core": "^10.1 || ^11" + "drupal/core": "*" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.14", - "datestamp": "1740624449", + "version": "8.x-1.5", + "datestamp": "1525200184", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -12547,25 +6517,21 @@ ], "authors": [ { - "name": "dave reid", + "name": "Dave Reid", "homepage": "https://www.drupal.org/user/53892" }, + { + "name": "JohnAlbin", + "homepage": "https://www.drupal.org/user/32095" + }, { "name": "joelpittet", "homepage": "https://www.drupal.org/user/160302" }, - { - "name": "johnalbin", - "homepage": "https://www.drupal.org/user/32095" - }, { "name": "kim.pepper", "homepage": "https://www.drupal.org/user/370574" }, - { - "name": "renatog", - "homepage": "https://www.drupal.org/user/3326031" - }, { "name": "rrrob", "homepage": "https://www.drupal.org/user/273533" @@ -12578,30 +6544,37 @@ } }, { - "name": "drupal/menu_link_config", - "version": "1.0.0-alpha9", + "name": "drupal/message", + "version": "1.0.0-rc2", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/menu_link_config.git", - "reference": "8.x-1.0-alpha9" + "url": "https://git.drupalcode.org/project/message.git", + "reference": "8.x-1.0-rc2" }, "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/message-8.x-1.0-rc2.zip", + "reference": "8.x-1.0-rc2", + "shasum": "8c74e4e98fd6bfa19728f499dc5f14ce29f5ba17" }, "require": { - "drupal/core": "^8 || ^9 || ^10 || ^11" + "drupal/core": "*" + }, + "require-dev": { + "drupal/coder": "^8.2", + "drupal/token": "*" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.0-alpha9", - "datestamp": "1741211826", + "version": "8.x-1.0-rc2", + "datestamp": "1524519784", "security-coverage": { "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" + "message": "RC releases are not covered by Drupal security advisories." } } }, @@ -12611,151 +6584,24 @@ ], "authors": [ { - "name": "dawehner", - "homepage": "https://www.drupal.org/user/99340" + "name": "Grayside", + "homepage": "https://www.drupal.org/user/346868" }, { - "name": "geek-merlin", - "homepage": "https://www.drupal.org/user/229048" + "name": "RoySegall", + "homepage": "https://www.drupal.org/user/1812910" }, - { - "name": "hydra", - "homepage": "https://www.drupal.org/user/647364" - }, - { - "name": "labboy0276", - "homepage": "https://www.drupal.org/user/2397942" - }, - { - "name": "malcomio", - "homepage": "https://www.drupal.org/user/418511" - }, - { - "name": "tstoeckler", - "homepage": "https://www.drupal.org/user/107158" - } - ], - "description": "muh", - "homepage": "https://www.drupal.org/project/menu_link_config", - "support": { - "source": "https://git.drupalcode.org/project/menu_link_config" - } - }, - { - "name": "drupal/menu_trail_by_path", - "version": "2.2.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/menu_trail_by_path.git", - "reference": "2.2.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" - }, - "require": { - "drupal/core": "^9 || ^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.2.0", - "datestamp": "1747319648", - "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": "berdir", - "homepage": "https://www.drupal.org/user/214652" - }, - { - "name": "davy-r", - "homepage": "https://www.drupal.org/user/3278771" - }, - { - "name": "mbovan", - "homepage": "https://www.drupal.org/user/3149657" - }, - { - "name": "redndahead", - "homepage": "https://www.drupal.org/user/160320" - }, - { - "name": "SeriousMatters", - "homepage": "https://www.drupal.org/user/290439" - } - ], - "description": "Expand menus and set active-trail according to the current path.", - "homepage": "https://www.drupal.org/project/menu_trail_by_path", - "support": { - "source": "https://git.drupalcode.org/project/menu_trail_by_path" - } - }, - { - "name": "drupal/message", - "version": "1.8.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/message.git", - "reference": "8.x-1.8" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/message-8.x-1.8.zip", - "reference": "8.x-1.8", - "shasum": "461a00b425c9d8907f489e8109fb6b20871c463e" - }, - "require": { - "drupal/core": "^9.2 || ^10 || ^11" - }, - "require-dev": { - "drupal/token": "^1.14" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.8", - "datestamp": "1739744268", - "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": "amitaibu", "homepage": "https://www.drupal.org/user/57511" }, { - "name": "bluegeek9", - "homepage": "https://www.drupal.org/user/1286304" - }, - { - "name": "Grayside", - "homepage": "https://www.drupal.org/user/346868" + "name": "itamar", + "homepage": "https://www.drupal.org/user/1757910" }, { "name": "jhedstrom", "homepage": "https://www.drupal.org/user/208732" - }, - { - "name": "RoySegall", - "homepage": "https://www.drupal.org/user/1812910" } ], "description": "Message", @@ -12766,51 +6612,49 @@ }, { "name": "drupal/metatag", - "version": "2.1.1", + "version": "1.10.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/metatag.git", - "reference": "2.1.1" + "reference": "8.x-1.10" }, "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.10.zip", + "reference": "8.x-1.10", + "shasum": "06275ae0f72cfcdbec8b8e8fd5d0863a5967bbcc" }, "require": { - "drupal/core": "^9.4 || ^10 || ^11", - "drupal/token": "^1.0", - "php": ">=8.0" + "drupal/core": "*", + "drupal/token": "^1.0" }, "require-dev": { - "drupal/forum": "1.x-dev", - "drupal/hal": "^1 || ^2 || ^9", + "drupal/devel": "^2.0", "drupal/metatag_dc": "*", "drupal/metatag_open_graph": "*", "drupal/page_manager": "^4.0", "drupal/redirect": "^1.0", - "ergebnis/composer-normalize": "*", - "mpyw/phpunit-patch-serializable-comparison": "*" + "drupal/restui": "^1.0", + "drupal/schema_metatag": "^1.0", + "drupal/schema_web_page": "*" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "2.1.1", - "datestamp": "1752433708", + "version": "8.x-1.10", + "datestamp": "1567099985", "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", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { @@ -12819,7 +6663,7 @@ "role": "Developer" }, { - "name": "dave reid", + "name": "Dave Reid", "homepage": "https://www.drupal.org/user/53892" } ], @@ -12830,35 +6674,305 @@ "seo" ], "support": { - "source": "https://git.drupalcode.org/project/metatag", - "issues": "https://www.drupal.org/project/issues/metatag", - "docs": "https://www.drupal.org/docs/8/modules/metatag" + "source": "http://cgit.drupalcode.org/metatag", + "issues": "http://drupal.org/project/issues/metatag" } }, { - "name": "drupal/microformats", - "version": "2.0.0-beta3", + "name": "drupal/migrate_plus", + "version": "4.2.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/microformats.git", - "reference": "2.0.0-beta3" + "url": "https://git.drupalcode.org/project/migrate_plus.git", + "reference": "8.x-4.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/microformats-2.0.0-beta3.zip", - "reference": "2.0.0-beta3", - "shasum": "2306661c616a2a340e831ecfdd969e6b06fb351e" + "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-4.2.zip", + "reference": "8.x-4.2", + "shasum": "5736a43e39cc5c091d54ceef2849ea35ba979af3" }, "require": { - "barnabywalters/mf-cleaner": "^0.1.4", - "drupal/core": "^8 || ^9 || ^10", - "mf2/mf2": "~0.3" + "drupal/core": "^8.3" + }, + "require-dev": { + "drupal/entity": "*", + "drupal/migrate_example_advanced_setup": "*", + "drupal/migrate_example_setup": "*", + "drupal/migrate_tools": "*", + "drupal/profile": "*" + }, + "suggest": { + "ext-soap": "*", + "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-4.x": "4.x-dev" + }, "drupal": { - "version": "2.0.0-beta3", - "datestamp": "1695297696", + "version": "8.x-4.2", + "datestamp": "1555683487", + "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 Ryan", + "homepage": "https://www.drupal.org/u/mikeryan", + "role": "Maintainer" + }, + { + "name": "mikeryan", + "homepage": "https://www.drupal.org/user/4420" + } + ], + "description": "Enhancements to core migration support.", + "homepage": "https://www.drupal.org/project/migrate_plus", + "support": { + "source": "https://cgit.drupalcode.org/migrate_plus", + "issues": "https://www.drupal.org/project/issues/migrate_plus", + "irc": "irc://irc.freenode.org/drupal-migrate" + } + }, + { + "name": "drupal/migrate_source_csv", + "version": "3.1.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/migrate_source_csv.git", + "reference": "8.x-3.1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/migrate_source_csv-8.x-3.1.zip", + "reference": "8.x-3.1", + "shasum": "a6fad35d60ce886352135659a1c5f09e808d343b" + }, + "require": { + "drupal/core": "^8.7", + "league/csv": "^9.1" + }, + "require-dev": { + "drupal/migrate_plus": "4.x-dev", + "mikey179/vfsstream": "^1", + "phpunit/phpunit": "^4.8.35 || ^6.5" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-3.x": "3.x-dev" + }, + "drupal": { + "version": "8.x-3.1", + "datestamp": "1566225488", + "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": "Lucas Hedding", + "homepage": "https://www.drupal.org/u/heddn", + "role": "Maintainer" + }, + { + "name": "mikeryan", + "homepage": "https://www.drupal.org/user/4420" + } + ], + "description": "CSV source migration.", + "homepage": "https://www.drupal.org/project/migrate_source_csv", + "support": { + "source": "https://cgit.drupalcode.org/migrate_source_csv", + "issues": "https://www.drupal.org/project/issues/migrate_source_csv", + "irc": "irc://irc.freenode.org/drupal-migrate" + } + }, + { + "name": "drupal/migrate_tools", + "version": "4.3.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/migrate_tools.git", + "reference": "8.x-4.3" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-4.3.zip", + "reference": "8.x-4.3", + "shasum": "dbff0c5dbfdeeeca2294cbd2a858b851b3ba0753" + }, + "require": { + "drupal/core": "^8.3", + "drupal/migrate_plus": "^4 || ^5" + }, + "require-dev": { + "drupal/migrate_plus": "4.x-dev", + "drupal/migrate_source_csv": "^2.2", + "drush/drush": "^9" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-4.x": "4.x-dev" + }, + "drupal": { + "version": "8.x-4.3", + "datestamp": "1565213885", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + }, + "drush": { + "services": { + "drush.services.yml": "^9" + } + }, + "patches_applied": { + "The limit option does not accept a value": "https://www.drupal.org/files/issues/2019-02-05/migrate-tools_fix-drush-options_3024399-23.patch" + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "heddn", + "homepage": "https://www.drupal.org/user/1463982" + }, + { + "name": "mikeryan", + "homepage": "https://www.drupal.org/user/4420" + }, + { + "name": "moshe weitzman", + "homepage": "https://www.drupal.org/user/23" + } + ], + "description": "Tools to assist in developing and running migrations.", + "homepage": "http://drupal.org/project/migrate_tools", + "support": { + "source": "http://cgit.drupalcode.org/migrate_tools", + "issues": "http://drupal.org/project/migrate_tools", + "irc": "irc://irc.freenode.org/drupal-migrate" + } + }, + { + "name": "drupal/migrate_upgrade", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/migrate_upgrade.git", + "reference": "8.x-3.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/migrate_upgrade-8.x-3.0.zip", + "reference": "8.x-3.0", + "shasum": "5d5788a3262ce88a95a943c9419736edfae4e32c" + }, + "require": { + "drupal/core": "*", + "drupal/migrate_plus": "^4" + }, + "require-dev": { + "drupal/migrate_plus": "4.x-dev", + "drush/drush": "^9" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-3.x": "3.x-dev" + }, + "drupal": { + "version": "8.x-3.0", + "datestamp": "1547043784", + "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": "abhishek-anand", + "homepage": "https://www.drupal.org/user/468982" + }, + { + "name": "heddn", + "homepage": "https://www.drupal.org/user/1463982" + }, + { + "name": "ksenzee", + "homepage": "https://www.drupal.org/user/139855" + }, + { + "name": "mikeryan", + "homepage": "https://www.drupal.org/user/4420" + }, + { + "name": "ultimike", + "homepage": "https://www.drupal.org/user/51132" + }, + { + "name": "xjm", + "homepage": "https://www.drupal.org/user/65776" + } + ], + "description": "Drush support for direct upgrades from older Drupal versions.", + "homepage": "https://www.drupal.org/project/migrate_upgrade", + "support": { + "source": "https://git.drupalcode.org/project/migrate_upgrade" + } + }, + { + "name": "drupal/octavia", + "version": "1.0.0-beta4", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/octavia.git", + "reference": "8.x-1.0-beta4" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/octavia-8.x-1.0-beta4.zip", + "reference": "8.x-1.0-beta4", + "shasum": "d745d095236cb96146a4d294a1d61897f7b473df" + }, + "require": { + "drupal/bulma": "^1.0-alpha2", + "drupal/core": "~8.0", + "drupal/skins": "^1.0-alpha4" + }, + "type": "drupal-theme", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-beta4", + "datestamp": "1566518585", "security-coverage": { "status": "not-covered", "message": "Beta releases are not covered by Drupal security advisories." @@ -12871,641 +6985,13 @@ ], "authors": [ { - "name": "HongPong", - "homepage": "https://www.drupal.org/user/60005" - }, - { - "name": "mlncn", - "homepage": "https://www.drupal.org/user/64383" - } - ], - "description": "Microformats to provide support for exchanging data objects", - "homepage": "https://www.drupal.org/project/microformats", - "keywords": [ - "Drupal" - ], - "support": { - "source": "http://cgit.drupalcode.org/microformats", - "issues": "http://drupal.org/project/issues/microformats" - } - }, - { - "name": "drupal/migrate_plus", - "version": "6.0.5", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/migrate_plus.git", - "reference": "6.0.5" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/migrate_plus-6.0.5.zip", - "reference": "6.0.5", - "shasum": "441e91086feaca7a6f1acf1735023fff0dfc5e1e" - }, - "require": { - "drupal/core": ">=9.1", - "php": ">=7.4" - }, - "require-dev": { - "drupal/migrate_example_advanced_setup": "*", - "drupal/migrate_example_setup": "*" - }, - "suggest": { - "ext-soap": "*", - "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "6.0.5", - "datestamp": "1732124623", - "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 Ryan", - "homepage": "https://www.drupal.org/u/mikeryan", - "role": "Maintainer" - }, - { - "name": "Lucas Hedding", - "homepage": "https://www.drupal.org/u/heddn", - "role": "Maintainer" - }, - { - "name": "mikeryan", - "homepage": "https://www.drupal.org/user/4420" - } - ], - "description": "Enhancements to core migration support.", - "homepage": "https://www.drupal.org/project/migrate_plus", - "support": { - "source": "https://git.drupalcode.org/project/migrate_plus", - "issues": "https://www.drupal.org/project/issues/migrate_plus", - "slack": "#migrate" - } - }, - { - "name": "drupal/migrate_source_csv", - "version": "3.7.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/migrate_source_csv.git", - "reference": "8.x-3.7" - }, - "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" - }, - "require": { - "drupal/core": ">=9.1", - "league/csv": "^9.1", - "php": ">=7.1" - }, - "require-dev": { - "drupal/migrate_plus": ">=5.0" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-3.7", - "datestamp": "1735314551", - "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": "Lucas Hedding", - "homepage": "https://www.drupal.org/u/heddn", - "role": "Maintainer" - } - ], - "description": "CSV source migration.", - "homepage": "https://www.drupal.org/project/migrate_source_csv", - "support": { - "source": "https://cgit.drupalcode.org/migrate_source_csv", - "issues": "https://www.drupal.org/project/issues/migrate_source_csv" - } - }, - { - "name": "drupal/migrate_tools", - "version": "6.1.2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/migrate_tools.git", - "reference": "6.1.2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/migrate_tools-6.1.2.zip", - "reference": "6.1.2", - "shasum": "839f561a6d81ea1b5e0b74990f69401e1fb7a379" - }, - "require": { - "drupal/core": ">=9.1", - "php": ">=8.1" - }, - "require-dev": { - "drupal/migrate_plus": ">=5", - "drupal/migrate_source_csv": ">=3", - "drush/drush": ">=11" - }, - "suggest": { - "drupal/migrate_plus": ">=5", - "drush/drush": ">=11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "6.1.2", - "datestamp": "1753365392", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - }, - "drush": { - "services": { - "drush.services.yml": ">=9" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "Mike Ryan", - "homepage": "https://www.drupal.org/u/mikeryan", - "role": "Maintainer" - }, - { - "name": "Lucas Hedding", - "homepage": "https://www.drupal.org/u/heddn", - "role": "Maintainer" - }, - { - "name": "mikeryan", - "homepage": "https://www.drupal.org/user/4420" - } - ], - "description": "Tools to assist in developing and running migrations.", - "homepage": "http://drupal.org/project/migrate_tools", - "support": { - "source": "https://git.drupalcode.org/project/migrate_tools", - "issues": "https://www.drupal.org/project/issues/migrate_tools", - "slack": "#migrate" - } - }, - { - "name": "drupal/migrate_upgrade", - "version": "4.0.2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/migrate_upgrade.git", - "reference": "4.0.2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/migrate_upgrade-4.0.2.zip", - "reference": "4.0.2", - "shasum": "358f3cea91411b179a1c78841f1cc3166a947088" - }, - "require": { - "drupal/core": ">=9", - "drupal/migrate_plus": ">=5", - "drush/drush": ">=9", - "php": ">7.3" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "4.0.2", - "datestamp": "1719350600", - "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 Ryan", - "homepage": "https://www.drupal.org/u/mikeryan", - "role": "Maintainer" - }, - { - "name": "Lucas Hedding", - "homepage": "https://www.drupal.org/u/heddn", - "role": "Maintainer" - } - ], - "description": "Drush support for direct upgrades from older Drupal versions.", - "homepage": "https://www.drupal.org/project/migrate_upgrade", - "support": { - "source": "https://git.drupalcode.org/project/migrate_upgrade", - "issues": "https://www.drupal.org/project/issues/migrate_upgrade", - "slack": "#migrate" - } - }, - { - "name": "drupal/migration_helpers", - "version": "dev-1.0.x", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/migration_helpers.git", - "reference": "94ccca4ce30b76b69d4b41a51d46c7297e2b1081" - }, - "require": { - "drupal/core": "^9 || ^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-1.0.x": "1.0.x-dev" - }, - "drupal": { - "version": "1.0.x-dev", - "datestamp": "1750883584", - "security-coverage": { - "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." - } - } - }, - "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" - } - ], - "description": "Provides helpers to migrate data into modern Drupal.", - "homepage": "https://drupal.org/project/migration_helpers", - "support": { - "source": "https://git.drupalcode.org/project/migration_helpers" - } - }, - { - "name": "drupal/minimalhtml", - "version": "2.0.3", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/minimalhtml.git", - "reference": "2.0.3" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/minimalhtml-2.0.3.zip", - "reference": "2.0.3", - "shasum": "d40ce13c06c0389bd3dab2ad487a6086cd43700e" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10 || ^11 || ^12", - "drupal/wysiwyg_linebreaks": "2.0.x-dev@dev" - }, - "require-dev": { - "drupal/ckeditor": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.3", - "datestamp": "1748017058", - "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": "Benjamin Melançon", - "homepage": "https://agaric.com/mlncn", - "email": "mlncn@agaric.com", - "role": "Maintainer" - }, - { - "name": "See contributors", - "homepage": "https://www.drupal.org/node/2937110/committers" - }, - { - "name": "mlncn", - "homepage": "https://www.drupal.org/user/64383" - } - ], - "description": "Minimal HTML provides a WYSIWYG text format suitable for basic uses like short text fields or administrator-configured notices.", - "homepage": "https://www.drupal.org/project/minimalhtml", - "support": { - "source": "https://git.drupalcode.org/project/minimalhtml", - "issues": "https://www.drupal.org/project/issues/minimalhtml" - } - }, - { - "name": "drupal/minimalhtmltitle", - "version": "2.0.3", - "require": { - "drupal/ckeditor": "*", - "drupal/core": "^8 || ^9 || ^10", - "drupal/minimalhtml": "^2" - }, - "type": "metapackage", - "extra": { - "drupal": { - "version": "2.0.3", - "datestamp": "1748017058", - "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": "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" - } - ], - "description": "A super-minimal WYSIWYG text format for titles, subtitles, and other text not meant to be wrapped in paragraph tags or have any block-level HTML elements.", - "homepage": "https://www.drupal.org/project/minimalhtml", - "support": { - "source": "https://git.drupalcode.org/project/minimalhtml" - } - }, - { - "name": "drupal/node_view_permissions", - "version": "1.6.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/node_view_permissions.git", - "reference": "8.x-1.6" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/node_view_permissions-8.x-1.6.zip", - "reference": "8.x-1.6", - "shasum": "f56e0d43f41f384c73d93e18abfbe38809533d5e" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.6", - "datestamp": "1686297669", - "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": "adcillc", - "homepage": "https://www.drupal.org/user/366450" - }, - { - "name": "adci_contributor", - "homepage": "https://www.drupal.org/user/1830536" - }, - { - "name": "hxdef", - "homepage": "https://www.drupal.org/user/2622115" - } - ], - "description": "enables permissions 'View own content' and 'View any content' for each content type on permissions page", - "homepage": "http://drupal.org/project/node_view_permissions", - "support": { - "source": "https://git.drupalcode.org/project/node_view_permissions" - } - }, - { - "name": "drupal/noreferrer", - "version": "1.18.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/noreferrer.git", - "reference": "8.x-1.18" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/noreferrer-8.x-1.18.zip", - "reference": "8.x-1.18", - "shasum": "2faed2bc3f104eafcc061d941137f981bbea2078" - }, - "require": { - "drupal/core": "^8.7.7 || ^9 || ^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.18", - "datestamp": "1716361226", - "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": "mark burdett", - "homepage": "https://www.drupal.org/u/mfb" - } - ], - "description": "Adds rel=\"noopener\" and/or rel=\"noreferrer\" to links.", - "homepage": "https://www.drupal.org/project/noreferrer", - "support": { - "source": "https://git.drupalcode.org/project/noreferrer", - "issues": "https://www.drupal.org/project/issues/noreferrer" - }, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/mfb" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/mfb" - } - ] - }, - { - "name": "drupal/notfoundpassthrough", - "version": "dev-1.x", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/notfoundpassthrough.git", - "reference": "8561838b0636eec6a452b7f35bcec3c673a90a92" - }, - "require": { - "drupal/core": "^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, - "drupal": { - "version": "1.0.0-beta5+2-dev", - "datestamp": "1736206027", - "security-coverage": { - "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "name": "Benjamin Melançon", - "homepage": "https://agaric.coop/mlncn", - "email": "mlncn@agaric.coop", - "role": "Maintainer" - }, - { - "name": "David Valdez", - "homepage": "https://agaric.coop/gnuget", - "email": "gnuget@agaric.coop", - "role": "Maintainer" - }, - { - "name": "Vlad Pavlovic", - "homepage": "https://www.drupal.org/u/vladpavlovic", - "role": "Creator" - }, - { - "name": "Lucian NEAG", - "homepage": "https://www.drupal.org/u/luxian", - "role": "Ported to Drupal 7" - }, - { - "name": "See contributors", - "homepage": "https://www.drupal.org/node/3170743/committers" - } - ], - "homepage": "https://www.drupal.org/project/notfoundpassthrough", - "support": { - "source": "https://git.drupalcode.org/project/notfoundpassthrough", - "issues": "https://www.drupal.org/project/issues/notfoundpassthrough" - } - }, - { - "name": "drupal/octavia", - "version": "dev-2.0.x", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/octavia.git", - "reference": "23b696b1a43ea4b0f07ab6233128b528ffde4170" - }, - "require": { - "drupal/bulma": "1.x-dev@dev", - "drupal/components": "^3", - "drupal/core": "^9 || ^10", - "drupal/skins": "^2", - "drupal/twigsuggest": "^2" - }, - "type": "drupal-theme", - "extra": { - "branch-alias": { - "dev-2.0.x": "2.0.x-dev" - }, - "drupal": { - "version": "2.0.0-alpha1+23-dev", - "datestamp": "1738971348", - "security-coverage": { - "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "drutopia", - "homepage": "https://www.drupal.org/user/3763727" + "name": "cedewey", + "homepage": "https://www.drupal.org/user/38694" }, { "name": "drutopia_gitlab", "homepage": "https://www.drupal.org/user/3514271" }, - { - "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" @@ -13514,10 +7000,6 @@ "name": "nedjo", "homepage": "https://www.drupal.org/user/4481" }, - { - "name": "onion", - "homepage": "https://www.drupal.org/user/260583" - }, { "name": "ronaldmulero", "homepage": "https://www.drupal.org/user/241652" @@ -13542,107 +7024,35 @@ "issues": "https://gitlab.com/drutopia/octavia/issues" } }, - { - "name": "drupal/octavia_camouflage", - "version": "dev-2.0.x", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/octavia_camouflage.git", - "reference": "55252f3447e696d3b3043bf96fb8a26e6660bf7a" - }, - "require": { - "drupal/core": "^9 || ^10", - "drupal/octavia": "^2" - }, - "type": "drupal-theme", - "extra": { - "branch-alias": { - "dev-2.0.x": "2.0.x-dev" - }, - "drupal": { - "version": "2.0.x-dev", - "datestamp": "1750103014", - "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": "drutopia", - "homepage": "https://www.drupal.org/user/3763727" - }, - { - "name": "elkaro", - "homepage": "https://www.drupal.org/user/3577260" - }, - { - "name": "freescholar", - "homepage": "https://www.drupal.org/user/69463" - }, - { - "name": "megakeegman", - "homepage": "https://www.drupal.org/user/3620027" - }, - { - "name": "mlncn", - "homepage": "https://www.drupal.org/user/64383" - }, - { - "name": "skgchp", - "homepage": "https://www.drupal.org/user/3519194" - }, - { - "name": "wolcen", - "homepage": "https://www.drupal.org/user/3099655" - } - ], - "description": "A free-for-all-to-contribute-to set of skins for Drutopia's Octavia theme.", - "homepage": "https://gitlab.com/drutopia/octavia_camouflage", - "keywords": [ - "drutopia", - "skins", - "theme" - ], - "support": { - "source": "https://gitlab.com/drutopia/octavia_camouflage/tree/8.x-1.x", - "issues": "https://gitlab.com/drutopia/octavia_camouflage/issues" - } - }, { "name": "drupal/paragraphs", - "version": "1.19.0", + "version": "1.9.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/paragraphs.git", - "reference": "8.x-1.19" + "reference": "8.x-1.9" }, "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.9.zip", + "reference": "8.x-1.9", + "shasum": "c04753047fc995bfa2236c272d0b8344d77ee25d" }, "require": { - "drupal/core": "^10.2 || ^11", + "drupal/core": "~8", "drupal/entity_reference_revisions": "~1.3" }, "require-dev": { - "drupal/block_field": "1.x-dev", - "drupal/diff": "1.x-dev", + "drupal/block_field": "~1.0", + "drupal/ctools": "3.x-dev", + "drupal/diff": "~1.0", "drupal/entity_browser": "2.x-dev", "drupal/entity_usage": "2.x-dev", - "drupal/feeds": "^3", - "drupal/field_group": "3.x-dev", - "drupal/inline_entity_form": "3.x-dev", + "drupal/field_group": "~1.0", + "drupal/inline_entity_form": "~1.0", "drupal/paragraphs-paragraphs_library": "*", - "drupal/replicate": "1.x-dev", - "drupal/search_api": "^1", + "drupal/replicate": "~1.0", + "drupal/search_api": "~1.0", "drupal/search_api_db": "*" }, "suggest": { @@ -13650,9 +7060,12 @@ }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.19", - "datestamp": "1740907076", + "version": "8.x-1.9", + "datestamp": "1565881389", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -13661,32 +7074,28 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0" ], "authors": [ { - "name": "berdir", + "name": "Berdir", "homepage": "https://www.drupal.org/user/214652" }, { - "name": "frans", + "name": "Frans", "homepage": "https://www.drupal.org/user/514222" }, + { + "name": "Primsi", + "homepage": "https://www.drupal.org/user/282629" + }, { "name": "jeroen.b", "homepage": "https://www.drupal.org/user/1853532" }, - { - "name": "jstoller", - "homepage": "https://www.drupal.org/user/99012" - }, { "name": "miro_dietiker", "homepage": "https://www.drupal.org/user/227761" - }, - { - "name": "primsi", - "homepage": "https://www.drupal.org/user/282629" } ], "description": "Enables the creation of Paragraphs entities.", @@ -13695,99 +7104,34 @@ "source": "https://git.drupalcode.org/project/paragraphs" } }, - { - "name": "drupal/paragraphs_features", - "version": "2.2.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/paragraphs_features.git", - "reference": "2.2.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/paragraphs_features-2.2.0.zip", - "reference": "2.2.0", - "shasum": "8a4872256ca008a9a0c86fdbe6e7dfa594d47779" - }, - "require": { - "drupal/core": "^9.2 || ^10 || ^11", - "drupal/paragraphs": "^1.13" - }, - "require-dev": { - "drupal/gin": "^3.0" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.2.0", - "datestamp": "1750763757", - "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": "Mladen Todorovic", - "homepage": "https://www.drupal.org/user/2103716", - "email": "mladen.todorovic@burda.com" - }, - { - "name": "Daniel Bosen", - "homepage": "https://www.drupal.org/user/404865", - "email": "daniel.bosen@burda.com" - }, - { - "name": "Christian Fritsch", - "homepage": "https://www.drupal.org/user/3511180", - "email": "christian.fritsch@burda.com" - }, - { - "name": "Volker Killesreiter", - "homepage": "https://www.drupal.org/user/57527", - "email": "volker.killesreiter@burda.com" - }, - { - "name": "Alex Pott", - "email": "alex.a.pott@gmail.com" - } - ], - "description": "Paragraphs features for extending paragraphs widget functionality.", - "homepage": "https://www.drupal.org/project/paragraphs_features", - "support": { - "source": "https://git.drupalcode.org/project/paragraphs_features" - } - }, { "name": "drupal/paranoia", - "version": "1.0.0-rc2", + "version": "1.0.0-alpha1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/paranoia.git", - "reference": "8.x-1.0-rc2" + "reference": "8.x-1.0-alpha1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/paranoia-8.x-1.0-rc2.zip", - "reference": "8.x-1.0-rc2", - "shasum": "ef9037b90412a669e719ed7ba99a52f642e0a5be" + "url": "https://ftp.drupal.org/files/projects/paranoia-8.x-1.0-alpha1.zip", + "reference": "8.x-1.0-alpha1", + "shasum": "4beb9c8ad6fdcc4feb0dc78bc8ce0d56560f707e" }, "require": { - "drupal/core": "^8.9 || ^9 || ^10" + "drupal/core": "~8.0" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.0-rc2", - "datestamp": "1690562977", + "version": "8.x-1.0-alpha1", + "datestamp": "1506626344", "security-coverage": { "status": "not-covered", - "message": "RC releases are not covered by Drupal security advisories." + "message": "Alpha releases are not covered by Drupal security advisories." } } }, @@ -13808,10 +7152,6 @@ "name": "killes@www.drop.org", "homepage": "https://www.drupal.org/user/227" }, - { - "name": "mlncn", - "homepage": "https://www.drupal.org/user/64383" - }, { "name": "nedjo", "homepage": "https://www.drupal.org/user/4481" @@ -13823,118 +7163,37 @@ "source": "https://git.drupalcode.org/project/paranoia" } }, - { - "name": "drupal/password_policy", - "version": "4.0.3", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/password_policy.git", - "reference": "4.0.3" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/password_policy-4.0.3.zip", - "reference": "4.0.3", - "shasum": "f583ede0ebd749459538d02dd527028d57a4e1ac" - }, - "require": { - "drupal/core": "^9.1 || ^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "4.0.3", - "datestamp": "1723552706", - "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": "aohrvetpv", - "homepage": "https://www.drupal.org/user/2760115" - }, - { - "name": "deekayen", - "homepage": "https://www.drupal.org/user/972" - }, - { - "name": "kristen pol", - "homepage": "https://www.drupal.org/user/8389" - }, - { - "name": "miglius", - "homepage": "https://www.drupal.org/user/18741" - }, - { - "name": "nerdstein", - "homepage": "https://www.drupal.org/user/1557710" - }, - { - "name": "paulocs", - "homepage": "https://www.drupal.org/user/3640109" - }, - { - "name": "shrop", - "homepage": "https://www.drupal.org/user/14767" - }, - { - "name": "vishalkhode", - "homepage": "https://www.drupal.org/user/2439156" - } - ], - "description": "Sets up constraints and expiration of passwords.", - "homepage": "https://www.drupal.org/project/password_policy", - "support": { - "source": "https://git.drupalcode.org/project/password_policy", - "issues": "https://www.drupal.org/project/issues/password_policy" - } - }, { "name": "drupal/pathauto", - "version": "1.13.0", + "version": "1.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/pathauto.git", - "reference": "8.x-1.13" + "reference": "8.x-1.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.13.zip", - "reference": "8.x-1.13", - "shasum": "e64b5a82cf1b8ab48bce400b21ae6fc99c8078fd" + "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.4.zip", + "reference": "8.x-1.4", + "shasum": "ddfb047ae04ca2ddf475d65f6c09bceb44169e25" }, "require": { - "drupal/core": "^9.4 || ^10 || ^11", + "drupal/core": "^8.5", "drupal/ctools": "*", "drupal/token": "*" }, - "require-dev": { - "drupal/forum": "*" - }, - "suggest": { - "drupal/redirect": "When installed Pathauto will provide a new \"Update Action\" in case your URLs change. This is the recommended update action and is considered the best practice for SEO and usability." - }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.13", - "datestamp": "1739552840", + "version": "8.x-1.4", + "datestamp": "1554239887", "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", @@ -13943,11 +7202,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" }, { @@ -13962,633 +7221,34 @@ "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.", "homepage": "https://www.drupal.org/project/pathauto", "support": { - "source": "https://cgit.drupalcode.org/pathauto", - "issues": "https://www.drupal.org/project/issues/pathauto", - "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", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/plausible.git", - "reference": "2.1.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/plausible-2.1.1.zip", - "reference": "2.1.1", - "shasum": "cf355cb4bb1820fad8b2cc3991e2521612ec0bbb" - }, - "require": { - "drupal/core": "^8.8.6 || ^9 || ^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.1.1", - "datestamp": "1732534895", - "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": "dieterholvoet", - "homepage": "https://www.drupal.org/user/3567222" - }, - { - "name": "droces", - "homepage": "https://www.drupal.org/user/2996575" - }, - { - "name": "opdavies", - "homepage": "https://www.drupal.org/user/381388" - } - ], - "description": "Allows your site to be tracked using Plausible, by adding a Javascript tracking snippet to every page.", - "homepage": "https://www.drupal.org/project/plausible", - "support": { - "source": "https://git.drupalcode.org/project/plausible" - } - }, - { - "name": "drupal/prepopulate", - "version": "2.5.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/prepopulate.git", - "reference": "8.x-2.5" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/prepopulate-8.x-2.5.zip", - "reference": "8.x-2.5", - "shasum": "9efbac5cba063c79b0cfc4f82bcd87a31e0b123d" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10 || ^11" - }, - "require-dev": { - "drupal/inline_entity_form": "^3.0@rc", - "drupal/og": "^1.x-dev" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-2.5", - "datestamp": "1732903418", - "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": "Heddn", - "homepage": "https://www.drupal.org/u/heddn", - "role": "Maintainer" - }, - { - "name": "Jbrauer", - "homepage": "https://www.drupal.org/u/jbrauer", - "role": "Maintainer" - }, - { - "name": "Eafarris", - "homepage": "https://www.drupal.org/u/eafarris", - "role": "Maintainer" - }, - { - "name": "FF1", - "homepage": "https://www.drupal.org/u/ff1", - "role": "Maintainer" - } - ], - "description": "Allows form elements to be prepopulated from the URL.", - "homepage": "https://www.drupal.org/project/prepopulate", - "keywords": [ - "Drupal" - ], - "support": { - "source": "https://git.drupalcode.org/project/prepopulate", - "issues": "https://www.drupal.org/project/issues/prepopulate" - } - }, - { - "name": "drupal/preview_link", - "version": "2.2.0-alpha2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/preview_link.git", - "reference": "2.2.0-alpha2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/preview_link-2.2.0-alpha2.zip", - "reference": "2.2.0-alpha2", - "shasum": "7a2fd37b7b8d038919f31cfd4fb4b2c43168b6e0" - }, - "require": { - "drupal/core": "^10.2 || ^11", - "drupal/dynamic_entity_reference": "^3 || ^4", - "php": ">=8.1" - }, - "require-dev": { - "drupal/entity_reference_revisions": "*", - "drupal/paragraphs": "^1" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.2.0-alpha2", - "datestamp": "1736820546", - "security-coverage": { - "status": "not-covered", - "message": "Alpha releases are not covered by Drupal security advisories." - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "name": "acbramley", - "homepage": "https://www.drupal.org/user/1036766" - }, - { - "name": "benjy", - "homepage": "https://www.drupal.org/user/1852732" - }, - { - "name": "dpi", - "homepage": "https://www.drupal.org/user/81431" - }, - { - "name": "larowlan", - "homepage": "https://www.drupal.org/user/395439" - }, - { - "name": "mstrelan", - "homepage": "https://www.drupal.org/user/314289" - }, - { - "name": "sam152", - "homepage": "https://www.drupal.org/user/1485048" - } - ], - "description": "Allows anyone to preview unpublished content with a unique link.", - "homepage": "https://www.drupal.org/project/preview_link", - "keywords": [ - "Drupal" - ], - "support": { - "source": "https://git.drupalcode.org/project/preview_link", - "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", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/r4032login.git", - "reference": "2.2.3" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/r4032login-2.2.3.zip", - "reference": "2.2.3", - "shasum": "6309c01b42ff6605cb6dd8f24ddde0c493f0fa2a" - }, - "require": { - "drupal/core": "^9.3 || ^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.2.3", - "datestamp": "1737623532", - "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": "bdone", - "homepage": "https://www.drupal.org/user/687670" - }, - { - "name": "Bevan", - "homepage": "https://www.drupal.org/user/49989" - }, - { - "name": "deekayen", - "homepage": "https://www.drupal.org/user/972" - }, - { - "name": "dieterholvoet", - "homepage": "https://www.drupal.org/user/3567222" - }, - { - "name": "grayle", - "homepage": "https://www.drupal.org/user/3145497" - }, - { - "name": "lotyrin", - "homepage": "https://www.drupal.org/user/216580" - }, - { - "name": "markdorison", - "homepage": "https://www.drupal.org/user/346106" - }, - { - "name": "ms2011", - "homepage": "https://www.drupal.org/user/108440" - }, - { - "name": "nixou", - "homepage": "https://www.drupal.org/user/2304734" - }, - { - "name": "pwolanin", - "homepage": "https://www.drupal.org/user/49851" - }, - { - "name": "robloach", - "homepage": "https://www.drupal.org/user/61114" - }, - { - "name": "shrop", - "homepage": "https://www.drupal.org/user/14767" - }, - { - "name": "Sk8erPeter", - "homepage": "https://www.drupal.org/user/1441344" - } - ], - "description": "Redirect anonymous users from 403 Access Denied pages to the /user/login page.", - "homepage": "https://www.drupal.org/project/r4032login", - "keywords": [ - "Drupal" - ], - "support": { - "source": "https://git.drupalcode.org/project/r4032login", - "issues": "https://www.drupal.org/project/issues/r4032login" - } - }, - { - "name": "drupal/rabbit_hole", - "version": "1.0.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/rabbit_hole.git", - "reference": "8.x-1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/rabbit_hole-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "9fd3129b27cd10e23a775719770bf2bda977c234" - }, - "require": { - "drupal/core": "^9.5 || ^10 || ^11" - }, - "require-dev": { - "drupal/commerce": "^2.39", - "drupal/commerce_product": "*", - "drupal/file_entity": "*", - "drupal/group": "*", - "drupal/paragraphs-paragraphs_library": "*" - }, - "type": "drupal-module", - "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+" - ], - "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": "Basic functionality that is shared among the different Rabbit Hole modules.", - "homepage": "https://www.drupal.org/project/rabbit_hole", - "support": { - "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", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/rdf.git", - "reference": "2.1.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/rdf-2.1.1.zip", - "reference": "2.1.1", - "shasum": "9c897d1313abdabbe80806d79643faffaa0b2466" - }, - "require": { - "drupal/core": "^9.4 || ^10.0", - "easyrdf/easyrdf": "^0.9 || ^1.0" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.1.1", - "datestamp": "1666340902", - "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": "Arto", - "homepage": "https://www.drupal.org/user/26089" - }, - { - "name": "bbrala", - "homepage": "https://www.drupal.org/user/3366066" - }, - { - "name": "bhuga", - "homepage": "https://www.drupal.org/user/186547" - }, - { - "name": "febbraro", - "homepage": "https://www.drupal.org/user/43670" - }, - { - "name": "jmiccolis", - "homepage": "https://www.drupal.org/user/31731" - }, - { - "name": "linclark", - "homepage": "https://www.drupal.org/user/396253" - }, - { - "name": "miglius", - "homepage": "https://www.drupal.org/user/18741" - }, - { - "name": "scor", - "homepage": "https://www.drupal.org/user/52142" - }, - { - "name": "smustgrave", - "homepage": "https://www.drupal.org/user/3252890" - } - ], - "description": "Enriches your content with metadata to let other applications (e.g. search engines, aggregators) better understand its relationships and attributes", - "homepage": "https://www.drupal.org/project/rdf", - "support": { - "source": "https://git.drupalcode.org/project/rdf" + "source": "https://git.drupalcode.org/project/pathauto" } }, { "name": "drupal/redirect", - "version": "1.11.0", + "version": "1.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/redirect.git", - "reference": "8.x-1.11" + "reference": "8.x-1.4" }, "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.4.zip", + "reference": "8.x-1.4", + "shasum": "4c7e0dc0ab0cbcc7d66e16cc684882c0eaa71c1c" }, "require": { - "drupal/core": "^9.2 || ^10 || ^11" + "drupal/core": "~8" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.11", - "datestamp": "1737382886", + "version": "8.x-1.4", + "datestamp": "1561757585", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -14597,21 +7257,17 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "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" }, - { - "name": "kristen pol", - "homepage": "https://www.drupal.org/user/8389" - }, { "name": "pifagor", "homepage": "https://www.drupal.org/user/2375692" @@ -14623,708 +7279,27 @@ "source": "https://git.drupalcode.org/project/redirect" } }, - { - "name": "drupal/redirect_404", - "version": "1.11.0", - "require": { - "drupal/core": "^9.2 || ^10 || ^11", - "drupal/redirect": "*" - }, - "type": "metapackage", - "extra": { - "drupal": { - "version": "8.x-1.11", - "datestamp": "1737382886", - "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": "berdir", - "homepage": "https://www.drupal.org/user/214652" - }, - { - "name": "dave reid", - "homepage": "https://www.drupal.org/user/53892" - }, - { - "name": "kristen pol", - "homepage": "https://www.drupal.org/user/8389" - }, - { - "name": "pifagor", - "homepage": "https://www.drupal.org/user/2375692" - } - ], - "description": "Logs 404 errors and allows users to create redirects for often requested but missing pages.", - "homepage": "https://www.drupal.org/project/redirect", - "support": { - "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", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/riddler.git", - "reference": "3.0.2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/riddler-3.0.2.zip", - "reference": "3.0.2", - "shasum": "c4342ada86895cdb68c8fc83d1229f1e51cd8ecf" - }, - "require": { - "drupal/captcha": "^2", - "drupal/core": "^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "3.0.2", - "datestamp": "1738255331", - "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": "alex_optim", - "homepage": "https://www.drupal.org/user/3317601" - }, - { - "name": "anybody", - "homepage": "https://www.drupal.org/user/291091" - }, - { - "name": "awolfey", - "homepage": "https://www.drupal.org/user/277371" - }, - { - "name": "grevil", - "homepage": "https://www.drupal.org/user/3668491" - }, - { - "name": "imerlin", - "homepage": "https://www.drupal.org/user/21895" - }, - { - "name": "thomas.frobieter", - "homepage": "https://www.drupal.org/user/409335" - } - ], - "description": "Provides a question and answer CAPTCHA.", - "homepage": "https://www.drupal.org/project/riddler", - "keywords": [ - "Drupal" - ], - "support": { - "source": "http://cgit.drupalcode.org/riddler", - "issues": "https://www.drupal.org/project/issues/riddler" - } - }, - { - "name": "drupal/role_delegation", - "version": "1.4.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/role_delegation.git", - "reference": "8.x-1.4" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/role_delegation-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "7637fb2506b134bc888c74d3dcfa79c8a0c207aa" - }, - "require": { - "drupal/core": "^10.3 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.4", - "datestamp": "1751012870", - "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": "Jeroen Tubex", - "homepage": "https://www.drupal.org/u/jeroent", - "role": "Maintainer" - }, - { - "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" - } - ], - "description": "Allows site administrators to grant some roles the authority to assign selected roles to users.", - "homepage": "http://drupal.org/project/role_delegation", - "support": { - "source": "https://git.drupalcode.org/project/role_delegation", - "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", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/schema_metatag.git", - "reference": "3.0.3" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/schema_metatag-3.0.3.zip", - "reference": "3.0.3", - "shasum": "54fadabe0b56cb3a5f48a48ff438e8ad5883423c" - }, - "require": { - "drupal/core": "^9 || ^10 || ^11", - "drupal/metatag": "^2.0", - "php": ">=8.0" - }, - "require-dev": { - "drupal/coder": "^8.3", - "drupal/metatag_views": "*", - "drupal/schema_article": "*", - "drupal/schema_organization": "*", - "ergebnis/composer-normalize": "*", - "mpyw/phpunit-patch-serializable-comparison": "*", - "phpcompatibility/php-compatibility": "^9.3" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "3.0.3", - "datestamp": "1721141808", - "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", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "DamienMcKenna", - "homepage": "https://www.drupal.org/user/108450" - }, - { - "name": "KarenS", - "homepage": "https://www.drupal.org/user/45874" - }, - { - "name": "wells", - "homepage": "https://www.drupal.org/user/2452278" - } - ], - "description": "Metatag implementation of Schema.org structured data (JSON-LD)", - "homepage": "https://www.drupal.org/project/schema_metatag", - "keywords": [ - "Drupal" - ], - "support": { - "source": "https://git.drupalcode.org/project/schema_metatag", - "issues": "https://www.drupal.org/project/issues/schema_metatag" - } - }, - { - "name": "drupal/scn", - "version": "2.0.3", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/scn.git", - "reference": "2.0.3" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/scn-2.0.3.zip", - "reference": "2.0.3", - "shasum": "f13d261528b5a61884ece9deb660c8e64c7d9ce7" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.3", - "datestamp": "1689485714", - "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": "Andrei Ivnitskii", - "homepage": "https://www.drupal.org/u/ivnish", - "role": "Maintainer" - } - ], - "description": "Notifies the site administrator by e-mail or telegram about new comments on the site.", - "homepage": "https://www.drupal.org/project/scn", - "support": { - "source": "https://git.drupalcode.org/project/scn", - "issues": "https://www.drupal.org/project/issues/scn" - } - }, - { - "name": "drupal/search404", - "version": "2.1.2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/search404.git", - "reference": "2.1.2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/search404-2.1.2.zip", - "reference": "2.1.2", - "shasum": "1bd271486856e33a23c394849503477b97fbe25f" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.1.2", - "datestamp": "1677067806", - "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": "anoopjohn", - "homepage": "https://www.drupal.org/user/188049" - }, - { - "name": "anybody", - "homepage": "https://www.drupal.org/user/291091" - }, - { - "name": "binnythomas", - "homepage": "https://www.drupal.org/user/3123091" - }, - { - "name": "emilymathew", - "homepage": "https://www.drupal.org/user/2921997" - }, - { - "name": "grevil", - "homepage": "https://www.drupal.org/user/3668491" - }, - { - "name": "jijojoseph_zyxware", - "homepage": "https://www.drupal.org/user/3561263" - }, - { - "name": "larssg", - "homepage": "https://www.drupal.org/user/655" - }, - { - "name": "varunity", - "homepage": "https://www.drupal.org/user/273530" - }, - { - "name": "vimaljoseph", - "homepage": "https://www.drupal.org/user/817380" - }, - { - "name": "zyxware", - "homepage": "https://www.drupal.org/user/222163" - } - ], - "description": "Automatically search for the keywords in URLs that result in 404 errors and show results instead of Page-Not-Found.", - "homepage": "https://www.drupal.org/project/search404", - "support": { - "source": "https://git.drupalcode.org/project/search404" - } - }, { "name": "drupal/search_api", - "version": "1.38.0", + "version": "1.14.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/search_api.git", - "reference": "8.x-1.38" + "reference": "8.x-1.14" }, "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.14.zip", + "reference": "8.x-1.14", + "shasum": "bfc45a5ea3965cd8355927cd56a8f6a148cfc5e5" }, "require": { - "drupal/core": "^10.2 || ^11" + "drupal/core": "^8.6" }, "conflict": { "drupal/search_api_solr": "2.* || 3.0 || 3.1" }, "require-dev": { - "drupal/language_fallback_fix": "@dev", "drupal/search_api_autocomplete": "@dev", "drupal/search_api_db": "*" }, @@ -15335,18 +7310,29 @@ }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.38", - "datestamp": "1740298961", + "version": "8.x-1.14", + "datestamp": "1562599986", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } + }, + "drush": { + "services": { + "drush.services.yml": "^9" + } + }, + "patches_applied": { + "Notice: Undefined index: total When we enable the module in the installation step": "https://www.drupal.org/files/issues/2931562-13--undefined_total_in_task_manager_batch_finish.patch" } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { @@ -15365,77 +7351,26 @@ "description": "Provides a generic framework for modules offering search capabilities.", "homepage": "https://www.drupal.org/project/search_api", "support": { - "source": "https://git.drupalcode.org/project/search_api", + "source": "http://git.drupal.org/project/search_api.git", "issues": "https://www.drupal.org/project/issues/search_api", "irc": "irc://irc.freenode.org/drupal-search-api" } }, - { - "name": "drupal/search_api_autocomplete", - "version": "1.10.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/search_api_autocomplete.git", - "reference": "8.x-1.10" - }, - "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" - }, - "require": { - "drupal/core": "^10.2 || ^11", - "drupal/search_api": "^1.0" - }, - "require-dev": { - "drupal/search_api_page": "1.x-dev" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.10", - "datestamp": "1736941746", - "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": "Thomas Seidl", - "homepage": "https://www.drupal.org/u/drunken-monkey" - }, - { - "name": "See other contributors", - "homepage": "https://www.drupal.org/node/1142202/committers" - } - ], - "description": "Adds autocomplete functionality to searches.", - "homepage": "https://www.drupal.org/project/search_api_autocomplete", - "support": { - "source": "http://git.drupal.org/project/search_api_autocomplete.git", - "issues": "https://www.drupal.org/project/issues/search_api_autocomplete", - "irc": "irc://irc.freenode.org/drupal-search-api" - } - }, { "name": "drupal/search_api_db", - "version": "1.38.0", + "version": "1.14.0", "require": { - "drupal/core": "^10.2 || ^11", - "drupal/search_api": "*" + "drupal/core": "~8.0", + "drupal/search_api": "self.version" }, "type": "metapackage", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.38", - "datestamp": "1740298961", + "version": "8.x-1.14", + "datestamp": "1562599986", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -15447,6 +7382,10 @@ "GPL-2.0-or-later" ], "authors": [ + { + "name": "Nick_vh", + "homepage": "https://www.drupal.org/user/122682" + }, { "name": "borisson_", "homepage": "https://www.drupal.org/user/2393360" @@ -15454,10 +7393,6 @@ { "name": "drunken monkey", "homepage": "https://www.drupal.org/user/205582" - }, - { - "name": "nick_vh", - "homepage": "https://www.drupal.org/user/122682" } ], "description": "Offers an implementation of the Search API that uses database tables for indexing content.", @@ -15466,294 +7401,38 @@ "source": "https://git.drupalcode.org/project/search_api" } }, - { - "name": "drupal/search_api_saved_searches", - "version": "1.1.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/search_api_saved_searches.git", - "reference": "8.x-1.1" - }, - "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" - }, - "require": { - "drupal/core": "^10.1 || ^11", - "drupal/search_api": "^1.20" - }, - "require-dev": { - "drupal/facets": "@dev", - "drupal/search_api_page": "@dev" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.1", - "datestamp": "1740299097", - "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": "Thomas Seidl", - "homepage": "https://www.drupal.org/u/drunken-monkey" - }, - { - "name": "See other contributors", - "homepage": "https://www.drupal.org/node/1142202/committers" - } - ], - "description": "Allows visitors to bookmark searches and get notifications for new results.", - "homepage": "https://www.drupal.org/project/search_api_saved_searches", - "support": { - "source": "http://git.drupal.org/project/search_api_saved_searches.git", - "issues": "https://www.drupal.org/project/issues/search_api_saved_searches", - "irc": "irc://irc.freenode.org/drupal-search-api" - } - }, - { - "name": "drupal/seckit", - "version": "2.0.3", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/seckit.git", - "reference": "2.0.3" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/seckit-2.0.3.zip", - "reference": "2.0.3", - "shasum": "34d38f2daaf99781ef6b7e7fbe2eeabc73a7ca16" - }, - "require": { - "drupal/core": "^9.5 || ^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.3", - "datestamp": "1726075930", - "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": "badjava", - "homepage": "https://www.drupal.org/user/83372" - }, - { - "name": "jweowu", - "homepage": "https://www.drupal.org/user/152788" - }, - { - "name": "mcdruid", - "homepage": "https://www.drupal.org/user/255969" - }, - { - "name": "p0deje", - "homepage": "https://www.drupal.org/user/529960" - } - ], - "description": "SecKit provides Drupal with various security-hardening options.", - "homepage": "https://www.drupal.org/project/seckit", - "keywords": [ - "Drupal", - "security" - ], - "support": { - "source": "https://git.drupalcode.org/project/seckit", - "issues": "http://drupal.org/project/issues/seckit" - } - }, - { - "name": "drupal/select_or_other", - "version": "4.2.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/select_or_other.git", - "reference": "4.2.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/select_or_other-4.2.0.zip", - "reference": "4.2.0", - "shasum": "1e33d196a7bc6116c66d5e77b53e2fee6f1e62d9" - }, - "require": { - "drupal/core": "^10.1 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "4.2.0", - "datestamp": "1733203728", - "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": "daften", - "homepage": "https://www.drupal.org/user/176274" - }, - { - "name": "danielb", - "homepage": "https://www.drupal.org/user/134005" - }, - { - "name": "haydeniv", - "homepage": "https://www.drupal.org/user/149501" - }, - { - "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" - }, - { - "name": "qzmenko", - "homepage": "https://www.drupal.org/user/3220037" - }, - { - "name": "vladbo", - "homepage": "https://www.drupal.org/user/2696261" - } - ], - "description": "Provides a select box form element with additional option 'Other' to give a textfield.", - "homepage": "https://www.drupal.org/project/select_or_other", - "support": { - "source": "https://git.drupalcode.org/project/select_or_other" - } - }, - { - "name": "drupal/shield", - "version": "1.8.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/shield.git", - "reference": "8.x-1.8" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/shield-8.x-1.8.zip", - "reference": "8.x-1.8", - "shasum": "709b5580790a3b5bd8dda26f722cdb5a9c3911c5" - }, - "require": { - "drupal/core": "^9.2 || ^10 || ^11" - }, - "require-dev": { - "drupal/key": "^1.16" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.8", - "datestamp": "1719947682", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - }, - "branch-alias": { - "dev-8.x-1.x": "1.x-dev" - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "badjava", - "homepage": "https://www.drupal.org/user/83372" - }, - { - "name": "chx", - "homepage": "https://www.drupal.org/user/9446" - }, - { - "name": "geek-merlin", - "homepage": "https://www.drupal.org/user/229048" - }, - { - "name": "japerry", - "homepage": "https://www.drupal.org/user/45640" - }, - { - "name": "kalman.hosszu", - "homepage": "https://www.drupal.org/user/267481" - }, - { - "name": "pkiraly", - "homepage": "https://www.drupal.org/user/352587" - }, - { - "name": "vbouchet", - "homepage": "https://www.drupal.org/user/1671428" - } - ], - "description": "Creates a general shield for the site.", - "homepage": "https://www.drupal.org/project/shield", - "support": { - "source": "https://git.drupalcode.org/project/shield" - } - }, { "name": "drupal/similarterms", - "version": "1.9.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/similarterms.git", - "reference": "8.x-1.9" + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/similarterms-8.x-1.9.zip", - "reference": "8.x-1.9", - "shasum": "73aab93a7de4ed6a9fc2f18181b2eeee34324b6d" + "url": "https://ftp.drupal.org/files/projects/similarterms-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "46f2c36340e3bb2c40a250ff3a3de29947cdd609" }, "require": { - "drupal/core": "^8 || ^9 || ^10 || ^11" + "drupal/core": "*" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.9", - "datestamp": "1722872728", + "version": "8.x-1.3", + "datestamp": "1469824139", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } + }, + "patches_applied": { + "PHP fatal error, SimilarTermsArgument::query() must be compatible with NumericArgument": "https://www.drupal.org/files/issues/query_4.patch" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -15765,10 +7444,6 @@ "name": "rmiddle", "homepage": "https://www.drupal.org/user/192183" }, - { - "name": "shelane", - "homepage": "https://www.drupal.org/user/2674989" - }, { "name": "takim", "homepage": "https://www.drupal.org/user/252386" @@ -15781,37 +7456,33 @@ } }, { - "name": "drupal/simple_sitemap", - "version": "4.2.2", + "name": "drupal/skins", + "version": "1.0.0-alpha4", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/simple_sitemap.git", - "reference": "4.2.2" + "url": "https://git.drupalcode.org/project/skins.git", + "reference": "8.x-1.0-alpha4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/simple_sitemap-4.2.2.zip", - "reference": "4.2.2", - "shasum": "1f9c9197d37450fb347a4fa3f10191f5f4b5ef13" + "url": "https://ftp.drupal.org/files/projects/skins-8.x-1.0-alpha4.zip", + "reference": "8.x-1.0-alpha4", + "shasum": "877bb89f55f514b7c8d8dd535ce9576e5faa5eab" }, "require": { - "drupal/core": "^10.2 || ^11", - "ext-xmlwriter": "*" - }, - "conflict": { - "drush/drush": "<12.5.1" - }, - "require-dev": { - "drupal/paragraphs": "^1.18" + "drupal/core": "~8.0" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "4.2.2", - "datestamp": "1750876597", + "version": "8.x-1.0-alpha4", + "datestamp": "1565305981", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Project has not opted into security advisory coverage!" } } }, @@ -15821,48 +7492,48 @@ ], "authors": [ { - "name": "Pawel Ginalski (gbyte)", - "homepage": "https://www.drupal.org/u/gbyte", - "email": "contact@gbyte.dev", - "role": "Maintainer" + "name": "Poieo", + "homepage": "https://www.drupal.org/user/303228" }, { - "name": "walkingdexter", - "homepage": "https://www.drupal.org/user/3251330" + "name": "nedjo", + "homepage": "https://www.drupal.org/user/4481" } ], - "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", + "description": "Enable themes to provide a set of skins with distinct stylesheets and templates.", + "homepage": "https://www.drupal.org/project/skins", "support": { - "source": "https://cgit.drupalcode.org/simple_sitemap", - "issues": "https://drupal.org/project/issues/simple_sitemap" + "source": "https://git.drupalcode.org/project/skins" } }, { - "name": "drupal/skins", - "version": "2.0.0-alpha1", + "name": "drupal/social_media_links", + "version": "2.6.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/skins.git", - "reference": "2.0.0-alpha1" + "url": "https://git.drupalcode.org/project/social_media_links.git", + "reference": "8.x-2.6" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/skins-2.0.0-alpha1.zip", - "reference": "2.0.0-alpha1", - "shasum": "192b0ba615b866f0d36feebfc99d9a3ff58f86c0" + "url": "https://ftp.drupal.org/files/projects/social_media_links-8.x-2.6.zip", + "reference": "8.x-2.6", + "shasum": "53462cb307b104552ae5370b917e55ca50fba526" }, "require": { - "drupal/core": "^9.3 || ^10" + "drupal/core": "~8.0" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-2.x": "2.x-dev" + }, "drupal": { - "version": "2.0.0-alpha1", - "datestamp": "1687484216", + "version": "8.x-2.6", + "datestamp": "1510489384", "security-coverage": { - "status": "not-covered", - "message": "Alpha releases are not covered by Drupal security advisories." + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, @@ -15872,357 +7543,8 @@ ], "authors": [ { - "name": "drutopia", - "homepage": "https://www.drupal.org/user/3763727" - }, - { - "name": "lelkneralfaro", - "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": "Poieo", - "homepage": "https://www.drupal.org/user/303228" - } - ], - "description": "Enable themes or modules to provide a set of skins with distinct stylesheets and templates.", - "homepage": "http://drupal.org/project/skins", - "keywords": [ - "Drupal" - ], - "support": { - "source": "http://cgit.drupalcode.org/skins", - "issues": "http://drupal.org/project/issues/skins" - } - }, - { - "name": "drupal/smart_date", - "version": "4.2.4", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/smart_date.git", - "reference": "4.2.4" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/smart_date-4.2.4.zip", - "reference": "4.2.4", - "shasum": "87638e15bd1878f402cdb9cd40154d481a849881" - }, - "require": { - "drupal/core": "^9 || ^10 || ^11", - "php": ">=8.1", - "simshaun/recurr": "^5" - }, - "require-dev": { - "drush/drush": "*" - }, - "suggest": { - "drupal/multiple_fields_remove_button": "Provides a button for editors to remove unwanted rows." - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "4.2.4", - "datestamp": "1751143243", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - }, - "drush": { - "services": { - "drush.services.yml": "^9" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "mandclu", - "homepage": "https://www.drupal.org/user/52136" - }, - { - "name": "stefan.korn", - "homepage": "https://www.drupal.org/user/1942204" - } - ], - "description": "Adds app-like date and recurring date functionality.", - "homepage": "https://www.drupal.org/project/smart_date", - "keywords": [ - "Drupal" - ], - "support": { - "source": "https://git.drupalcode.org/project/smart_date", - "issues": "https://www.drupal.org/project/issues/smart_date", - "documentation": "https://www.drupal.org/docs/contributed-modules/smart-date" - } - }, - { - "name": "drupal/sms", - "version": "2.3.0", - "require": { - "drupal/core": "^10.3 || ^11", - "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" - }, - "type": "metapackage", - "extra": { - "drupal": { - "version": "2.3.0", - "datestamp": "1733714927", - "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": "Aniebiet Udoh", - "homepage": "https://www.drupal.org/u/almaudoh", - "role": "Maintainer" - }, - { - "name": "Daniel Phin", - "homepage": "http://danielph.in", - "role": "Maintainer" - }, - { - "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", - "support": { - "source": "https://git.drupalcode.org/project/smsframework", - "issues": "https://www.drupal.org/project/issues/smsframework" - } - }, - { - "name": "drupal/smsframework", - "version": "2.3.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/smsframework.git", - "reference": "2.3.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/smsframework-2.3.0.zip", - "reference": "2.3.0", - "shasum": "37e24980f7478eeef38b7a811fba7175606df235" - }, - "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" - }, - "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" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.3.0", - "datestamp": "1733714927", - "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": "Aniebiet Udoh", - "homepage": "https://www.drupal.org/u/almaudoh", - "role": "Maintainer" - }, - { - "name": "Daniel Phin", - "homepage": "http://danielph.in", - "role": "Maintainer" - }, - { - "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", - "support": { - "source": "https://git.drupalcode.org/project/smsframework", - "issues": "https://www.drupal.org/project/issues/smsframework" - } - }, - { - "name": "drupal/social_api", - "version": "4.0.2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/social_api.git", - "reference": "4.0.2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/social_api-4.0.2.zip", - "reference": "4.0.2", - "shasum": "8da084f0262080b2dfbbaa0ffb72cc386c6221dc" - }, - "require": { - "drupal/core": "^9.5 || ^10 || ^11", - "ext-openssl": "*", - "league/oauth2-client": "^2.0" - }, - "require-dev": { - "drupal/coder": "^8.3", - "phpcompatibility/php-compatibility": "^9.3" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "4.0.2", - "datestamp": "1725453406", - "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": "Getulio Sánchez (gvso)", - "homepage": "https://www.drupal.org/u/gvso", - "role": "Maintainer" - }, - { - "name": "Himansh Dixit (himanshu-dixit)", - "homepage": "https://www.drupal.org/user/3510098", - "email": "hudixt@gmail.com" - }, - { - "name": "Chrsitopher C. Wells (wells)", - "homepage": "https://www.drupal.org/user/550110", - "email": "drupal.org@chris-wells.net" - }, - { - "name": "gvso", - "homepage": "https://www.drupal.org/user/3101285" - }, - { - "name": "himanshu-dixit", - "homepage": "https://www.drupal.org/user/3513954" - }, - { - "name": "wells", - "homepage": "https://www.drupal.org/user/2452278" - } - ], - "description": "Harmonizes social networking services in Drupal", - "homepage": "https://www.drupal.org/project/social_api", - "keywords": [ - "Drupal" - ], - "support": { - "source": "https://git.drupalcode.org/project/social_api", - "issues": "https://www.drupal.org/project/issues/social_api" - } - }, - { - "name": "drupal/social_media_links", - "version": "2.10.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/social_media_links.git", - "reference": "8.x-2.10" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/social_media_links-8.x-2.10.zip", - "reference": "8.x-2.10", - "shasum": "dd329d44f88112d2fe83f54331502738c5f2810b" - }, - "require": { - "drupal/core": "^9.5 || ^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-2.10", - "datestamp": "1724736719", - "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": "Neslee Canil Pinto", - "homepage": "https://www.drupal.org/u/neslee-canil-pinto", - "role": "Maintainer" - }, - { - "name": "Christian Beier", - "homepage": "https://www.drupal.org/u/cbeier", - "role": "Maintainer" - }, - { - "name": "neslee canil pinto", - "homepage": "https://www.drupal.org/user/3580850" + "name": "cbeier", + "homepage": "https://www.drupal.org/user/1500710" } ], "description": "The module provides a block that display links (icons) to your profiles on various social networking sites.", @@ -16232,408 +7554,31 @@ "issues": "https://www.drupal.org/project/issues/social_media_links" } }, - { - "name": "drupal/social_post", - "version": "3.0.2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/social_post.git", - "reference": "3.0.2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/social_post-3.0.2.zip", - "reference": "3.0.2", - "shasum": "616ce8d6c3f507b9ecf83434ccbd150e795cde77" - }, - "require": { - "drupal/core": "^9.4 || ^10 || ^11", - "drupal/social_api": "^4", - "php": ">=8.1" - }, - "require-dev": { - "drupal/coder": "^8.3", - "phpcompatibility/php-compatibility": "10.x-dev" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "3.0.2", - "datestamp": "1725763360", - "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": "Getulio Valentin Sánchez (gvso)", - "homepage": "https://www.drupal.org/user/550110", - "email": "valentin2507@gmail.com" - }, - { - "name": "Himansh Dixit (himanshu-dixit)", - "homepage": "https://www.drupal.org/user/3101285", - "email": "hudixt@gmail.com" - }, - { - "name": "Chrsitopher C. Wells (wells)", - "homepage": "https://www.drupal.org/user/2452278", - "email": "drupal.org@chris-wells.net" - } - ], - "description": "Social Post", - "homepage": "https://www.drupal.org/project/social_post", - "keywords": [ - "Drupal" - ], - "support": { - "source": "https://git.drupalcode.org/project/social_post", - "issues": "https://www.drupal.org/project/issues/social_post" - } - }, - { - "name": "drupal/social_post_facebook", - "version": "dev-3.0.x", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/social_post_facebook.git", - "reference": "af3fce0c31533b5f074be3830ade383364ffec04" - }, - "require": { - "agaric/php-facebook": "dev-main", - "drupal/core": "^8 || ^9 || ^10 || ^11", - "drupal/social_post": "^3" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-3.0.x": "3.0.x-dev" - }, - "drupal": { - "version": "3.0.x-dev", - "datestamp": "1752867749", - "security-coverage": { - "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "name": "Getulio Valentin Sánchez (gvso)", - "homepage": "https://www.drupal.org/user/440810", - "email": "valentin2507@gmail.com" - }, - { - "name": "Himanshu Dixit (himanshu-dixit)", - "homepage": "https://www.drupal.org/user/992990", - "email": "hudixt@gmail.com" - }, - { - "name": "himanshu-dixit", - "homepage": "https://www.drupal.org/user/3513954" - }, - { - "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": "Social Post Facebook for Facebook", - "homepage": "https://www.drupal.org/project/social_post_facebook", - "keywords": [ - "Drupal" - ], - "support": { - "source": "http://cgit.drupalcode.org/social_post_facebook", - "issues": "https://www.drupal.org/project/issues/social_post_facebook" - } - }, - { - "name": "drupal/social_post_twitter", - "version": "dev-3.x", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/social_post_twitter.git", - "reference": "13a10bf5c0cc6debe196b67163f2825e6ef3392e" - }, - "require": { - "abraham/twitteroauth": ">=2", - "drupal/core": "^8.8 || ^9.0 || ^10", - "drupal/social_post": "^3.0" - }, - "require-dev": { - "drupal/coder": "^8.3", - "drupal/rules": "3.x-dev", - "phpcompatibility/php-compatibility": "10.x-dev" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-3.x": "3.x-dev" - }, - "drupal": { - "version": "3.0.0+1-dev", - "datestamp": "1720959231", - "security-coverage": { - "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "Getulio Valentin Sánchez (gvso)", - "homepage": "https://www.drupal.org/user/3101285", - "email": "valentin2507@gmail.com" - }, - { - "name": "Chrsitopher C. Wells (wells)", - "homepage": "https://www.drupal.org/user/2452278", - "email": "drupal.org@chris-wells.net" - } - ], - "description": "Social Post integration for Twitter", - "homepage": "https://www.drupal.org/project/social_post_twitter", - "keywords": [ - "Drupal" - ], - "support": { - "source": "https://git.drupalcode.org/project/social_post_twitter", - "issues": "https://www.drupal.org/project/issues/social_post_twitter" - } - }, - { - "name": "drupal/stable", - "version": "2.1.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/stable.git", - "reference": "2.1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/stable-2.1.0.zip", - "reference": "2.1.0", - "shasum": "fb2b010190e492e976e1db9692a8a46d5b7d15bb" - }, - "require": { - "drupal/core": "^10.3 || ^11" - }, - "type": "drupal-theme", - "extra": { - "drupal": { - "version": "2.1.0", - "datestamp": "1721202956", - "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": "Rajeshreeputra", - "homepage": "https://www.drupal.org/user/3418561" - }, - { - "name": "star-szr", - "homepage": "https://www.drupal.org/user/1167326" - } - ], - "description": "A base theme using Drupal core markup and CSS.", - "homepage": "https://www.drupal.org/project/stable", - "support": { - "source": "https://git.drupalcode.org/project/stable" - } - }, - { - "name": "drupal/stringoverrides", - "version": "1.8.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/stringoverrides.git", - "reference": "8.x-1.8" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/stringoverrides-8.x-1.8.zip", - "reference": "8.x-1.8", - "shasum": "5c621d593fc9d74079d76fb7970c7c648b98d0e7" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.8", - "datestamp": "1671212608", - "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": "Audrius Vaitonis", - "homepage": "https://www.drupal.org/user/454662" - }, - { - "name": "eaton", - "homepage": "https://www.drupal.org/user/16496" - }, - { - "name": "hubdrop", - "homepage": "https://www.drupal.org/user/2750597" - }, - { - "name": "manuel.adan", - "homepage": "https://www.drupal.org/user/516420" - }, - { - "name": "nitesh sethia", - "homepage": "https://www.drupal.org/user/2474982" - }, - { - "name": "pwolanin", - "homepage": "https://www.drupal.org/user/49851" - }, - { - "name": "quicksketch", - "homepage": "https://www.drupal.org/user/35821" - }, - { - "name": "robloach", - "homepage": "https://www.drupal.org/user/61114" - }, - { - "name": "webchick", - "homepage": "https://www.drupal.org/user/24967" - } - ], - "description": "Provides a quick and easy way of replacing text.", - "homepage": "https://www.drupal.org/project/stringoverrides", - "support": { - "source": "https://git.drupalcode.org/project/stringoverrides" - } - }, - { - "name": "drupal/subpathauto", - "version": "1.4.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/subpathauto.git", - "reference": "8.x-1.4" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/subpathauto-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "fa9a737da79d396ee8019c944e0239865762ce48" - }, - "require": { - "drupal/core": "^8.8 || ^9 || ^10 || ^11" - }, - "require-dev": { - "drupal/redirect": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.4", - "datestamp": "1729470928", - "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": "dave reid", - "homepage": "https://www.drupal.org/user/53892" - }, - { - "name": "lauriii", - "homepage": "https://www.drupal.org/user/1078742" - }, - { - "name": "nickdickinsonwilde", - "homepage": "https://www.drupal.org/user/3094661" - } - ], - "description": "Provides support for extending sub-paths of URL aliases.", - "homepage": "https://www.drupal.org/project/subpathauto", - "support": { - "source": "https://cgit.drupalcode.org/subpathauto", - "issues": "https://www.drupal.org/project/issues/subpathauto" - } - }, { "name": "drupal/subprofiles", - "version": "2.0.0-alpha2", + "version": "1.0.0-alpha2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/subprofiles.git", - "reference": "2.0.0-alpha2" + "reference": "8.x-1.0-alpha2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/subprofiles-2.0.0-alpha2.zip", - "reference": "2.0.0-alpha2", - "shasum": "2f5e16cf4a918d7e9873abbaa99a26788c8a63b3" + "url": "https://ftp.drupal.org/files/projects/subprofiles-8.x-1.0-alpha2.zip", + "reference": "8.x-1.0-alpha2", + "shasum": "ea694c467ea7834056d3f4961bd142f41d0acc33" }, "require": { - "drupal/core": "^9.3 || ^10" + "drupal/core": "~8.0" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "2.0.0-alpha2", - "datestamp": "1697325686", + "version": "8.x-1.0-alpha2", + "datestamp": "1507856720", "security-coverage": { "status": "not-covered", "message": "Alpha releases are not covered by Drupal security advisories." @@ -16642,289 +7587,53 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { - "name": "drutopia", - "homepage": "https://www.drupal.org/user/3763727" - }, - { - "name": "lelkneralfaro", - "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": "nedjo", + "homepage": "https://www.drupal.org/user/4481" }, { "name": "robertDouglass", "homepage": "https://www.drupal.org/user/5449" - }, - { - "name": "wolcen", - "homepage": "https://www.drupal.org/user/3099655" } ], "description": "Provide multiple variations of a single installation profile.", "homepage": "https://www.drupal.org/project/subprofiles", - "keywords": [ - "Drupal" - ], "support": { - "source": "https://git.drupalcode.org/project/subprofiles", - "issues": "http://drupal.org/project/issues/subprofiles" - } - }, - { - "name": "drupal/taxonomy_import", - "version": "2.0.12", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/taxonomy_import.git", - "reference": "2.0.12" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/taxonomy_import-2.0.12.zip", - "reference": "2.0.12", - "shasum": "7ee3acb762e5f30208423c51035db1b889fe5785" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.12", - "datestamp": "1680814752", - "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": "aswathyajish", - "homepage": "https://www.drupal.org/user/2584696" - }, - { - "name": "colan", - "homepage": "https://www.drupal.org/user/58704" - }, - { - "name": "neethups", - "homepage": "https://www.drupal.org/user/3516137" - }, - { - "name": "sajiniantony", - "homepage": "https://www.drupal.org/user/2603884" - }, - { - "name": "tolstoydotcom", - "homepage": "https://www.drupal.org/user/103055" - }, - { - "name": "vuil", - "homepage": "https://www.drupal.org/user/3568458" - } - ], - "description": "A module to import taxonomy using CSV or XML file to a user defined vocabulary.", - "homepage": "https://www.drupal.org/project/taxonomy_import", - "keywords": [ - "Drupal", - "taxonomy_import" - ], - "support": { - "source": "http://cgit.drupalcode.org/taxonomy_import", - "issues": "https://www.drupal.org/project/issues/taxonomy_import", - "documentation": "https://www.drupal.org/project/taxonomy_import" - } - }, - { - "name": "drupal/taxonomy_manager", - "version": "2.0.22", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/taxonomy_manager.git", - "reference": "2.0.22" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/taxonomy_manager-2.0.22.zip", - "reference": "2.0.22", - "shasum": "45b69b6ab71d7072092505d315e2b9b7a9ed168e" - }, - "require": { - "drupal/core": "^10.3 || ^11.0", - "drupal/jquery_ui": "^1.7" - }, - "require-dev": { - "drupal/term_merge": "^2.0", - "drupal/term_reference_change": "^2.0" - }, - "suggest": { - "fancytree/fancytree": "The fancytree library is required to use the drupal/taxonomy_manager module." - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.22", - "datestamp": "1751032949", - "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": "alesbencina", - "homepage": "https://www.drupal.org/user/3558110" - }, - { - "name": "andriy khomych", - "homepage": "https://www.drupal.org/user/3287133" - }, - { - "name": "aurelianzaha", - "homepage": "https://www.drupal.org/user/3575026" - }, - { - "name": "dragan_bp", - "homepage": "https://www.drupal.org/user/3578037" - }, - { - "name": "JacobSanford", - "homepage": "https://www.drupal.org/user/806538" - }, - { - "name": "joaogarin", - "homepage": "https://www.drupal.org/user/612814" - }, - { - "name": "kalinchernev", - "homepage": "https://www.drupal.org/user/231185" - }, - { - "name": "klausi", - "homepage": "https://www.drupal.org/user/262198" - }, - { - "name": "mh86", - "homepage": "https://www.drupal.org/user/59747" - }, - { - "name": "vladimiraus", - "homepage": "https://www.drupal.org/user/673120" - } - ], - "description": "Tool for administrating taxonomy terms", - "homepage": "https://www.drupal.org/project/taxonomy_manager", - "support": { - "source": "https://drupal.org/project/taxonomy_manager", - "issues": "https://drupal.org/project/issues/taxonomy_manager" - } - }, - { - "name": "drupal/textarea_widget_for_text", - "version": "1.4.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/textarea_widget_for_text.git", - "reference": "8.x-1.4" - }, - "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" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.4", - "datestamp": "1745957094", - "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": "gnuget", - "homepage": "https://www.drupal.org/user/992990" - }, - { - "name": "junaidpv", - "homepage": "https://www.drupal.org/user/255728" - }, - { - "name": "mlncn", - "homepage": "https://www.drupal.org/user/64383" - } - ], - "description": "Allows short (non-long) text fields to use the textarea widget on content entry forms.", - "homepage": "https://www.drupal.org/project/textarea_widget_for_text", - "support": { - "source": "https://git.drupalcode.org/project/textarea_widget_for_text" + "source": "https://git.drupalcode.org/project/subprofiles" } }, { "name": "drupal/token", - "version": "1.15.0", + "version": "1.5.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/token.git", - "reference": "8.x-1.15" + "reference": "8.x-1.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/token-8.x-1.15.zip", - "reference": "8.x-1.15", - "shasum": "5916fbccc86458a5f51e71f832ac70ff4c84ebdf" + "url": "https://ftp.drupal.org/files/projects/token-8.x-1.5.zip", + "reference": "8.x-1.5", + "shasum": "6382a7e1aabbd8246f1117a26bf4916d285b401d" }, "require": { - "drupal/core": "^9.2 || ^10 || ^11" - }, - "require-dev": { - "drupal/book": "*" + "drupal/core": "^8.5" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.15", - "datestamp": "1722206211", + "version": "8.x-1.5", + "datestamp": "1537557481", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } - }, - "drush": { - "services": { - "drush.services.yml": ">=9" - } } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -16933,11 +7642,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" }, { @@ -16957,79 +7666,43 @@ "homepage": "https://www.drupal.org/user/4420" } ], - "description": "Provides a user interface for the Token API, some missing core tokens.", + "description": "Provides a user interface for the Token API and some missing core tokens.", "homepage": "https://www.drupal.org/project/token", "support": { "source": "https://git.drupalcode.org/project/token" } }, { - "name": "drupal/tomselect", - "version": "dev-1.0.x", + "name": "drupal/video_embed_field", + "version": "2.2.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/tomselect.git", - "reference": "502a5f6b3ec4bacbf8f749de11456d868c12aee8" + "url": "https://git.drupalcode.org/project/video_embed_field.git", + "reference": "8.x-2.2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.2.zip", + "reference": "8.x-2.2", + "shasum": "1e76eeefb27f4166d3d119e8c27469bbf12c0f06" }, "require": { - "drupal/core": "^8.8 || ^9 || ^10 || ^11" + "drupal/core": "^8.7.0" + }, + "require-dev": { + "drupal/colorbox": "*", + "drupal/media_entity": "*", + "drupal/media_entity_embeddable_video": "*", + "drupal/video_embed_media": "*" }, "type": "drupal-module", "extra": { "branch-alias": { - "dev-1.0.x": "1.0.x-dev" + "dev-2.x": "2.x-dev" }, "drupal": { - "version": "1.0.0-alpha1+2-dev", - "datestamp": "1729730530", - "security-coverage": { - "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "elkaro", - "homepage": "https://www.drupal.org/user/3577260" - }, - { - "name": "mlncn", - "homepage": "https://www.drupal.org/user/64383" - } - ], - "description": "Development helper for including Tom Select JavaScript library.", - "homepage": "https://www.drupal.org/project/tomselect", - "support": { - "source": "https://git.drupalcode.org/project/tomselect" - } - }, - { - "name": "drupal/trim", - "version": "2.0.1", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/trim.git", - "reference": "2.0.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/trim-2.0.1.zip", - "reference": "2.0.1", - "shasum": "18bf8975e915b845ec470652510ba1e03230d1e0" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.1", - "datestamp": "1730171770", + "version": "8.x-2.2", + "datestamp": "1564103585", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -17037,539 +7710,21 @@ } }, "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "lelkneralfaro", - "homepage": "https://www.drupal.org/user/3577260" - }, - { - "name": "mlncn", - "homepage": "https://www.drupal.org/user/64383" - }, - { - "name": "Stefan Freudenberg", - "homepage": "https://www.drupal.org/user/386087" - } - ], - "description": "Strips whitespace from all textfield input prior to validation and saving.", - "homepage": "https://www.drupal.org/project/trim", - "support": { - "source": "https://git.drupalcode.org/project/trim" - } - }, - { - "name": "drupal/twig_tweak", - "version": "3.4.1", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/twig_tweak.git", - "reference": "3.4.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/twig_tweak-3.4.1.zip", - "reference": "3.4.1", - "shasum": "ceaa5ea8f357ce8827c728f22871265f0f7cd74f" - }, - "require": { - "drupal/core": "^10.3 || ^11.0", - "ext-json": "*", - "php": ">=8.1", - "twig/twig": "^3.10.3" - }, - "suggest": { - "symfony/var-dumper": "Better dump() function for debugging Twig variables" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "3.4.1", - "datestamp": "1748530577", - "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", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "chi", - "homepage": "https://www.drupal.org/user/556138" - } - ], - "description": "A Twig extension with some useful functions and filters for Drupal development.", - "homepage": "https://www.drupal.org/project/twig_tweak", - "keywords": [ - "Drupal", - "Twig" - ], - "support": { - "source": "https://git.drupalcode.org/project/twig_tweak", - "issues": "https://www.drupal.org/project/issues/twig_tweak" - } - }, - { - "name": "drupal/twigsuggest", - "version": "2.0.0-rc4", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/twigsuggest.git", - "reference": "2.0.0-rc4" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/twigsuggest-2.0.0-rc4.zip", - "reference": "2.0.0-rc4", - "shasum": "e629ff389a2d5380c9e43bd2fc770fe443d7711d" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.0-rc4", - "datestamp": "1734604997", - "security-coverage": { - "status": "not-covered", - "message": "RC releases are not covered by Drupal security advisories." - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", "license": [ "GPL-2.0+" ], "authors": [ { - "name": "beunerd", - "homepage": "https://www.drupal.org/user/1312798" - }, - { - "name": "leymannx", - "homepage": "https://www.drupal.org/user/2482808" - }, - { - "name": "megakeegman", - "homepage": "https://www.drupal.org/user/3620027" - }, - { - "name": "mlncn", - "homepage": "https://www.drupal.org/user/64383" - } - ], - "description": "Provides template suggestions for things Drupal doesn't.", - "homepage": "https://www.drupal.org/project/twigsuggest", - "keywords": [ - "drupal", - "styling", - "template suggestions", - "templates", - "theming" - ], - "support": { - "source": "https://git.drupalcode.org/project/twigsuggest.git", - "issues": "https://www.drupal.org/project/issues/twigsuggest" - } - }, - { - "name": "drupal/ui_patterns", - "version": "1.13.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/ui_patterns.git", - "reference": "8.x-1.13" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/ui_patterns-8.x-1.13.zip", - "reference": "8.x-1.13", - "shasum": "8fc716810b51fb0b050407bb04649ba1549f183a" - }, - "require": { - "drupal/core": "^9 || ^10 || ^11" - }, - "require-dev": { - "drupal/ds": "^3.18", - "drupal/field_group": "^4" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.13", - "datestamp": "1750172163", - "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": "ademarco", - "homepage": "https://www.drupal.org/user/186696" - }, - { - "name": "bircher", - "homepage": "https://www.drupal.org/user/1344166" - }, - { - "name": "christian.wiedemann", - "homepage": "https://www.drupal.org/user/861002" - }, - { - "name": "duaelfr", - "homepage": "https://www.drupal.org/user/931394" - }, - { - "name": "g4mbini", - "homepage": "https://www.drupal.org/user/2533498" - }, - { - "name": "grimreaper", - "homepage": "https://www.drupal.org/user/2388214" - }, - { - "name": "just_like_good_vibes", - "homepage": "https://www.drupal.org/user/792018" - }, - { - "name": "pdureau", - "homepage": "https://www.drupal.org/user/1903334" - }, - { - "name": "pescetti", - "homepage": "https://www.drupal.org/user/436244" - } - ], - "description": "UI Patterns.", - "homepage": "https://www.drupal.org/project/ui_patterns", - "support": { - "source": "https://git.drupalcode.org/project/ui_patterns" - } - }, - { - "name": "drupal/ui_patterns_ds", - "version": "1.13.0", - "require": { - "drupal/core": "^9 || ^10 || ^11", - "drupal/ds": "*", - "drupal/ui_patterns": "*" - }, - "type": "metapackage", - "extra": { - "drupal": { - "version": "8.x-1.13", - "datestamp": "1750172163", - "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": "ademarco", - "homepage": "https://www.drupal.org/user/186696" - }, - { - "name": "bircher", - "homepage": "https://www.drupal.org/user/1344166" - }, - { - "name": "christian.wiedemann", - "homepage": "https://www.drupal.org/user/861002" - }, - { - "name": "duaelfr", - "homepage": "https://www.drupal.org/user/931394" - }, - { - "name": "g4mbini", - "homepage": "https://www.drupal.org/user/2533498" - }, - { - "name": "grimreaper", - "homepage": "https://www.drupal.org/user/2388214" - }, - { - "name": "just_like_good_vibes", - "homepage": "https://www.drupal.org/user/792018" - }, - { - "name": "pdureau", - "homepage": "https://www.drupal.org/user/1903334" - }, - { - "name": "pescetti", - "homepage": "https://www.drupal.org/user/436244" - } - ], - "description": "Use patterns as Display Suite field templates. It also provides Display Suite pattern sources.", - "homepage": "https://www.drupal.org/project/ui_patterns", - "support": { - "source": "https://git.drupalcode.org/project/ui_patterns" - } - }, - { - "name": "drupal/ui_patterns_layouts", - "version": "2.0.5", - "require": { - "drupal/core": "^10.3 || ^11", - "drupal/ui_patterns": "*" - }, - "type": "metapackage", - "extra": { - "drupal": { - "version": "2.0.5", - "datestamp": "1750939746", - "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": "ademarco", - "homepage": "https://www.drupal.org/user/186696" - }, - { - "name": "bircher", - "homepage": "https://www.drupal.org/user/1344166" - }, - { - "name": "christian.wiedemann", - "homepage": "https://www.drupal.org/user/861002" - }, - { - "name": "duaelfr", - "homepage": "https://www.drupal.org/user/931394" - }, - { - "name": "g4mbini", - "homepage": "https://www.drupal.org/user/2533498" - }, - { - "name": "grimreaper", - "homepage": "https://www.drupal.org/user/2388214" - }, - { - "name": "just_like_good_vibes", - "homepage": "https://www.drupal.org/user/792018" - }, - { - "name": "pdureau", - "homepage": "https://www.drupal.org/user/1903334" - }, - { - "name": "pescetti", - "homepage": "https://www.drupal.org/user/436244" - } - ], - "description": "Use UI components as layouts plugins.", - "homepage": "https://www.drupal.org/project/ui_patterns", - "support": { - "source": "https://git.drupalcode.org/project/ui_patterns" - } - }, - { - "name": "drupal/ui_patterns_library", - "version": "2.0.5", - "require": { - "drupal/core": "^10.3 || ^11", - "drupal/ui_patterns": "*" - }, - "type": "metapackage", - "extra": { - "drupal": { - "version": "2.0.5", - "datestamp": "1750939746", - "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": "ademarco", - "homepage": "https://www.drupal.org/user/186696" - }, - { - "name": "bircher", - "homepage": "https://www.drupal.org/user/1344166" - }, - { - "name": "christian.wiedemann", - "homepage": "https://www.drupal.org/user/861002" - }, - { - "name": "duaelfr", - "homepage": "https://www.drupal.org/user/931394" - }, - { - "name": "g4mbini", - "homepage": "https://www.drupal.org/user/2533498" - }, - { - "name": "grimreaper", - "homepage": "https://www.drupal.org/user/2388214" - }, - { - "name": "just_like_good_vibes", - "homepage": "https://www.drupal.org/user/792018" - }, - { - "name": "pdureau", - "homepage": "https://www.drupal.org/user/1903334" - }, - { - "name": "pescetti", - "homepage": "https://www.drupal.org/user/436244" - } - ], - "description": "Browse UI components in library pages.", - "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", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/video_embed_field.git", - "reference": "8.x-2.5" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.5.zip", - "reference": "8.x-2.5", - "shasum": "997ed67b6873e822fe628f87f65bd6da67e7350c" - }, - "require": { - "drupal/core": "^9.2 || ^10" - }, - "require-dev": { - "drupal/ckeditor": "^1", - "drupal/colorbox": "^2", - "drupal/video_embed_media": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-2.5", - "datestamp": "1671413311", - "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": "abhinesh", - "homepage": "https://www.drupal.org/user/3645979" + "name": "Sam152", + "homepage": "https://www.drupal.org/user/1485048" }, { "name": "jec006", "homepage": "https://www.drupal.org/user/855980" }, - { - "name": "mably", - "homepage": "https://www.drupal.org/user/3375160" - }, { "name": "plopesc", "homepage": "https://www.drupal.org/user/282415" - }, - { - "name": "sam152", - "homepage": "https://www.drupal.org/user/1485048" } ], "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.", @@ -17578,778 +7733,58 @@ "source": "https://git.drupalcode.org/project/video_embed_field" } }, - { - "name": "drupal/view_password", - "version": "6.0.5", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/view_password.git", - "reference": "6.0.5" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/view_password-6.0.5.zip", - "reference": "6.0.5", - "shasum": "a1f160e5ea7cbac4aa592692eba3bfd2b9527ee7" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "6.0.5", - "datestamp": "1723228512", - "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": "ahana92", - "homepage": "https://www.drupal.org/user/3494063" - }, - { - "name": "anacolautti", - "homepage": "https://www.drupal.org/user/2925043" - }, - { - "name": "cesarmiquel", - "homepage": "https://www.drupal.org/user/115500" - }, - { - "name": "lmingarro", - "homepage": "https://www.drupal.org/user/262938" - } - ], - "description": "Allows the users to see the contents of the password fields on selected forms before submission.", - "homepage": "https://www.drupal.org/project/view_password", - "support": { - "source": "https://git.drupalcode.org/project/view_password" - } - }, - { - "name": "drupal/view_unpublished", - "version": "1.3.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/view_unpublished.git", - "reference": "8.x-1.3" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/view_unpublished-8.x-1.3.zip", - "reference": "8.x-1.3", - "shasum": "7dd4411c53866585ac6319d147ab11d214d55877" - }, - "require": { - "drupal/core": "^9.4 || ^10 || ^11" - }, - "require-dev": { - "drupal/coder": "^8.3.18", - "phpcompatibility/php-compatibility": "10.x-dev@dev" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.3", - "datestamp": "1724503131", - "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": "Agnes Chisholm", - "homepage": "https://www.drupal.org/user/173461", - "email": "amaria@chisholmtech.com" - }, - { - "name": "fathima.asmat", - "homepage": "https://www.drupal.org/user/3622664" - }, - { - "name": "tobiasb", - "homepage": "https://www.drupal.org/user/183956" - } - ], - "description": "Select which roles should be able to see unpublished nodes.", - "homepage": "https://www.drupal.org/project/view_unpublished", - "support": { - "source": "https://git.drupalcode.org/project/view_unpublished" - } - }, - { - "name": "drupal/views_plain", - "version": "1.0.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/views_plain.git", - "reference": "8.x-1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/views_plain-8.x-1.0.zip", - "reference": "8.x-1.0", - "shasum": "5eac9098aea2daf2e174cc271c2689263041f401" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.0", - "datestamp": "1695650382", - "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": "colorfield", - "homepage": "https://www.drupal.org/user/2295486" - }, - { - "name": "mlncn", - "homepage": "https://www.drupal.org/user/64383" - }, - { - "name": "Raphael Larrinaga", - "homepage": "https://www.drupal.org/user/2873013" - }, - { - "name": "Rockabelly", - "homepage": "https://www.drupal.org/user/2649181" - } - ], - "description": "Views display style that removes all the wrapper markup.", - "homepage": "https://www.drupal.org/project/views_plain", - "keywords": [ - "Drupal" - ], - "support": { - "source": "http://cgit.drupalcode.org/views_plain", - "issues": "https://www.drupal.org/project/issues/views_plain" - } - }, - { - "name": "drupal/viewsreference", - "version": "dev-1.x", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/viewsreference.git", - "reference": "2ee107cd681a00f26ffe5382660d2298283ec978" - }, - "require": { - "drupal/core": "^9.3 || ^10", - "php": "^7.0|^8.0" - }, - "conflict": { - "drupal/viewsreferennce": "*" - }, - "require-dev": { - "composer/installers": "^1.2", - "drupal/coder": "^8.2", - "drupal/core-composer-scaffold": "*", - "webflo/drupal-core-require-dev": "~8.5" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, - "drupal": { - "version": "8.x-1.8+2-dev", - "datestamp": "1691455445", - "security-coverage": { - "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." - } - }, - "installer-paths": { - "../build/core": [ - "type:drupal-core" - ], - "../build/modules/contrib/{$name}": [ - "type:drupal-module" - ], - "../build/themes/contrib/{$name}": [ - "type:drupal-theme" - ] - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "name": "joekers", - "homepage": "https://www.drupal.org/user/2229066" - }, - { - "name": "NewZeal", - "homepage": "https://www.drupal.org/user/93571" - }, - { - "name": "scott_euser", - "homepage": "https://www.drupal.org/user/3267594" - }, - { - "name": "seanb", - "homepage": "https://www.drupal.org/user/545912" - } - ], - "description": "Views Reference", - "homepage": "http://drupal.org/project/viewsreference", - "keywords": [ - "Drupal" - ], - "support": { - "source": "http://cgit.drupalcode.org/viewsreference", - "issues": "http://drupal.org/project/issues/viewsreference" - } - }, - { - "name": "drupal/visitors", - "version": "2.31.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/visitors.git", - "reference": "8.x-2.31" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/visitors-8.x-2.31.zip", - "reference": "8.x-2.31", - "shasum": "90822da7925588b0e8bc3b7d61ddd5761c0804a8" - }, - "require": { - "drupal/charts": "^5", - "drupal/charts_chartjs": "*", - "drupal/core": "^10 || ^11", - "geoip2/geoip2": "~2.0", - "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", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - }, - "drush": { - "services": { - "drush.services.yml": ">=9" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "Steven Ayers (bluegeek9)", - "homepage": "https://www.drupal.org/u/bluegeek9", - "role": "Maintainer" - } - ], - "description": "Visitors is a native drupal web analytics software.", - "homepage": "https://drupal.org/project/visitors", - "support": { - "source": "https://git.drupalcode.org/project/visitors", - "issues": "https://www.drupal.org/project/issues/visitors?version=8.x", - "docs": "https://www.drupal.org/docs/8/modules/visitors", - "forum": "https://drupal.stackexchange.com/questions/tagged/visitors" - } - }, - { - "name": "drupal/webform", - "version": "6.2.9", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/webform.git", - "reference": "6.2.9" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/webform-6.2.9.zip", - "reference": "6.2.9", - "shasum": "650752c3cc6d0144c6f378b8d25d45c083e23600" - }, - "require": { - "drupal/core": "^10.2", - "php": ">=8.1" - }, - "require-dev": { - "drupal/address": "1.x-dev", - "drupal/bootstrap": "3.x-dev", - "drupal/captcha": "^1 || ^2", - "drupal/chosen": "3.0.x-dev", - "drupal/ckeditor": "1.0.x-dev", - "drupal/clientside_validation": "^3 || ^4", - "drupal/clientside_validation_jquery": "*", - "drupal/devel": "5.x-dev", - "drupal/entity": "1.x-dev", - "drupal/entity_print": "2.x-dev", - "drupal/group": "1.x-dev", - "drupal/hal": "1 - 2", - "drupal/jquery_ui": "1.x-dev", - "drupal/jquery_ui_button": "2.x-dev", - "drupal/jquery_ui_checkboxradio": "2.x-dev", - "drupal/jquery_ui_datepicker": "2.x-dev", - "drupal/mailsystem": "4.x-dev", - "drupal/metatag": "1.x-dev", - "drupal/paragraphs": "1.x-dev", - "drupal/select2": "1.x-dev", - "drupal/smtp": "1.x-dev", - "drupal/styleguide": "^1 || ^2", - "drupal/telephone_validation": "2.x-dev", - "drupal/token": "1.x-dev", - "drupal/variationcache": "1.x-dev", - "drupal/webform_access": "*", - "drupal/webform_attachment": "*", - "drupal/webform_clientside_validation": "*", - "drupal/webform_devel": "*", - "drupal/webform_entity_print": "*", - "drupal/webform_node": "*", - "drupal/webform_options_limit": "*", - "drupal/webform_scheduled_email": "*", - "drupal/webform_share": "*", - "drupal/webform_ui": "*" - }, - "suggest": { - "drupal/jquery_ui_buttons": "Provides jQuery UI Checkboxradio library. Required by the Webform jQueryUI Buttons module. The Webform jQueryUI Buttons module is deprecated because jQueryUI is no longer maintained.", - "drupal/jquery_ui_datepicker": "Provides jQuery UI Datepicker library. Required to support datepickers. The Webform jQueryUI Datepicker module is deprecated because jQueryUI is no longer maintained." - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "6.2.9", - "datestamp": "1733851063", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - }, - "drush": { - "services": { - "drush.services.yml": ">=9" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "Jacob Rockowitz (jrockowitz)", - "homepage": "https://www.drupal.org/u/jrockowitz", - "role": "Maintainer" - }, - { - "name": "Contributors", - "homepage": "https://www.drupal.org/node/7404/committers", - "role": "Contributor" - }, - { - "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" - } - ], - "description": "Enables the creation of webforms and questionnaires.", - "homepage": "https://drupal.org/project/webform", - "support": { - "source": "https://git.drupalcode.org/project/webform", - "issues": "https://www.drupal.org/project/issues/webform?version=8.x", - "docs": "https://www.drupal.org/docs/8/modules/webform", - "forum": "https://drupal.stackexchange.com/questions/tagged/webform" - } - }, - { - "name": "drupal/weight", - "version": "3.6.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/weight.git", - "reference": "8.x-3.6" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/weight-8.x-3.6.zip", - "reference": "8.x-3.6", - "shasum": "071c378a6f4887b15a9e68c1414c94735282e20c" - }, - "require": { - "drupal/core": "^9.5 || ^10.2 || ^11.0" - }, - "require-dev": { - "drupal/feeds": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-3.6", - "datestamp": "1729637541", - "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": "heddn", - "homepage": "https://www.drupal.org/user/1463982" - }, - { - "name": "kevinquillen", - "homepage": "https://www.drupal.org/user/317279" - }, - { - "name": "NancyDru", - "homepage": "https://www.drupal.org/user/101412" - }, - { - "name": "neslee canil pinto", - "homepage": "https://www.drupal.org/user/3580850" - }, - { - "name": "vladimiraus", - "homepage": "https://www.drupal.org/user/673120" - } - ], - "description": "Allows arbitrary ordering of entities.", - "homepage": "https://www.drupal.org/project/weight", - "keywords": [ - "Drupal" - ], - "support": { - "source": "http://cgit.drupalcode.org/weight", - "issues": "https://www.drupal.org/project/issues/weight" - } - }, - { - "name": "drupal/workflow_buttons", - "version": "dev-1.x", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/workflow_buttons.git", - "reference": "722e0651d9dc763b9582a9e33ef949ad74534ea6" - }, - "require": { - "drupal/core": "^9 || ^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, - "drupal": { - "version": "8.x-1.0-beta7+4-dev", - "datestamp": "1753464111", - "security-coverage": { - "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "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": "mlncn", - "homepage": "https://www.drupal.org/user/64383" - }, - { - "name": "ultrabob", - "homepage": "https://www.drupal.org/user/110463" - } - ], - "description": "Provide workflow buttons for content moderation instead of a select dropdown of states. Button labels are taken from the transition names.", - "homepage": "https://www.drupal.org/project/workflow_buttons", - "keywords": [ - "buttons", - "content", - "content moderation", - "drupal", - "editor", - "form", - "workflow" - ], - "support": { - "source": "https://git.drupalcode.org/project/workflow_buttons.git", - "issues": "https://www.drupal.org/project/issues/workflow_buttons" - } - }, - { - "name": "drupal/workflow_buttons_trash", - "version": "1.0.0-beta7", - "require": { - "drupal/core": "^9 || ^10 || ^11", - "drupal/workflow_buttons": "^1" - }, - "type": "metapackage", - "extra": { - "drupal": { - "version": "8.x-1.0-beta7", - "datestamp": "1746664585", - "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-or-later" - ], - "authors": [ - { - "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": "mlncn", - "homepage": "https://www.drupal.org/user/64383" - }, - { - "name": "ultrabob", - "homepage": "https://www.drupal.org/user/110463" - } - ], - "description": "Provides a trash (soft-delete) workflow which works well with (but does not require) Workflow buttons.", - "homepage": "https://www.drupal.org/project/workflow_buttons", - "support": { - "source": "https://git.drupalcode.org/project/workflow_buttons" - } - }, - { - "name": "drupal/wysiwyg_linebreaks", - "version": "dev-2.0.x", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/wysiwyg_linebreaks.git", - "reference": "e5b669ddcbc7115e862f08b38e4f379f1e8f7c60" - }, - "require": { - "drupal/core": "^9.3 || ^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-2.0.x": "2.0.x-dev" - }, - "drupal": { - "version": "2.0.0+4-dev", - "datestamp": "1724196081", - "security-coverage": { - "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "geerlingguy", - "homepage": "https://www.drupal.org/user/389011" - }, - { - "name": "mlncn", - "homepage": "https://www.drupal.org/user/64383" - } - ], - "description": "Allows you to use CKEditor WYSIWYG editors on legacy content that may not already have HTML formatting applied and to more easily edit WYSIWYG-edited content in plain text.", - "homepage": "https://www.drupal.org/project/wysiwyg_linebreaks", - "support": { - "source": "https://git.drupalcode.org/project/wysiwyg_linebreaks" - } - }, - { - "name": "drupal/yaml_content", - "version": "1.0.0-alpha9", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/yaml_content.git", - "reference": "8.x-1.0-alpha9" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/yaml_content-8.x-1.0-alpha9.zip", - "reference": "8.x-1.0-alpha9", - "shasum": "21854b567ef6b9a17883da061c03850f136cc9d1" - }, - "require": { - "drupal/core": "^9 || ^10" - }, - "require-dev": { - "mikey179/vfsstream": "^1.0" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.0-alpha9", - "datestamp": "1690397386", - "security-coverage": { - "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" - } - }, - "drush": { - "services": { - "drush.services.yml": "^9" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "DamienMcKenna", - "homepage": "https://www.drupal.org/user/108450" - }, - { - "name": "shrop", - "homepage": "https://www.drupal.org/user/14767" - }, - { - "name": "slucero", - "homepage": "https://www.drupal.org/user/1612534" - } - ], - "description": "Demo content generator using yaml content templates.", - "homepage": "https://www.drupal.org/project/yaml_content", - "support": { - "source": "https://git.drupalcode.org/project/yaml_content" - } - }, { "name": "drush/drush", - "version": "12.5.3", + "version": "9.7.1", "source": { "type": "git", "url": "https://github.com/drush-ops/drush.git", - "reference": "7fe0a492d5126c457c5fb184c4668a132b0aaac6" + "reference": "6f9a8d235daec06fd6f47b2d84da675750566479" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drush-ops/drush/zipball/7fe0a492d5126c457c5fb184c4668a132b0aaac6", - "reference": "7fe0a492d5126c457c5fb184c4668a132b0aaac6", + "url": "https://api.github.com/repos/drush-ops/drush/zipball/6f9a8d235daec06fd6f47b2d84da675750566479", + "reference": "6f9a8d235daec06fd6f47b2d84da675750566479", "shasum": "" }, "require": { - "chi-teck/drupal-code-generator": "^3.0", - "composer-runtime-api": "^2.2", - "composer/semver": "^1.4 || ^3", - "consolidation/annotated-command": "^4.9.2", - "consolidation/config": "^2.1.2", - "consolidation/filter-via-dot-access-data": "^2.0.2", - "consolidation/output-formatters": "^4.3.2", - "consolidation/robo": "^4.0.6", - "consolidation/site-alias": "^4", - "consolidation/site-process": "^5.2.0", + "chi-teck/drupal-code-generator": "^1.28.1", + "composer/semver": "^1.4", + "consolidation/annotated-command": "^2.12", + "consolidation/config": "^1.2", + "consolidation/filter-via-dot-access-data": "^1", + "consolidation/output-formatters": "^3.3.1", + "consolidation/robo": "^1.4.6", + "consolidation/site-alias": "^3.0.0@stable", + "consolidation/site-process": "^2.0.3", "ext-dom": "*", - "grasmash/yaml-cli": "^3.1", - "guzzlehttp/guzzle": "^7.0", - "league/container": "^4", - "php": ">=8.1", - "psy/psysh": "~0.11", - "symfony/event-dispatcher": "^6", - "symfony/filesystem": "^6.1", - "symfony/finder": "^6", - "symfony/var-dumper": "^6.0", - "symfony/yaml": "^6.0", - "webflo/drupal-finder": "^1.2" - }, - "conflict": { - "drupal/core": "< 10.0", - "drupal/migrate_run": "*", - "drupal/migrate_tools": "<= 5" + "grasmash/yaml-expander": "^1.1.1", + "league/container": "~2", + "php": ">=5.6.0", + "psr/log": "~1.0", + "psy/psysh": "~0.6", + "symfony/console": "^3.4", + "symfony/event-dispatcher": "^3.4", + "symfony/finder": "^3.4 || ^4.0", + "symfony/process": "^3.4", + "symfony/var-dumper": "^3.4 || ^4.0", + "symfony/yaml": "^3.4", + "webflo/drupal-finder": "^1.1", + "webmozart/path-util": "^2.1.0" }, "require-dev": { - "composer/installers": "^2", + "composer/installers": "^1.2", "cweagans/composer-patches": "~1.0", - "drupal/core-recommended": "^10", - "drupal/semver_example": "2.3.0", - "phpunit/phpunit": "^9", - "rector/rector": "^0.12", - "squizlabs/php_codesniffer": "^3.7" + "drupal/alinks": "1.0.0", + "drupal/devel": "^2", + "drupal/empty_theme": "1.0", + "g1a/composer-test-scenarios": "^3", + "lox/xhprof": "dev-master", + "phpunit/phpunit": "^4.8.36 || ^6.1", + "squizlabs/php_codesniffer": "^2.7 || ^3", + "vlucas/phpdotenv": "^2.4", + "webflo/drupal-core-require-dev": "8.7.x-dev", + "webflo/drupal-core-strict": "8.7.x-dev" }, "bin": [ "drush" @@ -18363,29 +7798,46 @@ "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" ] + }, + "scenarios": { + "php5": { + "config": { + "platform": { + "php": "5.6.38" + } + }, + "require-dev": { + "webflo/drupal-core-strict": "8.6.x-dev", + "webflo/drupal-core-require-dev": "8.6.x-dev" + } + } + }, + "branch-alias": { + "dev-master": "9.x-dev" } }, "autoload": { "psr-4": { - "Drush\\": "src/" + "Drush\\": "src/", + "Drush\\Internal\\": "src/internal-forks" } }, "notification-url": "https://packagist.org/downloads/", @@ -18428,84 +7880,74 @@ ], "description": "Drush is a command line shell and scripting interface for Drupal, a veritable Swiss Army knife designed to make life easier for those of us who spend some of our working hours hacking away at the command prompt.", "homepage": "http://www.drush.org", - "support": { - "forum": "http://drupal.stackexchange.com/questions/tagged/drush", - "issues": "https://github.com/drush-ops/drush/issues", - "security": "https://github.com/drush-ops/drush/security/advisories", - "slack": "https://drupal.slack.com/messages/C62H9CWQM", - "source": "https://github.com/drush-ops/drush/tree/12.5.3" - }, - "funding": [ - { - "url": "https://github.com/weitzman", - "type": "github" - } - ], - "time": "2024-08-02T11:57:29+00:00" + "time": "2019-06-30T19:46:39+00:00" }, { "name": "drutopia/drutopia", - "version": "2.0.x-dev", + "version": "1.0-beta3", "source": { "type": "git", - "url": "https://gitlab.com/drutopia/drutopia.git", - "reference": "2192b03e0c0dba53dd1181c19c5c3c3ece643ba6" + "url": "https://github.com/drutopia/drutopia.git", + "reference": "67de2873e9a48f02257bb17e8d4f0dea052bae2a" }, "dist": { "type": "zip", - "url": "https://gitlab.com/api/v4/projects/drutopia%2Fdrutopia/repository/archive.zip?sha=2192b03e0c0dba53dd1181c19c5c3c3ece643ba6", - "reference": "2192b03e0c0dba53dd1181c19c5c3c3ece643ba6", + "url": "https://api.github.com/repos/drutopia/drutopia/zipball/67de2873e9a48f02257bb17e8d4f0dea052bae2a", + "reference": "67de2873e9a48f02257bb17e8d4f0dea052bae2a", "shasum": "" }, "require": { - "cweagans/composer-patches": "^1", - "drupal/antibot": "^2", - "drupal/block_visibility_groups": "^2", - "drupal/bulma_components": "^1", - "drupal/config_actions_provider": "^1", - "drupal/config_sync": "^3", - "drupal/config_update": "^2", - "drupal/default_content": "^2", - "drupal/drutopia_action": "^2", - "drupal/drutopia_article": "^2", - "drupal/drutopia_blog": "^2", - "drupal/drutopia_campaign": "^2", - "drupal/drutopia_comment": "^2", - "drupal/drutopia_core": "^2", - "drupal/drutopia_event": "^2", - "drupal/drutopia_group": "^2", - "drupal/drutopia_landing_page": "^2", - "drupal/drutopia_page": "^2", - "drupal/drutopia_people": "^2", - "drupal/drutopia_related_content": "^2", - "drupal/drutopia_resource": "^2", - "drupal/drutopia_search": "^2", - "drupal/drutopia_seo": "^2", - "drupal/drutopia_site": "^2", - "drupal/drutopia_social": "^2", - "drupal/drutopia_storyline": "^2", - "drupal/drutopia_user": "^2", - "drupal/eu_cookie_compliance": "^1", - "drupal/features": "^3", - "drupal/gdpr": "^3", - "drupal/gin": "^4", - "drupal/gin_toolbar": "^2", - "drupal/honeypot": "^2", - "drupal/menu_block": "^1", - "drupal/octavia": "^2", - "drupal/paranoia": "^1", - "drupal/riddler": "^3", - "drupal/subprofiles": "^2", - "drupal/twigsuggest": "^2", - "drupal/yaml_content": "^1", - "geeks4change/composer-pin": "*" + "composer/installers": "^1.0", + "cweagans/composer-patches": "^1.5.0", + "drupal-composer/drupal-scaffold": "^2.0.0", + "drupal/better_normalizers": "^1.0-beta3", + "drupal/block_visibility_groups": "^1.3", + "drupal/bulma": "^1.0-beta2", + "drupal/components": "^1.1", + "drupal/config_actions_provider": "^1.0-rc1", + "drupal/config_sync": "^2.0-beta5", + "drupal/config_update": "^1.6", + "drupal/core": "^8.7.2", + "drupal/default_content": "^1.0-alpha8", + "drupal/drutopia_action": "^1.0-beta3", + "drupal/drutopia_article": "^1.0-beta3", + "drupal/drutopia_blog": "^1.0-beta3", + "drupal/drutopia_campaign": "^1.0-beta3", + "drupal/drutopia_comment": "^1.0-beta1", + "drupal/drutopia_core": "^1.0-beta3", + "drupal/drutopia_event": "^1.0-beta3", + "drupal/drutopia_group": "^1.0-beta3", + "drupal/drutopia_landing_page": "^1.0-beta1", + "drupal/drutopia_page": "^1.0-beta3", + "drupal/drutopia_people": "^1.0-beta3", + "drupal/drutopia_related_content": "^1.0-beta2", + "drupal/drutopia_resource": "^1.0-beta3", + "drupal/drutopia_search": "^1.0-beta2", + "drupal/drutopia_seo": "^1.0-beta2", + "drupal/drutopia_site": "^1.0-beta1", + "drupal/drutopia_social": "^1.0-beta1", + "drupal/drutopia_storyline": "^1.0-beta3", + "drupal/drutopia_user": "^1.0-beta1", + "drupal/eu_cookie_compliance": "^1.5", + "drupal/features": "^3.8", + "drupal/gdpr": "^2.0-alpha7", + "drupal/menu_block": "^1.5", + "drupal/octavia": "^1.0-beta4", + "drupal/paranoia": "^1.0-alpha1", + "drupal/subprofiles": "^1.0-alpha2" }, "require-dev": { - "drupal/devel": "^5", - "drupal/drupal-extension": "^5", - "drush/drush": "^12", + "behat/behat": "^3.0", + "behat/mink": "~1.7", + "behat/mink-goutte-driver": "~1.2", + "drupal-composer/drupal-scaffold": "^2.0.0", + "drupal/devel": "^1.0", + "drupal/drupal-extension": "^3.2", + "drush/drush": "^9.0", "jcalderonzumba/gastonjs": "~1.0.2", "mikey179/vfsstream": "~1.2", + "phing/phing": "^2.14", + "phpunit/phpunit": "~4.8", "se/selenium-server-standalone": "^2.53", "squizlabs/php_codesniffer": "2.*", "symfony/css-selector": "~2.8" @@ -18514,68 +7956,66 @@ "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" + "Parent theme template inheritance bug": "https://www.drupal.org/files/issues/parent_profile_template-2895316-3.patch" } }, - "drupal-scaffold": { - "locations": { - "web-root": "web/" - } - }, - "enable-patching": true + "patches_applied": { + "Remove default content": "patches/drutopia-remove-default-content.patch" + } + }, + "scripts": { + "drupal-scaffold": [ + "DrupalComposer\\DrupalScaffold\\Plugin::scaffold" + ], + "post-install-cmd": [ + "@composer drupal-scaffold", + "./bin/phing push" + ], + "post-update-cmd": [ + "./bin/phing push" + ] }, - "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "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" + "source": "https://github.com/drutopia/drutopia/tree/8.x-1.0-beta3", + "issues": "https://github.com/drutopia/drutopia/issues" }, - "time": "2025-02-07T15:24:33+00:00" + "time": "2019-08-26T20:57:59+00:00" }, { "name": "easyrdf/easyrdf", - "version": "1.1.1", + "version": "0.9.1", "source": { "type": "git", - "url": "https://github.com/easyrdf/easyrdf.git", - "reference": "c7b0a9dbcb211eb7de03ee99ff5b52d17f2a8e64" + "url": "https://github.com/njh/easyrdf.git", + "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/easyrdf/easyrdf/zipball/c7b0a9dbcb211eb7de03ee99ff5b52d17f2a8e64", - "reference": "c7b0a9dbcb211eb7de03ee99ff5b52d17f2a8e64", + "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566", + "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566", "shasum": "" }, "require": { - "ext-dom": "*", "ext-mbstring": "*", "ext-pcre": "*", - "ext-xmlreader": "*", - "lib-libxml": "*", - "php": ">=7.1.0" + "php": ">=5.2.8" }, "require-dev": { - "code-lts/doctum": "^5", - "ml/json-ld": "~1.0", - "phpunit/phpunit": "^7", - "semsol/arc2": "^2.4", - "squizlabs/php_codesniffer": "3.*", - "zendframework/zend-http": "~2.3" + "phpunit/phpunit": "~3.5", + "sami/sami": "~1.4", + "squizlabs/php_codesniffer": "~1.4.3" }, "suggest": { - "ml/json-ld": "~1.0", - "semsol/arc2": "~2.2" + "ml/json-ld": "~1.0" }, "type": "library", "autoload": { - "psr-4": { - "EasyRdf\\": "lib" + "psr-0": { + "EasyRdf_": "lib/" } }, "notification-url": "https://packagist.org/downloads/", @@ -18592,7 +8032,6 @@ { "name": "Alexey Zakhlestin", "email": "indeyets@gmail.com", - "homepage": "http://indeyets.ru/", "role": "Developer" } ], @@ -18606,35 +8045,31 @@ "rdfa", "sparql" ], - "support": { - "forum": "http://groups.google.com/group/easyrdf/", - "issues": "http://github.com/easyrdf/easyrdf/issues", - "source": "https://github.com/easyrdf/easyrdf/tree/1.1.1" - }, - "time": "2020-12-02T08:47:31+00:00" + "time": "2015-02-27T09:45:49+00:00" }, { "name": "egulias/email-validator", - "version": "4.0.4", + "version": "2.1.11", "source": { "type": "git", "url": "https://github.com/egulias/EmailValidator.git", - "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa" + "reference": "92dd169c32f6f55ba570c309d83f5209cefb5e23" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa", - "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/92dd169c32f6f55ba570c309d83f5209cefb5e23", + "reference": "92dd169c32f6f55ba570c309d83f5209cefb5e23", "shasum": "" }, "require": { - "doctrine/lexer": "^2.0 || ^3.0", - "php": ">=8.1", - "symfony/polyfill-intl-idn": "^1.26" + "doctrine/lexer": "^1.0.1", + "php": ">= 5.5" }, "require-dev": { - "phpunit/phpunit": "^10.2", - "vimeo/psalm": "^5.12" + "dominicsayers/isemail": "dev-master", + "phpunit/phpunit": "^4.8.35||^5.7||^6.0", + "satooshi/php-coveralls": "^1.0.1", + "symfony/phpunit-bridge": "^4.4@dev" }, "suggest": { "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" @@ -18642,12 +8077,12 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0.x-dev" + "dev-master": "2.1.x-dev" } }, "autoload": { "psr-4": { - "Egulias\\EmailValidator\\": "src" + "Egulias\\EmailValidator\\": "EmailValidator" } }, "notification-url": "https://packagist.org/downloads/", @@ -18668,116 +8103,36 @@ "validation", "validator" ], - "support": { - "issues": "https://github.com/egulias/EmailValidator/issues", - "source": "https://github.com/egulias/EmailValidator/tree/4.0.4" - }, - "funding": [ - { - "url": "https://github.com/egulias", - "type": "github" - } - ], - "time": "2025-03-06T22:45:56+00:00" + "time": "2019-08-13T17:33:27+00:00" }, { - "name": "ezyang/htmlpurifier", - "version": "v4.18.0", + "name": "fzaninotto/faker", + "version": "v1.8.0", "source": { "type": "git", - "url": "https://github.com/ezyang/htmlpurifier.git", - "reference": "cb56001e54359df7ae76dc522d08845dc741621b" + "url": "https://github.com/fzaninotto/Faker.git", + "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/cb56001e54359df7ae76dc522d08845dc741621b", - "reference": "cb56001e54359df7ae76dc522d08845dc741621b", + "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/f72816b43e74063c8b10357394b6bba8cb1c10de", + "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de", "shasum": "" }, "require": { - "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0" + "php": "^5.3.3 || ^7.0" }, "require-dev": { - "cerdic/css-tidy": "^1.7 || ^2.0", - "simpletest/simpletest": "dev-master" - }, - "suggest": { - "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.", - "ext-bcmath": "Used for unit conversion and imagecrash protection", - "ext-iconv": "Converts text to and from non-UTF-8 encodings", - "ext-tidy": "Used for pretty-printing HTML" - }, - "type": "library", - "autoload": { - "files": [ - "library/HTMLPurifier.composer.php" - ], - "psr-0": { - "HTMLPurifier": "library/" - }, - "exclude-from-classmap": [ - "/library/HTMLPurifier/Language/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "LGPL-2.1-or-later" - ], - "authors": [ - { - "name": "Edward Z. Yang", - "email": "admin@htmlpurifier.org", - "homepage": "http://ezyang.com" - } - ], - "description": "Standards compliant HTML filter written in PHP", - "homepage": "http://htmlpurifier.org/", - "keywords": [ - "html" - ], - "support": { - "issues": "https://github.com/ezyang/htmlpurifier/issues", - "source": "https://github.com/ezyang/htmlpurifier/tree/v4.18.0" - }, - "time": "2024-11-01T03:51:45+00:00" - }, - { - "name": "fakerphp/faker", - "version": "v1.24.1", - "source": { - "type": "git", - "url": "https://github.com/FakerPHP/Faker.git", - "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5", - "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5", - "shasum": "" - }, - "require": { - "php": "^7.4 || ^8.0", - "psr/container": "^1.0 || ^2.0", - "symfony/deprecation-contracts": "^2.2 || ^3.0" - }, - "conflict": { - "fzaninotto/faker": "*" - }, - "require-dev": { - "bamarni/composer-bin-plugin": "^1.4.1", - "doctrine/persistence": "^1.3 || ^2.0", "ext-intl": "*", - "phpunit/phpunit": "^9.5.26", - "symfony/phpunit-bridge": "^5.4.16" - }, - "suggest": { - "doctrine/orm": "Required to use Faker\\ORM\\Doctrine", - "ext-curl": "Required by Faker\\Provider\\Image to download images.", - "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.", - "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.", - "ext-mbstring": "Required for multibyte Unicode string functionality." + "phpunit/phpunit": "^4.8.35 || ^5.7", + "squizlabs/php_codesniffer": "^1.5" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.8-dev" + } + }, "autoload": { "psr-4": { "Faker\\": "src/Faker/" @@ -18798,197 +8153,31 @@ "faker", "fixtures" ], - "support": { - "issues": "https://github.com/FakerPHP/Faker/issues", - "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1" - }, - "time": "2024-11-21T13:46:39+00:00" - }, - { - "name": "geeks4change/composer-pin", - "version": "dev-master", - "source": { - "type": "git", - "url": "https://gitlab.com/geeks4change/packages/composer-pin.git", - "reference": "e5c37b2b1c6041f6c5e1a86dc1c1c15dc7879ba8" - }, - "dist": { - "type": "zip", - "url": "https://gitlab.com/api/v4/projects/geeks4change%2Fpackages%2Fcomposer-pin/repository/archive.zip?sha=e5c37b2b1c6041f6c5e1a86dc1c1c15dc7879ba8", - "reference": "e5c37b2b1c6041f6c5e1a86dc1c1c15dc7879ba8", - "shasum": "" - }, - "default-branch": true, - "bin": [ - "composer-pin-apply" - ], - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.x-dev" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "Merlin", - "email": "merlin@geeks4change.net" - } - ], - "description": "Provides helper commands to do project level version/hash pinning.", - "support": { - "issues": "https://gitlab.com/geeks4change/packages/composer-pin/-/issues", - "source": "https://gitlab.com/geeks4change/packages/composer-pin/-/tree/master" - }, - "time": "2020-06-02T10:38:25+00:00" - }, - { - "name": "geoip2/geoip2", - "version": "v2.13.0", - "source": { - "type": "git", - "url": "https://github.com/maxmind/GeoIP2-php.git", - "reference": "6a41d8fbd6b90052bc34dff3b4252d0f88067b23" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/maxmind/GeoIP2-php/zipball/6a41d8fbd6b90052bc34dff3b4252d0f88067b23", - "reference": "6a41d8fbd6b90052bc34dff3b4252d0f88067b23", - "shasum": "" - }, - "require": { - "ext-json": "*", - "maxmind-db/reader": "~1.8", - "maxmind/web-service-common": "~0.8", - "php": ">=7.2" - }, - "require-dev": { - "friendsofphp/php-cs-fixer": "3.*", - "phpstan/phpstan": "*", - "phpunit/phpunit": "^8.0 || ^9.0", - "squizlabs/php_codesniffer": "3.*" - }, - "type": "library", - "autoload": { - "psr-4": { - "GeoIp2\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Apache-2.0" - ], - "authors": [ - { - "name": "Gregory J. Oschwald", - "email": "goschwald@maxmind.com", - "homepage": "https://www.maxmind.com/" - } - ], - "description": "MaxMind GeoIP2 PHP API", - "homepage": "https://github.com/maxmind/GeoIP2-php", - "keywords": [ - "IP", - "geoip", - "geoip2", - "geolocation", - "maxmind" - ], - "support": { - "issues": "https://github.com/maxmind/GeoIP2-php/issues", - "source": "https://github.com/maxmind/GeoIP2-php/tree/v2.13.0" - }, - "time": "2022-08-05T20:32:58+00:00" - }, - { - "name": "graham-campbell/result-type", - "version": "v1.1.3", - "source": { - "type": "git", - "url": "https://github.com/GrahamCampbell/Result-Type.git", - "reference": "3ba905c11371512af9d9bdd27d99b782216b6945" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945", - "reference": "3ba905c11371512af9d9bdd27d99b782216b6945", - "shasum": "" - }, - "require": { - "php": "^7.2.5 || ^8.0", - "phpoption/phpoption": "^1.9.3" - }, - "require-dev": { - "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28" - }, - "type": "library", - "autoload": { - "psr-4": { - "GrahamCampbell\\ResultType\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Graham Campbell", - "email": "hello@gjcampbell.co.uk", - "homepage": "https://github.com/GrahamCampbell" - } - ], - "description": "An Implementation Of The Result Type", - "keywords": [ - "Graham Campbell", - "GrahamCampbell", - "Result Type", - "Result-Type", - "result" - ], - "support": { - "issues": "https://github.com/GrahamCampbell/Result-Type/issues", - "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3" - }, - "funding": [ - { - "url": "https://github.com/GrahamCampbell", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type", - "type": "tidelift" - } - ], - "time": "2024-07-20T21:45:45+00:00" + "time": "2018-07-12T10:23:15+00:00" }, { "name": "grasmash/expander", - "version": "3.0.1", + "version": "1.0.0", "source": { "type": "git", "url": "https://github.com/grasmash/expander.git", - "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4" + "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/grasmash/expander/zipball/eea11b9afb0c32483b18b9009f4ca07b770e39f4", - "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4", + "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f", + "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f", "shasum": "" }, "require": { - "dflydev/dot-access-data": "^3.0.0", - "php": ">=8.0", - "psr/log": "^2 | ^3" + "dflydev/dot-access-data": "^1.1.0", + "php": ">=5.4" }, "require-dev": { "greg-1-anderson/composer-test-scenarios": "^1", - "php-coveralls/php-coveralls": "^2.5", - "phpunit/phpunit": "^9", - "squizlabs/php_codesniffer": "^3.3" + "phpunit/phpunit": "^4|^5.5.4", + "satooshi/php-coveralls": "^1.0.2|dev-master", + "squizlabs/php_codesniffer": "^2.7" }, "type": "library", "extra": { @@ -19011,50 +8200,42 @@ } ], "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" - }, - "time": "2024-11-25T23:28:05+00:00" + "time": "2017-12-21T22:14:55+00:00" }, { - "name": "grasmash/yaml-cli", - "version": "3.2.1", + "name": "grasmash/yaml-expander", + "version": "1.4.0", "source": { "type": "git", - "url": "https://github.com/grasmash/yaml-cli.git", - "reference": "09a8860566958a1576cc54bbe910a03477e54971" + "url": "https://github.com/grasmash/yaml-expander.git", + "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/grasmash/yaml-cli/zipball/09a8860566958a1576cc54bbe910a03477e54971", - "reference": "09a8860566958a1576cc54bbe910a03477e54971", + "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1", + "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1", "shasum": "" }, "require": { - "dflydev/dot-access-data": "^3", - "php": ">=8.0", - "symfony/console": "^6 || ^7", - "symfony/filesystem": "^6 || ^7", - "symfony/yaml": "^6 || ^7" + "dflydev/dot-access-data": "^1.1.0", + "php": ">=5.4", + "symfony/yaml": "^2.8.11|^3|^4" }, "require-dev": { - "php-coveralls/php-coveralls": "^2", - "phpunit/phpunit": "^9", - "squizlabs/php_codesniffer": "^3.0" + "greg-1-anderson/composer-test-scenarios": "^1", + "phpunit/phpunit": "^4.8|^5.5.4", + "satooshi/php-coveralls": "^1.0.2|dev-master", + "squizlabs/php_codesniffer": "^2.7" }, - "bin": [ - "bin/yaml-cli" - ], "type": "library", "extra": { "branch-alias": { - "dev-master": "3.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { "psr-4": { - "Grasmash\\YamlCli\\": "src/" + "Grasmash\\YamlExpander\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -19066,56 +8247,40 @@ "name": "Matthew Grasmick" } ], - "description": "A command line tool for reading and manipulating yaml files.", - "support": { - "issues": "https://github.com/grasmash/yaml-cli/issues", - "source": "https://github.com/grasmash/yaml-cli/tree/3.2.1" - }, - "time": "2024-04-23T02:10:57+00:00" + "description": "Expands internal property references in a yaml file.", + "time": "2017-12-16T16:06:03+00:00" }, { "name": "guzzlehttp/guzzle", - "version": "7.9.3", + "version": "6.3.3", "source": { "type": "git", "url": "https://github.com/guzzle/guzzle.git", - "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77" + "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7b2f29fe81dc4da0ca0ea7d42107a0845946ea77", - "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba", + "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba", "shasum": "" }, "require": { - "ext-json": "*", - "guzzlehttp/promises": "^1.5.3 || ^2.0.3", - "guzzlehttp/psr7": "^2.7.0", - "php": "^7.2.5 || ^8.0", - "psr/http-client": "^1.0", - "symfony/deprecation-contracts": "^2.2 || ^3.0" - }, - "provide": { - "psr/http-client-implementation": "1.0" + "guzzlehttp/promises": "^1.0", + "guzzlehttp/psr7": "^1.4", + "php": ">=5.5" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.8.2", "ext-curl": "*", - "guzzle/client-integration-tests": "3.0.2", - "php-http/message-factory": "^1.1", - "phpunit/phpunit": "^8.5.39 || ^9.6.20", - "psr/log": "^1.1 || ^2.0 || ^3.0" + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0", + "psr/log": "^1.0" }, "suggest": { - "ext-curl": "Required for CURL handler support", - "ext-intl": "Required for Internationalized Domain Name (IDN) support", "psr/log": "Required for using the Log middleware" }, "type": "library", "extra": { - "bamarni-bin": { - "bin-links": true, - "forward-command": false + "branch-alias": { + "dev-master": "6.3-dev" } }, "autoload": { @@ -19131,240 +8296,132 @@ "MIT" ], "authors": [ - { - "name": "Graham Campbell", - "email": "hello@gjcampbell.co.uk", - "homepage": "https://github.com/GrahamCampbell" - }, { "name": "Michael Dowling", "email": "mtdowling@gmail.com", "homepage": "https://github.com/mtdowling" - }, - { - "name": "Jeremy Lindblom", - "email": "jeremeamia@gmail.com", - "homepage": "https://github.com/jeremeamia" - }, - { - "name": "George Mponos", - "email": "gmponos@gmail.com", - "homepage": "https://github.com/gmponos" - }, - { - "name": "Tobias Nyholm", - "email": "tobias.nyholm@gmail.com", - "homepage": "https://github.com/Nyholm" - }, - { - "name": "Márk Sági-Kazár", - "email": "mark.sagikazar@gmail.com", - "homepage": "https://github.com/sagikazarmark" - }, - { - "name": "Tobias Schultze", - "email": "webmaster@tubo-world.de", - "homepage": "https://github.com/Tobion" } ], "description": "Guzzle is a PHP HTTP client library", + "homepage": "http://guzzlephp.org/", "keywords": [ "client", "curl", "framework", "http", "http client", - "psr-18", - "psr-7", "rest", "web service" ], - "support": { - "issues": "https://github.com/guzzle/guzzle/issues", - "source": "https://github.com/guzzle/guzzle/tree/7.9.3" - }, - "funding": [ - { - "url": "https://github.com/GrahamCampbell", - "type": "github" - }, - { - "url": "https://github.com/Nyholm", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle", - "type": "tidelift" - } - ], - "time": "2025-03-27T13:37:11+00:00" + "time": "2018-04-22T15:46:56+00:00" }, { "name": "guzzlehttp/promises", - "version": "2.2.0", + "version": "v1.3.1", "source": { "type": "git", "url": "https://github.com/guzzle/promises.git", - "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c" + "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/7c69f28996b0a6920945dd20b3857e499d9ca96c", - "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c", + "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646", + "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646", "shasum": "" }, "require": { - "php": "^7.2.5 || ^8.0" + "php": ">=5.5.0" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.8.2", - "phpunit/phpunit": "^8.5.39 || ^9.6.20" + "phpunit/phpunit": "^4.0" }, "type": "library", "extra": { - "bamarni-bin": { - "bin-links": true, - "forward-command": false + "branch-alias": { + "dev-master": "1.4-dev" } }, "autoload": { "psr-4": { "GuzzleHttp\\Promise\\": "src/" - } + }, + "files": [ + "src/functions_include.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ - { - "name": "Graham Campbell", - "email": "hello@gjcampbell.co.uk", - "homepage": "https://github.com/GrahamCampbell" - }, { "name": "Michael Dowling", "email": "mtdowling@gmail.com", "homepage": "https://github.com/mtdowling" - }, - { - "name": "Tobias Nyholm", - "email": "tobias.nyholm@gmail.com", - "homepage": "https://github.com/Nyholm" - }, - { - "name": "Tobias Schultze", - "email": "webmaster@tubo-world.de", - "homepage": "https://github.com/Tobion" } ], "description": "Guzzle promises library", "keywords": [ "promise" ], - "support": { - "issues": "https://github.com/guzzle/promises/issues", - "source": "https://github.com/guzzle/promises/tree/2.2.0" - }, - "funding": [ - { - "url": "https://github.com/GrahamCampbell", - "type": "github" - }, - { - "url": "https://github.com/Nyholm", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises", - "type": "tidelift" - } - ], - "time": "2025-03-27T13:27:01+00:00" + "time": "2016-12-20T10:07:11+00:00" }, { "name": "guzzlehttp/psr7", - "version": "2.7.1", + "version": "1.6.1", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16" + "reference": "239400de7a173fe9901b9ac7c06497751f00727a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/c2270caaabe631b3b44c85f99e5a04bbb8060d16", - "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a", + "reference": "239400de7a173fe9901b9ac7c06497751f00727a", "shasum": "" }, "require": { - "php": "^7.2.5 || ^8.0", - "psr/http-factory": "^1.0", - "psr/http-message": "^1.1 || ^2.0", - "ralouphie/getallheaders": "^3.0" + "php": ">=5.4.0", + "psr/http-message": "~1.0", + "ralouphie/getallheaders": "^2.0.5 || ^3.0.0" }, "provide": { - "psr/http-factory-implementation": "1.0", "psr/http-message-implementation": "1.0" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.8.2", - "http-interop/http-factory-tests": "0.9.0", - "phpunit/phpunit": "^8.5.39 || ^9.6.20" + "ext-zlib": "*", + "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8" }, "suggest": { - "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" + "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses" }, "type": "library", "extra": { - "bamarni-bin": { - "bin-links": true, - "forward-command": false + "branch-alias": { + "dev-master": "1.6-dev" } }, "autoload": { "psr-4": { "GuzzleHttp\\Psr7\\": "src/" - } + }, + "files": [ + "src/functions_include.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ - { - "name": "Graham Campbell", - "email": "hello@gjcampbell.co.uk", - "homepage": "https://github.com/GrahamCampbell" - }, { "name": "Michael Dowling", "email": "mtdowling@gmail.com", "homepage": "https://github.com/mtdowling" }, - { - "name": "George Mponos", - "email": "gmponos@gmail.com", - "homepage": "https://github.com/gmponos" - }, - { - "name": "Tobias Nyholm", - "email": "tobias.nyholm@gmail.com", - "homepage": "https://github.com/Nyholm" - }, - { - "name": "Márk Sági-Kazár", - "email": "mark.sagikazar@gmail.com", - "homepage": "https://github.com/sagikazarmark" - }, { "name": "Tobias Schultze", - "email": "webmaster@tubo-world.de", "homepage": "https://github.com/Tobion" - }, - { - "name": "Márk Sági-Kazár", - "email": "mark.sagikazar@gmail.com", - "homepage": "https://sagikazarmark.hu" } ], "description": "PSR-7 message implementation that also provides common utility methods", @@ -19378,248 +8435,80 @@ "uri", "url" ], - "support": { - "issues": "https://github.com/guzzle/psr7/issues", - "source": "https://github.com/guzzle/psr7/tree/2.7.1" - }, - "funding": [ - { - "url": "https://github.com/GrahamCampbell", - "type": "github" - }, - { - "url": "https://github.com/Nyholm", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7", - "type": "tidelift" - } - ], - "time": "2025-03-27T12:30:47+00:00" + "time": "2019-07-01T23:21:34+00:00" }, { - "name": "indieauth/client", - "version": "1.1.6", + "name": "jakub-onderka/php-console-color", + "version": "v0.2", "source": { "type": "git", - "url": "https://github.com/indieweb/indieauth-client-php.git", - "reference": "9f3f9cc71a752c371b44d40a979504ffd7026c7d" + "url": "https://github.com/JakubOnderka/PHP-Console-Color.git", + "reference": "d5deaecff52a0d61ccb613bb3804088da0307191" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/indieweb/indieauth-client-php/zipball/9f3f9cc71a752c371b44d40a979504ffd7026c7d", - "reference": "9f3f9cc71a752c371b44d40a979504ffd7026c7d", + "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191", + "reference": "d5deaecff52a0d61ccb613bb3804088da0307191", "shasum": "" }, "require": { - "indieweb/representative-h-card": "^0.1.2", - "mf2/mf2": "^0.5", - "p3k/http": "^0.1", - "php": ">5.6.0" + "php": ">=5.4.0" }, "require-dev": { - "yoast/phpunit-polyfills": "^1.0" + "jakub-onderka/php-code-style": "1.0", + "jakub-onderka/php-parallel-lint": "1.0", + "jakub-onderka/php-var-dump-check": "0.*", + "phpunit/phpunit": "~4.3", + "squizlabs/php_codesniffer": "1.*" }, "type": "library", "autoload": { "psr-4": { - "IndieAuth\\": "src/IndieAuth/" + "JakubOnderka\\PhpConsoleColor\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "Apache-2.0" + "BSD-2-Clause" ], "authors": [ { - "name": "Aaron Parecki", - "homepage": "https://aaronparecki.com" + "name": "Jakub Onderka", + "email": "jakub.onderka@gmail.com" } ], - "description": "IndieAuth Client Library", - "support": { - "issues": "https://github.com/indieweb/indieauth-client-php/issues", - "source": "https://github.com/indieweb/indieauth-client-php/tree/1.1.6" - }, - "funding": [ - { - "url": "https://opencollective.com/indieweb", - "type": "opencollective" - } - ], - "time": "2022-11-08T21:37:04+00:00" + "time": "2018-09-29T17:23:10+00:00" }, { - "name": "indieweb/link-rel-parser", - "version": "0.1.3", + "name": "jakub-onderka/php-console-highlighter", + "version": "v0.4", "source": { "type": "git", - "url": "https://github.com/indieweb/link-rel-parser-php.git", - "reference": "295420e4f16d9a9d262a3c25a7a583794428f055" + "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git", + "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/indieweb/link-rel-parser-php/zipball/295420e4f16d9a9d262a3c25a7a583794428f055", - "reference": "295420e4f16d9a9d262a3c25a7a583794428f055", + "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547", + "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547", "shasum": "" }, "require": { - "php": ">=5.3.0" - }, - "type": "library", - "autoload": { - "files": [ - "src/IndieWeb/link_rel_parser.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Apache-2.0" - ], - "authors": [ - { - "name": "Aaron Parecki", - "homepage": "http://aaronparecki.com" - }, - { - "name": "Tantek Çelik", - "homepage": "http://tantek.com" - } - ], - "description": "Parse rel values from HTTP headers", - "homepage": "https://github.com/indieweb/link-rel-parser-php", - "keywords": [ - "http", - "indieweb", - "microformats2" - ], - "support": { - "issues": "https://github.com/indieweb/link-rel-parser-php/issues", - "source": "https://github.com/indieweb/link-rel-parser-php/tree/master" - }, - "time": "2017-01-11T17:14:49+00:00" - }, - { - "name": "indieweb/mention-client", - "version": "1.2.1", - "source": { - "type": "git", - "url": "https://github.com/indieweb/mention-client-php.git", - "reference": "6807f4b1b96df7f47ea425eebfc7c032768652cf" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/indieweb/mention-client-php/zipball/6807f4b1b96df7f47ea425eebfc7c032768652cf", - "reference": "6807f4b1b96df7f47ea425eebfc7c032768652cf", - "shasum": "" - }, - "require": { - "mf2/mf2": ">=0.2", - "php": ">=5.6" + "ext-tokenizer": "*", + "jakub-onderka/php-console-color": "~0.2", + "php": ">=5.4.0" }, "require-dev": { - "phpunit/phpunit": "^6" - }, - "type": "library", - "autoload": { - "psr-0": { - "IndieWeb": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Apache-2.0" - ], - "authors": [ - { - "name": "Aaron Parecki", - "email": "aaron@parecki.com", - "homepage": "http://aaronparecki.com/" - } - ], - "description": "Client library for sending webmention and pingback notifications", - "homepage": "https://github.com/indieweb/mention-client-php", - "support": { - "issues": "https://github.com/indieweb/mention-client-php/issues", - "source": "https://github.com/indieweb/mention-client-php/tree/1.2.1" - }, - "time": "2021-02-02T13:13:07+00:00" - }, - { - "name": "indieweb/representative-h-card", - "version": "0.1.3", - "source": { - "type": "git", - "url": "https://github.com/indieweb/representative-h-card-php.git", - "reference": "97731c6ccc0838418c775b867bf826aeaa91cd95" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/indieweb/representative-h-card-php/zipball/97731c6ccc0838418c775b867bf826aeaa91cd95", - "reference": "97731c6ccc0838418c775b867bf826aeaa91cd95", - "shasum": "" - }, - "require": { - "php": ">=5.4" - }, - "require-dev": { - "mf2/mf2": "0.2.*", - "phpunit/phpunit": "*" - }, - "type": "library", - "autoload": { - "files": [ - "src/mf2/representative-h-card.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Apache-2.0" - ], - "authors": [ - { - "name": "Aaron Parecki", - "homepage": "http://aaronparecki.com" - } - ], - "keywords": [ - "h-card", - "indieweb", - "mf2", - "microformats" - ], - "support": { - "issues": "https://github.com/indieweb/representative-h-card-php/issues", - "source": "https://github.com/indieweb/representative-h-card-php/tree/0.1.3" - }, - "time": "2023-05-24T15:33:06+00:00" - }, - { - "name": "kwn/number-to-words", - "version": "1.13.0", - "source": { - "type": "git", - "url": "https://github.com/kwn/number-to-words.git", - "reference": "df61dc0f2fffe49f87319c9bcf1f7f44669152c7" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/kwn/number-to-words/zipball/df61dc0f2fffe49f87319c9bcf1f7f44669152c7", - "reference": "df61dc0f2fffe49f87319c9bcf1f7f44669152c7", - "shasum": "" - }, - "require": { - "php": ">=5.6|>=7.1" - }, - "require-dev": { - "phpunit/phpunit": "^5.7.9", - "squizlabs/php_codesniffer": "^3.3.0" + "jakub-onderka/php-code-style": "~1.0", + "jakub-onderka/php-parallel-lint": "~1.0", + "jakub-onderka/php-var-dump-check": "~0.1", + "phpunit/phpunit": "~4.0", + "squizlabs/php_codesniffer": "~1.5" }, "type": "library", "autoload": { "psr-4": { - "NumberToWords\\": "src" + "JakubOnderka\\PhpConsoleHighlighter\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -19628,559 +8517,47 @@ ], "authors": [ { - "name": "Karol Wnuk", - "email": "k.wnuk@ascetic.pl" + "name": "Jakub Onderka", + "email": "acci@acci.cz", + "homepage": "http://www.acci.cz/" } ], - "description": "Multi language standalone PHP number to words converter. Fully tested, open for extensions and new languages.", - "keywords": [ - "currency", - "money", - "number", - "numbers", - "string", - "to", - "words" - ], - "support": { - "issues": "https://github.com/kwn/number-to-words/issues", - "source": "https://github.com/kwn/number-to-words/tree/1.13.0" - }, - "time": "2021-06-23T20:47:44+00:00" - }, - { - "name": "laminas/laminas-escaper", - "version": "2.17.0", - "source": { - "type": "git", - "url": "https://github.com/laminas/laminas-escaper.git", - "reference": "df1ef9503299a8e3920079a16263b578eaf7c3ba" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/df1ef9503299a8e3920079a16263b578eaf7c3ba", - "reference": "df1ef9503299a8e3920079a16263b578eaf7c3ba", - "shasum": "" - }, - "require": { - "ext-ctype": "*", - "ext-mbstring": "*", - "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0" - }, - "conflict": { - "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" - }, - "type": "library", - "autoload": { - "psr-4": { - "Laminas\\Escaper\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs", - "homepage": "https://laminas.dev", - "keywords": [ - "escaper", - "laminas" - ], - "support": { - "chat": "https://laminas.dev/chat", - "docs": "https://docs.laminas.dev/laminas-escaper/", - "forum": "https://discourse.laminas.dev", - "issues": "https://github.com/laminas/laminas-escaper/issues", - "rss": "https://github.com/laminas/laminas-escaper/releases.atom", - "source": "https://github.com/laminas/laminas-escaper" - }, - "funding": [ - { - "url": "https://funding.communitybridge.org/projects/laminas-project", - "type": "community_bridge" - } - ], - "time": "2025-05-06T19:29:36+00:00" - }, - { - "name": "laminas/laminas-feed", - "version": "2.24.0", - "source": { - "type": "git", - "url": "https://github.com/laminas/laminas-feed.git", - "reference": "3df6dfe39ce1f53df64eb12f9fcf9bb29074cd50" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/3df6dfe39ce1f53df64eb12f9fcf9bb29074cd50", - "reference": "3df6dfe39ce1f53df64eb12f9fcf9bb29074cd50", - "shasum": "" - }, - "require": { - "ext-dom": "*", - "ext-filter": "*", - "ext-libxml": "*", - "laminas/laminas-escaper": "^2.9", - "laminas/laminas-stdlib": "^3.6", - "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0" - }, - "conflict": { - "laminas/laminas-servicemanager": "<3.3", - "zendframework/zend-feed": "*" - }, - "require-dev": { - "laminas/laminas-cache": "^2.13.2 || ^3.12", - "laminas/laminas-cache-storage-adapter-memory": "^1.1.0 || ^2.3", - "laminas/laminas-coding-standard": "~2.5.0", - "laminas/laminas-db": "^2.18", - "laminas/laminas-http": "^2.19", - "laminas/laminas-servicemanager": "^3.22.1", - "laminas/laminas-validator": "^2.46", - "phpunit/phpunit": "^10.5.5", - "psalm/plugin-phpunit": "^0.19.0", - "psr/http-message": "^2.0", - "vimeo/psalm": "^5.18.0" - }, - "suggest": { - "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests", - "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub", - "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader", - "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations", - "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent", - "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator" - }, - "type": "library", - "autoload": { - "psr-4": { - "Laminas\\Feed\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "description": "provides functionality for creating and consuming RSS and Atom feeds", - "homepage": "https://laminas.dev", - "keywords": [ - "atom", - "feed", - "laminas", - "rss" - ], - "support": { - "chat": "https://laminas.dev/chat", - "docs": "https://docs.laminas.dev/laminas-feed/", - "forum": "https://discourse.laminas.dev", - "issues": "https://github.com/laminas/laminas-feed/issues", - "rss": "https://github.com/laminas/laminas-feed/releases.atom", - "source": "https://github.com/laminas/laminas-feed" - }, - "funding": [ - { - "url": "https://funding.communitybridge.org/projects/laminas-project", - "type": "community_bridge" - } - ], - "time": "2025-06-25T12:37:12+00:00" - }, - { - "name": "laminas/laminas-stdlib", - "version": "3.20.0", - "source": { - "type": "git", - "url": "https://github.com/laminas/laminas-stdlib.git", - "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/8974a1213be42c3e2f70b2c27b17f910291ab2f4", - "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4", - "shasum": "" - }, - "require": { - "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0" - }, - "conflict": { - "zendframework/zend-stdlib": "*" - }, - "require-dev": { - "laminas/laminas-coding-standard": "^3.0", - "phpbench/phpbench": "^1.3.1", - "phpunit/phpunit": "^10.5.38", - "psalm/plugin-phpunit": "^0.19.0", - "vimeo/psalm": "^5.26.1" - }, - "type": "library", - "autoload": { - "psr-4": { - "Laminas\\Stdlib\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "description": "SPL extensions, array utilities, error handlers, and more", - "homepage": "https://laminas.dev", - "keywords": [ - "laminas", - "stdlib" - ], - "support": { - "chat": "https://laminas.dev/chat", - "docs": "https://docs.laminas.dev/laminas-stdlib/", - "forum": "https://discourse.laminas.dev", - "issues": "https://github.com/laminas/laminas-stdlib/issues", - "rss": "https://github.com/laminas/laminas-stdlib/releases.atom", - "source": "https://github.com/laminas/laminas-stdlib" - }, - "funding": [ - { - "url": "https://funding.communitybridge.org/projects/laminas-project", - "type": "community_bridge" - } - ], - "time": "2024-10-29T13:46:07+00:00" - }, - { - "name": "laminas/laminas-xml", - "version": "1.7.0", - "source": { - "type": "git", - "url": "https://github.com/laminas/laminas-xml.git", - "reference": "3a7850dec668a89807accfa4826a2ff11497fe74" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-xml/zipball/3a7850dec668a89807accfa4826a2ff11497fe74", - "reference": "3a7850dec668a89807accfa4826a2ff11497fe74", - "shasum": "" - }, - "require": { - "ext-dom": "*", - "ext-simplexml": "*", - "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0" - }, - "conflict": { - "zendframework/zendxml": "*" - }, - "require-dev": { - "ext-iconv": "*", - "laminas/laminas-coding-standard": "~1.0.0", - "phpunit/phpunit": "^10.5.35 || ^11.4", - "squizlabs/php_codesniffer": "3.10.3 as 2.9999999.9999999" - }, - "type": "library", - "autoload": { - "psr-4": { - "Laminas\\Xml\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "description": "Utility library for XML usage, best practices, and security in PHP", - "homepage": "https://laminas.dev", - "keywords": [ - "laminas", - "security", - "xml" - ], - "support": { - "chat": "https://laminas.dev/chat", - "forum": "https://discourse.laminas.dev", - "issues": "https://github.com/laminas/laminas-xml/issues", - "rss": "https://github.com/laminas/laminas-xml/releases.atom", - "source": "https://github.com/laminas/laminas-xml" - }, - "funding": [ - { - "url": "https://funding.communitybridge.org/projects/laminas-project", - "type": "community_bridge" - } - ], - "time": "2024-10-11T08:45:59+00:00" - }, - { - "name": "lcobucci/clock", - "version": "3.0.0", - "source": { - "type": "git", - "url": "https://github.com/lcobucci/clock.git", - "reference": "039ef98c6b57b101d10bd11d8fdfda12cbd996dc" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/lcobucci/clock/zipball/039ef98c6b57b101d10bd11d8fdfda12cbd996dc", - "reference": "039ef98c6b57b101d10bd11d8fdfda12cbd996dc", - "shasum": "" - }, - "require": { - "php": "~8.1.0 || ~8.2.0", - "psr/clock": "^1.0" - }, - "provide": { - "psr/clock-implementation": "1.0" - }, - "require-dev": { - "infection/infection": "^0.26", - "lcobucci/coding-standard": "^9.0", - "phpstan/extension-installer": "^1.2", - "phpstan/phpstan": "^1.9.4", - "phpstan/phpstan-deprecation-rules": "^1.1.1", - "phpstan/phpstan-phpunit": "^1.3.2", - "phpstan/phpstan-strict-rules": "^1.4.4", - "phpunit/phpunit": "^9.5.27" - }, - "type": "library", - "autoload": { - "psr-4": { - "Lcobucci\\Clock\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Luís Cobucci", - "email": "lcobucci@gmail.com" - } - ], - "description": "Yet another clock abstraction", - "support": { - "issues": "https://github.com/lcobucci/clock/issues", - "source": "https://github.com/lcobucci/clock/tree/3.0.0" - }, - "funding": [ - { - "url": "https://github.com/lcobucci", - "type": "github" - }, - { - "url": "https://www.patreon.com/lcobucci", - "type": "patreon" - } - ], - "time": "2022-12-19T15:00:24+00:00" - }, - { - "name": "lcobucci/jwt", - "version": "4.3.0", - "source": { - "type": "git", - "url": "https://github.com/lcobucci/jwt.git", - "reference": "4d7de2fe0d51a96418c0d04004986e410e87f6b4" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/lcobucci/jwt/zipball/4d7de2fe0d51a96418c0d04004986e410e87f6b4", - "reference": "4d7de2fe0d51a96418c0d04004986e410e87f6b4", - "shasum": "" - }, - "require": { - "ext-hash": "*", - "ext-json": "*", - "ext-mbstring": "*", - "ext-openssl": "*", - "ext-sodium": "*", - "lcobucci/clock": "^2.0 || ^3.0", - "php": "^7.4 || ^8.0" - }, - "require-dev": { - "infection/infection": "^0.21", - "lcobucci/coding-standard": "^6.0", - "mikey179/vfsstream": "^1.6.7", - "phpbench/phpbench": "^1.2", - "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", - "phpunit/php-invoker": "^3.1", - "phpunit/phpunit": "^9.5" - }, - "type": "library", - "autoload": { - "psr-4": { - "Lcobucci\\JWT\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Luís Cobucci", - "email": "lcobucci@gmail.com", - "role": "Developer" - } - ], - "description": "A simple library to work with JSON Web Token and JSON Web Signature", - "keywords": [ - "JWS", - "jwt" - ], - "support": { - "issues": "https://github.com/lcobucci/jwt/issues", - "source": "https://github.com/lcobucci/jwt/tree/4.3.0" - }, - "funding": [ - { - "url": "https://github.com/lcobucci", - "type": "github" - }, - { - "url": "https://www.patreon.com/lcobucci", - "type": "patreon" - } - ], - "time": "2023-01-02T13:28:00+00:00" - }, - { - "name": "league/commonmark", - "version": "1.6.7", - "source": { - "type": "git", - "url": "https://github.com/thephpleague/commonmark.git", - "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/2b8185c13bc9578367a5bf901881d1c1b5bbd09b", - "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b", - "shasum": "" - }, - "require": { - "ext-mbstring": "*", - "php": "^7.1 || ^8.0" - }, - "conflict": { - "scrutinizer/ocular": "1.7.*" - }, - "require-dev": { - "cebe/markdown": "~1.0", - "commonmark/commonmark.js": "0.29.2", - "erusev/parsedown": "~1.0", - "ext-json": "*", - "github/gfm": "0.29.0", - "michelf/php-markdown": "~1.4", - "mikehaertl/php-shellcommand": "^1.4", - "phpstan/phpstan": "^0.12.90", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2", - "scrutinizer/ocular": "^1.5", - "symfony/finder": "^4.2" - }, - "bin": [ - "bin/commonmark" - ], - "type": "library", - "autoload": { - "psr-4": { - "League\\CommonMark\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Colin O'Dell", - "email": "colinodell@gmail.com", - "homepage": "https://www.colinodell.com", - "role": "Lead Developer" - } - ], - "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)", - "homepage": "https://commonmark.thephpleague.com", - "keywords": [ - "commonmark", - "flavored", - "gfm", - "github", - "github-flavored", - "markdown", - "md", - "parser" - ], - "support": { - "docs": "https://commonmark.thephpleague.com/", - "issues": "https://github.com/thephpleague/commonmark/issues", - "rss": "https://github.com/thephpleague/commonmark/releases.atom", - "source": "https://github.com/thephpleague/commonmark" - }, - "funding": [ - { - "url": "https://www.colinodell.com/sponsor", - "type": "custom" - }, - { - "url": "https://www.paypal.me/colinpodell/10.00", - "type": "custom" - }, - { - "url": "https://github.com/colinodell", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/league/commonmark", - "type": "tidelift" - } - ], - "time": "2022-01-13T17:18:13+00:00" + "description": "Highlight PHP code in terminal", + "time": "2018-09-29T18:48:56+00:00" }, { "name": "league/container", - "version": "4.2.5", + "version": "2.4.1", "source": { "type": "git", "url": "https://github.com/thephpleague/container.git", - "reference": "d3cebb0ff4685ff61c749e54b27db49319e2ec00" + "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/container/zipball/d3cebb0ff4685ff61c749e54b27db49319e2ec00", - "reference": "d3cebb0ff4685ff61c749e54b27db49319e2ec00", + "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0", + "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0", "shasum": "" }, "require": { - "php": "^7.2 || ^8.0", - "psr/container": "^1.1 || ^2.0" + "container-interop/container-interop": "^1.2", + "php": "^5.4.0 || ^7.0" }, "provide": { + "container-interop/container-interop-implementation": "^1.2", "psr/container-implementation": "^1.0" }, "replace": { "orno/di": "~2.0" }, "require-dev": { - "nette/php-generator": "^3.4", - "nikic/php-parser": "^4.10", - "phpstan/phpstan": "^0.12.47", - "phpunit/phpunit": "^8.5.17", - "roave/security-advisories": "dev-latest", - "scrutinizer/ocular": "^1.8", - "squizlabs/php_codesniffer": "^3.6" + "phpunit/phpunit": "4.*" }, "type": "library", "extra": { "branch-alias": { - "dev-1.x": "1.x-dev", "dev-2.x": "2.x-dev", - "dev-3.x": "3.x-dev", - "dev-4.x": "4.x-dev", - "dev-master": "4.x-dev" + "dev-1.x": "1.x-dev" } }, "autoload": { @@ -20195,7 +8572,8 @@ "authors": [ { "name": "Phil Bennett", - "email": "mail@philbennett.co.uk", + "email": "philipobenito@gmail.com", + "homepage": "http://www.philipobenito.com", "role": "Developer" } ], @@ -20210,56 +8588,38 @@ "provider", "service" ], - "support": { - "issues": "https://github.com/thephpleague/container/issues", - "source": "https://github.com/thephpleague/container/tree/4.2.5" - }, - "funding": [ - { - "url": "https://github.com/philipobenito", - "type": "github" - } - ], - "time": "2025-05-20T12:55:37+00:00" + "time": "2017-05-10T09:20:27+00:00" }, { "name": "league/csv", - "version": "9.24.1", + "version": "9.3.0", "source": { "type": "git", "url": "https://github.com/thephpleague/csv.git", - "reference": "e0221a3f16aa2a823047d59fab5809d552e29bc8" + "reference": "d16f85d1f958a765844db4bc7174017edf2dd637" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/csv/zipball/e0221a3f16aa2a823047d59fab5809d552e29bc8", - "reference": "e0221a3f16aa2a823047d59fab5809d552e29bc8", + "url": "https://api.github.com/repos/thephpleague/csv/zipball/d16f85d1f958a765844db4bc7174017edf2dd637", + "reference": "d16f85d1f958a765844db4bc7174017edf2dd637", "shasum": "" }, "require": { - "ext-filter": "*", - "php": "^8.1.2" + "ext-dom": "*", + "ext-json": "*", + "ext-mbstring": "*", + "php": ">=7.0.10" }, "require-dev": { - "ext-dom": "*", - "ext-xdebug": "*", - "friendsofphp/php-cs-fixer": "^3.75.0", - "phpbench/phpbench": "^1.4.1", - "phpstan/phpstan": "^1.12.27", - "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" + "ext-curl": "*", + "friendsofphp/php-cs-fixer": "^2.12", + "phpstan/phpstan": "^0.9.2", + "phpstan/phpstan-phpunit": "^0.9.4", + "phpstan/phpstan-strict-rules": "^0.9.0", + "phpunit/phpunit": "^6.0" }, "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-iconv": "Needed to ease transcoding CSV using iconv stream filters" }, "type": "library", "extra": { @@ -20268,12 +8628,12 @@ } }, "autoload": { - "files": [ - "src/functions_include.php" - ], "psr-4": { "League\\Csv\\": "src" - } + }, + "files": [ + "src/functions_include.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -20287,173 +8647,42 @@ "role": "Developer" } ], - "description": "CSV data manipulation made easy in PHP", - "homepage": "https://csv.thephpleague.com", + "description": "Csv data manipulation made easy in PHP", + "homepage": "http://csv.thephpleague.com", "keywords": [ - "convert", "csv", "export", "filter", "import", "read", - "transform", "write" ], - "support": { - "docs": "https://csv.thephpleague.com", - "issues": "https://github.com/thephpleague/csv/issues", - "rss": "https://github.com/thephpleague/csv/releases.atom", - "source": "https://github.com/thephpleague/csv" - }, - "funding": [ - { - "url": "https://github.com/sponsors/nyamsprod", - "type": "github" - } - ], - "time": "2025-06-25T14:53:51+00:00" - }, - { - "name": "league/oauth2-client", - "version": "2.8.1", - "source": { - "type": "git", - "url": "https://github.com/thephpleague/oauth2-client.git", - "reference": "9df2924ca644736c835fc60466a3a60390d334f9" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/thephpleague/oauth2-client/zipball/9df2924ca644736c835fc60466a3a60390d334f9", - "reference": "9df2924ca644736c835fc60466a3a60390d334f9", - "shasum": "" - }, - "require": { - "ext-json": "*", - "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5", - "php": "^7.1 || >=8.0.0 <8.5.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" - }, - "type": "library", - "autoload": { - "psr-4": { - "League\\OAuth2\\Client\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Alex Bilbie", - "email": "hello@alexbilbie.com", - "homepage": "http://www.alexbilbie.com", - "role": "Developer" - }, - { - "name": "Woody Gilk", - "homepage": "https://github.com/shadowhand", - "role": "Contributor" - } - ], - "description": "OAuth 2.0 Client Library", - "keywords": [ - "Authentication", - "SSO", - "authorization", - "identity", - "idp", - "oauth", - "oauth2", - "single sign on" - ], - "support": { - "issues": "https://github.com/thephpleague/oauth2-client/issues", - "source": "https://github.com/thephpleague/oauth2-client/tree/2.8.1" - }, - "time": "2025-02-26T04:37:30+00:00" - }, - { - "name": "league/oauth2-facebook", - "version": "2.2.0", - "source": { - "type": "git", - "url": "https://github.com/thephpleague/oauth2-facebook.git", - "reference": "ec6d62a00b548c6cd56d7b734346b9e6befbfbbb" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/thephpleague/oauth2-facebook/zipball/ec6d62a00b548c6cd56d7b734346b9e6befbfbbb", - "reference": "ec6d62a00b548c6cd56d7b734346b9e6befbfbbb", - "shasum": "" - }, - "require": { - "league/oauth2-client": "^2.0", - "php": ">=7.3" - }, - "require-dev": { - "ext-json": "*", - "mockery/mockery": "~1.3.0", - "phpunit/phpunit": "^9.4", - "squizlabs/php_codesniffer": "~3.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "League\\OAuth2\\Client\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Sammy Kaye Powers", - "email": "me@sammyk.me", - "homepage": "http://www.sammyk.me" - } - ], - "description": "Facebook OAuth 2.0 Client Provider for The PHP League OAuth2-Client", - "keywords": [ - "Authentication", - "authorization", - "client", - "facebook", - "oauth", - "oauth2" - ], - "support": { - "issues": "https://github.com/thephpleague/oauth2-facebook/issues", - "source": "https://github.com/thephpleague/oauth2-facebook/tree/2.2.0" - }, - "time": "2022-02-24T18:45:07+00:00" + "time": "2019-07-30T14:39:11+00:00" }, { "name": "masterminds/html5", - "version": "2.9.0", + "version": "2.7.0", "source": { "type": "git", "url": "https://github.com/Masterminds/html5-php.git", - "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6" + "reference": "104443ad663d15981225f99532ba73c2f1d6b6f2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6", - "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6", + "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/104443ad663d15981225f99532ba73c2f1d6b6f2", + "reference": "104443ad663d15981225f99532ba73c2f1d6b6f2", "shasum": "" }, "require": { + "ext-ctype": "*", "ext-dom": "*", + "ext-libxml": "*", "php": ">=5.3.0" }, "require-dev": { - "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9" + "phpunit/phpunit": "^4.8.35", + "sami/sami": "~2.0", + "satooshi/php-coveralls": "1.0.*" }, "type": "library", "extra": { @@ -20495,852 +8724,28 @@ "serializer", "xml" ], - "support": { - "issues": "https://github.com/Masterminds/html5-php/issues", - "source": "https://github.com/Masterminds/html5-php/tree/2.9.0" - }, - "time": "2024-03-31T07:05:07+00:00" - }, - { - "name": "matomo/device-detector", - "version": "6.4.6", - "source": { - "type": "git", - "url": "https://github.com/matomo-org/device-detector.git", - "reference": "6f07f615199851548db47a900815d2ea2cdcde08" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/matomo-org/device-detector/zipball/6f07f615199851548db47a900815d2ea2cdcde08", - "reference": "6f07f615199851548db47a900815d2ea2cdcde08", - "shasum": "" - }, - "require": { - "mustangostang/spyc": "*", - "php": "^7.2|^8.0" - }, - "replace": { - "piwik/device-detector": "self.version" - }, - "require-dev": { - "matthiasmullie/scrapbook": "^1.4.7", - "mayflower/mo4-coding-standard": "^v9.0.0", - "phpstan/phpstan": "^1.10.44", - "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": { - "doctrine/cache": "Can directly be used for caching purpose", - "ext-yaml": "Necessary for using the Pecl YAML parser" - }, - "type": "library", - "autoload": { - "psr-4": { - "DeviceDetector\\": "" - }, - "exclude-from-classmap": [ - "Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "LGPL-3.0-or-later" - ], - "authors": [ - { - "name": "The Matomo Team", - "email": "hello@matomo.org", - "homepage": "https://matomo.org/team/" - } - ], - "description": "The Universal Device Detection library, that parses User Agents and detects devices (desktop, tablet, mobile, tv, cars, console, etc.), clients (browsers, media players, mobile apps, feed readers, libraries, etc), operating systems, devices, brands and models.", - "homepage": "https://matomo.org", - "keywords": [ - "devicedetection", - "parser", - "useragent" - ], - "support": { - "forum": "https://forum.matomo.org/", - "issues": "https://github.com/matomo-org/device-detector/issues", - "source": "https://github.com/matomo-org/matomo", - "wiki": "https://dev.matomo.org/" - }, - "time": "2025-06-10T10:00:59+00:00" - }, - { - "name": "maxmind-db/reader", - "version": "v1.12.1", - "source": { - "type": "git", - "url": "https://github.com/maxmind/MaxMind-DB-Reader-php.git", - "reference": "815939e006b7e68062b540ec9e86aaa8be2b6ce4" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/815939e006b7e68062b540ec9e86aaa8be2b6ce4", - "reference": "815939e006b7e68062b540ec9e86aaa8be2b6ce4", - "shasum": "" - }, - "require": { - "php": ">=7.2" - }, - "conflict": { - "ext-maxminddb": "<1.11.1 || >=2.0.0" - }, - "require-dev": { - "friendsofphp/php-cs-fixer": "3.*", - "phpstan/phpstan": "*", - "phpunit/phpunit": ">=8.0.0,<10.0.0", - "squizlabs/php_codesniffer": "3.*" - }, - "suggest": { - "ext-bcmath": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder", - "ext-gmp": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder", - "ext-maxminddb": "A C-based database decoder that provides significantly faster lookups" - }, - "type": "library", - "autoload": { - "psr-4": { - "MaxMind\\Db\\": "src/MaxMind/Db" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Apache-2.0" - ], - "authors": [ - { - "name": "Gregory J. Oschwald", - "email": "goschwald@maxmind.com", - "homepage": "https://www.maxmind.com/" - } - ], - "description": "MaxMind DB Reader API", - "homepage": "https://github.com/maxmind/MaxMind-DB-Reader-php", - "keywords": [ - "database", - "geoip", - "geoip2", - "geolocation", - "maxmind" - ], - "support": { - "issues": "https://github.com/maxmind/MaxMind-DB-Reader-php/issues", - "source": "https://github.com/maxmind/MaxMind-DB-Reader-php/tree/v1.12.1" - }, - "time": "2025-05-05T20:56:32+00:00" - }, - { - "name": "maxmind/web-service-common", - "version": "v0.10.0", - "source": { - "type": "git", - "url": "https://github.com/maxmind/web-service-common-php.git", - "reference": "d7c7c42fc31bff26e0ded73a6e187bcfb193f9c4" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/maxmind/web-service-common-php/zipball/d7c7c42fc31bff26e0ded73a6e187bcfb193f9c4", - "reference": "d7c7c42fc31bff26e0ded73a6e187bcfb193f9c4", - "shasum": "" - }, - "require": { - "composer/ca-bundle": "^1.0.3", - "ext-curl": "*", - "ext-json": "*", - "php": ">=8.1" - }, - "require-dev": { - "friendsofphp/php-cs-fixer": "3.*", - "phpstan/phpstan": "*", - "phpunit/phpunit": "^8.0 || ^9.0", - "squizlabs/php_codesniffer": "3.*" - }, - "type": "library", - "autoload": { - "psr-4": { - "MaxMind\\Exception\\": "src/Exception", - "MaxMind\\WebService\\": "src/WebService" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Apache-2.0" - ], - "authors": [ - { - "name": "Gregory Oschwald", - "email": "goschwald@maxmind.com" - } - ], - "description": "Internal MaxMind Web Service API", - "homepage": "https://github.com/maxmind/web-service-common-php", - "support": { - "issues": "https://github.com/maxmind/web-service-common-php/issues", - "source": "https://github.com/maxmind/web-service-common-php/tree/v0.10.0" - }, - "time": "2024-11-14T23:14:52+00:00" - }, - { - "name": "mck89/peast", - "version": "v1.17.2", - "source": { - "type": "git", - "url": "https://github.com/mck89/peast.git", - "reference": "465810689c477fbba17f4f949b75e4d0bdab13ea" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/mck89/peast/zipball/465810689c477fbba17f4f949b75e4d0bdab13ea", - "reference": "465810689c477fbba17f4f949b75e4d0bdab13ea", - "shasum": "" - }, - "require": { - "ext-mbstring": "*", - "php": ">=5.4.0" - }, - "require-dev": { - "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.17.2-dev" - } - }, - "autoload": { - "psr-4": { - "Peast\\": "lib/Peast/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Marco Marchiò", - "email": "marco.mm89@gmail.com" - } - ], - "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" - }, - "time": "2025-07-01T09:30:45+00:00" - }, - { - "name": "mf2/mf2", - "version": "v0.5.0", - "source": { - "type": "git", - "url": "https://github.com/microformats/php-mf2.git", - "reference": "ddc56de6be62ed4a21f569de9b80e17af678ca50" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/microformats/php-mf2/zipball/ddc56de6be62ed4a21f569de9b80e17af678ca50", - "reference": "ddc56de6be62ed4a21f569de9b80e17af678ca50", - "shasum": "" - }, - "require": { - "php": ">=5.6.0" - }, - "require-dev": { - "dealerdirect/phpcodesniffer-composer-installer": "^0.7", - "mf2/tests": "dev-master#e9e2b905821ba0a5b59dab1a8eaf40634ce9cd49", - "phpcompatibility/php-compatibility": "^9.3", - "phpunit/phpunit": "^5.7", - "squizlabs/php_codesniffer": "^3.6.2" - }, - "suggest": { - "barnabywalters/mf-cleaner": "To more easily handle the canonical data php-mf2 gives you", - "masterminds/html5": "Alternative HTML parser for PHP, for better HTML5 support." - }, - "bin": [ - "bin/fetch-mf2", - "bin/parse-mf2" - ], - "type": "library", - "autoload": { - "files": [ - "Mf2/Parser.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "CC0-1.0" - ], - "authors": [ - { - "name": "Barnaby Walters", - "homepage": "http://waterpigs.co.uk" - } - ], - "description": "A pure, generic microformats2 parser — makes HTML as easy to consume as a JSON API", - "keywords": [ - "html", - "microformats", - "microformats 2", - "parser", - "semantic" - ], - "support": { - "issues": "https://github.com/microformats/php-mf2/issues", - "source": "https://github.com/microformats/php-mf2/tree/v0.5.0" - }, - "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", - "source": { - "type": "git", - "url": "https://github.com/mkalkbrenner/php-htmldiff.git", - "reference": "3a714b48c9c3d3730baaf6d3949691e654cd37c9" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/mkalkbrenner/php-htmldiff/zipball/3a714b48c9c3d3730baaf6d3949691e654cd37c9", - "reference": "3a714b48c9c3d3730baaf6d3949691e654cd37c9", - "shasum": "" - }, - "require": { - "caxy/php-htmldiff": ">=0.0.6", - "php": ">=5.5.0" - }, - "type": "library", - "autoload": { - "files": [ - "src/HtmlDiffAdvancedInterface.php", - "src/HtmlDiffAdvanced.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GNU General Public License V2" - ], - "description": "An add-on for the php-htmldiff library for comparing two HTML files/snippets and highlighting the differences using simple HTML.", - "homepage": "https://github.com/mkalkbrenner/php-htmldiff", - "keywords": [ - "diff", - "html" - ], - "support": { - "issues": "https://github.com/mkalkbrenner/php-htmldiff/issues", - "source": "https://github.com/mkalkbrenner/php-htmldiff/tree/master" - }, - "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", - "source": { - "type": "git", - "url": "https://github.com/mtownsend5512/xml-to-array.git", - "reference": "0734720a8462dba36d90fb8b2723bf46af0091f4" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/mtownsend5512/xml-to-array/zipball/0734720a8462dba36d90fb8b2723bf46af0091f4", - "reference": "0734720a8462dba36d90fb8b2723bf46af0091f4", - "shasum": "" - }, - "require": { - "php": "~7.0|~8.0" - }, - "require-dev": { - "phpunit/phpunit": "^6.4" - }, - "type": "library", - "autoload": { - "files": [ - "src/helpers.php" - ], - "psr-4": { - "Mtownsend\\XmlToArray\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Mark Townsend", - "email": "mtownsend5512@gmail.com", - "role": "Developer" - } - ], - "description": "Easily convert valid xml to a php array.", - "keywords": [ - "array", - "convert", - "laravel", - "xml" - ], - "support": { - "issues": "https://github.com/mtownsend5512/xml-to-array/issues", - "source": "https://github.com/mtownsend5512/xml-to-array/tree/2.0.0" - }, - "time": "2021-02-27T22:39:18+00:00" - }, - { - "name": "mustangostang/spyc", - "version": "0.6.3", - "source": { - "type": "git", - "url": "https://github.com/mustangostang/spyc.git", - "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/mustangostang/spyc/zipball/4627c838b16550b666d15aeae1e5289dd5b77da0", - "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0", - "shasum": "" - }, - "require": { - "php": ">=5.3.1" - }, - "require-dev": { - "phpunit/phpunit": "4.3.*@dev" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "0.5.x-dev" - } - }, - "autoload": { - "files": [ - "Spyc.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "mustangostang", - "email": "vlad.andersen@gmail.com" - } - ], - "description": "A simple YAML loader/dumper class for PHP", - "homepage": "https://github.com/mustangostang/spyc/", - "keywords": [ - "spyc", - "yaml", - "yml" - ], - "support": { - "issues": "https://github.com/mustangostang/spyc/issues", - "source": "https://github.com/mustangostang/spyc/tree/0.6.3" - }, - "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" + "time": "2019-07-25T07:03:26+00:00" }, { "name": "nikic/php-parser", - "version": "v5.6.0", + "version": "v4.2.3", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "221b0d0fdf1369c71047ad1d18bb5880017bbc56" + "reference": "e612609022e935f3d0337c1295176505b41188c8" }, "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/e612609022e935f3d0337c1295176505b41188c8", + "reference": "e612609022e935f3d0337c1295176505b41188c8", "shasum": "" }, "require": { - "ext-ctype": "*", - "ext-json": "*", "ext-tokenizer": "*", - "php": ">=7.4" + "php": ">=7.0" }, "require-dev": { - "ircmaxell/php-yacc": "^0.0.7", - "phpunit/phpunit": "^9.0" + "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0" }, "bin": [ "bin/php-parse" @@ -21348,7 +8753,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "5.0-dev" + "dev-master": "4.2-dev" } }, "autoload": { @@ -21370,379 +8775,24 @@ "parser", "php" ], - "support": { - "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v5.6.0" - }, - "time": "2025-07-27T20:03:57+00:00" - }, - { - "name": "p3k/http", - "version": "0.1.13", - "source": { - "type": "git", - "url": "https://github.com/aaronpk/p3k-http.git", - "reference": "ae4988ba19f4bc57ca3fe1f6dcd2087478fea53a" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/aaronpk/p3k-http/zipball/ae4988ba19f4bc57ca3fe1f6dcd2087478fea53a", - "reference": "ae4988ba19f4bc57ca3fe1f6dcd2087478fea53a", - "shasum": "" - }, - "require": { - "indieweb/link-rel-parser": "0.1.*", - "mf2/mf2": ">=0.3.2" - }, - "type": "library", - "autoload": { - "psr-4": { - "p3k\\": "src/p3k" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Aaron Parecki", - "homepage": "https://aaronparecki.com" - } - ], - "description": "A simple wrapper API around the PHP curl functions", - "homepage": "https://github.com/aaronpk/p3k-http", - "support": { - "issues": "https://github.com/aaronpk/p3k-http/issues", - "source": "https://github.com/aaronpk/p3k-http/tree/0.1.13" - }, - "time": "2024-10-20T19:46:46+00:00" - }, - { - "name": "p3k/micropub", - "version": "0.0.3", - "source": { - "type": "git", - "url": "https://github.com/aaronpk/p3k-micropub.git", - "reference": "9e3b2f7c1d4d40fef5cbd955689b8e7392a6976d" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/aaronpk/p3k-micropub/zipball/9e3b2f7c1d4d40fef5cbd955689b8e7392a6976d", - "reference": "9e3b2f7c1d4d40fef5cbd955689b8e7392a6976d", - "shasum": "" - }, - "require": { - "php": ">=5.6.0" - }, - "require-dev": { - "phpunit/phpunit": "^5" - }, - "type": "library", - "autoload": { - "psr-0": { - "p3k": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Apache-2.0" - ], - "authors": [ - { - "name": "Aaron Parecki", - "homepage": "https://aaronparecki.com" - } - ], - "description": "Utilities to help handle Micropub requests when building servers and clients", - "keywords": [ - "indieweb", - "micropub", - "p3k" - ], - "support": { - "issues": "https://github.com/aaronpk/p3k-micropub/issues", - "source": "https://github.com/aaronpk/p3k-micropub/tree/master" - }, - "time": "2018-04-16T14:05:38+00:00" - }, - { - "name": "p3k/picofeed", - "version": "v0.1.40", - "source": { - "type": "git", - "url": "https://github.com/aaronpk/picofeed.git", - "reference": "356fd66d48779193b10ac28532cb4a4e11bb801c" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/aaronpk/picofeed/zipball/356fd66d48779193b10ac28532cb4a4e11bb801c", - "reference": "356fd66d48779193b10ac28532cb4a4e11bb801c", - "shasum": "" - }, - "require": { - "ext-dom": "*", - "ext-iconv": "*", - "ext-libxml": "*", - "ext-simplexml": "*", - "ext-xml": "*", - "laminas/laminas-xml": "^1.2", - "php": ">=5.3.0" - }, - "replace": { - "miniflux/picofeed": "0.1.35" - }, - "require-dev": { - "phpdocumentor/reflection-docblock": "2.0.4", - "phpunit/phpunit": "4.8.26", - "symfony/yaml": "2.8.7" - }, - "suggest": { - "ext-curl": "PicoFeed will use cURL if present" - }, - "bin": [ - "picofeed" - ], - "type": "library", - "autoload": { - "psr-0": { - "PicoFeed": "lib/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Frédéric Guillot" - } - ], - "description": "Modern library to handle RSS/Atom feeds", - "homepage": "https://github.com/aaronpk/picoFeed", - "support": { - "issues": "https://github.com/aaronpk/picofeed/issues", - "source": "https://github.com/aaronpk/picofeed/tree/v0.1.40" - }, - "time": "2020-04-25T17:48:36+00:00" - }, - { - "name": "p3k/timezone", - "version": "0.1.0", - "source": { - "type": "git", - "url": "https://github.com/aaronpk/p3k-timezone.git", - "reference": "68d3490d896f98cf0727dc937f0bb6b045050c83" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/aaronpk/p3k-timezone/zipball/68d3490d896f98cf0727dc937f0bb6b045050c83", - "reference": "68d3490d896f98cf0727dc937f0bb6b045050c83", - "shasum": "" - }, - "require": { - "php": ">=5.4.0" - }, - "type": "library", - "autoload": { - "files": [ - "src/p3k/Timezone.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Apache-2.0" - ], - "authors": [ - { - "name": "Aaron Parecki", - "homepage": "https://aaronparecki.com" - } - ], - "description": "Find the timezone of a given location", - "homepage": "https://github.com/aaronpk/p3k-timezone", - "keywords": [ - "date", - "p3k", - "timezone" - ], - "support": { - "issues": "https://github.com/aaronpk/p3k-timezone/issues", - "source": "https://github.com/aaronpk/p3k-timezone/tree/0.1.0" - }, - "time": "2017-01-12T17:30:08+00:00" - }, - { - "name": "p3k/utils", - "version": "1.2.1", - "source": { - "type": "git", - "url": "https://github.com/aaronpk/p3k-utils.git", - "reference": "8436f02ec02d916177a23250ae32b34ae5316942" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/aaronpk/p3k-utils/zipball/8436f02ec02d916177a23250ae32b34ae5316942", - "reference": "8436f02ec02d916177a23250ae32b34ae5316942", - "shasum": "" - }, - "require": { - "php": ">=5.5" - }, - "require-dev": { - "phpunit/phpunit": "^4.8.13", - "predis/predis": "1.1.*" - }, - "type": "library", - "autoload": { - "files": [ - "src/global.php", - "src/url.php", - "src/utils.php", - "src/date.php", - "src/cache.php", - "src/geo.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Aaron Parecki", - "homepage": "https://aaronparecki.com" - } - ], - "description": "Some helpful functions used by https://p3k.io projects", - "homepage": "https://github.com/aaronpk/p3k-utils", - "support": { - "issues": "https://github.com/aaronpk/p3k-utils/issues", - "source": "https://github.com/aaronpk/p3k-utils/tree/1.2.1" - }, - "time": "2021-11-16T21:44:23+00:00" - }, - { - "name": "p3k/websub", - "version": "0.0.1", - "source": { - "type": "git", - "url": "https://github.com/aaronpk/p3k-websub.git", - "reference": "3e37fbb3e8865f159b8adaaab9569e5984bc8890" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/aaronpk/p3k-websub/zipball/3e37fbb3e8865f159b8adaaab9569e5984bc8890", - "reference": "3e37fbb3e8865f159b8adaaab9569e5984bc8890", - "shasum": "" - }, - "require": { - "indieweb/link-rel-parser": "0.1.*", - "p3k/http": "0.1.*", - "p3k/utils": "1.*" - }, - "require-dev": { - "predis/predis": "1.*" - }, - "type": "library", - "autoload": { - "psr-4": { - "p3k\\WebSub\\": "src/p3k/WebSub" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Aaron Parecki", - "homepage": "https://aaronparecki.com" - } - ], - "description": "A library for subscribing to and publishing WebSub feeds", - "homepage": "https://github.com/aaronpk/p3k-websub", - "keywords": [ - "feed", - "indieweb", - "p3k", - "pubsub", - "pubsubhubbub", - "websub" - ], - "support": { - "issues": "https://github.com/aaronpk/p3k-websub/issues", - "source": "https://github.com/aaronpk/p3k-websub/tree/0.0.1" - }, - "time": "2017-05-08T15:26:11+00:00" - }, - { - "name": "p3k/xray", - "version": "v1.15.1", - "source": { - "type": "git", - "url": "https://github.com/aaronpk/XRay.git", - "reference": "a4cda273d34c56317197511d0f4799f5f00465e9" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/aaronpk/XRay/zipball/a4cda273d34c56317197511d0f4799f5f00465e9", - "reference": "a4cda273d34c56317197511d0f4799f5f00465e9", - "shasum": "" - }, - "require": { - "cebe/markdown": "^1.1.0", - "ezyang/htmlpurifier": "^4.10", - "indieweb/link-rel-parser": "^0.1.0", - "masterminds/html5": "^2.3", - "mf2/mf2": "^0.4||^0.5", - "p3k/http": "^0.1.0", - "p3k/picofeed": "^0.1.0", - "p3k/timezone": "^0.1.0" - }, - "require-dev": { - "league/plates": "^3.0", - "league/route": "^1.0", - "phpunit/phpunit": "^8.0.0|^9.0.0" - }, - "type": "library", - "autoload": { - "files": [ - "lib/helpers.php", - "lib/XRay.php" - ], - "psr-4": { - "p3k\\XRay\\": "lib/XRay" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "description": "X-Ray returns structured data from any URL", - "homepage": "https://github.com/aaronpk/XRay", - "support": { - "issues": "https://github.com/aaronpk/XRay/issues", - "source": "https://github.com/aaronpk/XRay/tree/v1.15.1" - }, - "time": "2024-08-31T16:21:43+00:00" + "time": "2019-08-12T20:17:41+00:00" }, { "name": "paragonie/random_compat", - "version": "v9.99.100", + "version": "v9.99.99", "source": { "type": "git", "url": "https://github.com/paragonie/random_compat.git", - "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a" + "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a", - "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a", + "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95", + "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95", "shasum": "" }, "require": { - "php": ">= 7" + "php": "^7" }, "require-dev": { "phpunit/phpunit": "4.*|5.*", @@ -21770,25 +8820,20 @@ "pseudorandom", "random" ], - "support": { - "email": "info@paragonie.com", - "issues": "https://github.com/paragonie/random_compat/issues", - "source": "https://github.com/paragonie/random_compat" - }, - "time": "2020-10-15T08:29:30+00:00" + "time": "2018-07-02T15:55:56+00:00" }, { "name": "pear/archive_tar", - "version": "1.5.0", + "version": "1.4.7", "source": { "type": "git", "url": "https://github.com/pear/Archive_Tar.git", - "reference": "b439c859564f5cbb0f64ad6002d0afe84a889602" + "reference": "7e48add6f8edc3027dd98ad15964b1a28fd0c845" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/b439c859564f5cbb0f64ad6002d0afe84a889602", - "reference": "b439c859564f5cbb0f64ad6002d0afe84a889602", + "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/7e48add6f8edc3027dd98ad15964b1a28fd0c845", + "reference": "7e48add6f8edc3027dd98ad15964b1a28fd0c845", "shasum": "" }, "require": { @@ -21819,7 +8864,7 @@ "./" ], "license": [ - "BSD-2-Clause" + "BSD-3-Clause" ], "authors": [ { @@ -21841,24 +8886,20 @@ "archive", "tar" ], - "support": { - "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar", - "source": "https://github.com/pear/Archive_Tar" - }, - "time": "2024-03-16T16:21:40+00:00" + "time": "2019-04-08T13:15:55+00:00" }, { "name": "pear/console_getopt", - "version": "v1.4.3", + "version": "v1.4.2", "source": { "type": "git", "url": "https://github.com/pear/Console_Getopt.git", - "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0" + "reference": "6c77aeb625b32bd752e89ee17972d103588b90c0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0", - "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0", + "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/6c77aeb625b32bd752e89ee17972d103588b90c0", + "reference": "6c77aeb625b32bd752e89ee17972d103588b90c0", "shasum": "" }, "type": "library", @@ -21875,6 +8916,11 @@ "BSD-2-Clause" ], "authors": [ + { + "name": "Greg Beaver", + "email": "cellog@php.net", + "role": "Helper" + }, { "name": "Andrei Zmievski", "email": "andrei@php.net", @@ -21884,47 +8930,37 @@ "name": "Stig Bakken", "email": "stig@php.net", "role": "Developer" - }, - { - "name": "Greg Beaver", - "email": "cellog@php.net", - "role": "Helper" } ], "description": "More info available on: http://pear.php.net/package/Console_Getopt", - "support": { - "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt", - "source": "https://github.com/pear/Console_Getopt" - }, - "time": "2019-11-20T18:27:48+00:00" + "time": "2019-02-06T16:52:33+00:00" }, { "name": "pear/pear-core-minimal", - "version": "v1.10.16", + "version": "v1.10.9", "source": { "type": "git", "url": "https://github.com/pear/pear-core-minimal.git", - "reference": "c0f51b45f50683bf5bbf558036854ebc9b54d033" + "reference": "742be8dd68c746a01e4b0a422258e9c9cae1c37f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/c0f51b45f50683bf5bbf558036854ebc9b54d033", - "reference": "c0f51b45f50683bf5bbf558036854ebc9b54d033", + "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/742be8dd68c746a01e4b0a422258e9c9cae1c37f", + "reference": "742be8dd68c746a01e4b0a422258e9c9cae1c37f", "shasum": "" }, "require": { "pear/console_getopt": "~1.4", - "pear/pear_exception": "~1.0", - "php": ">=5.4" + "pear/pear_exception": "~1.0" }, "replace": { "rsky/pear-core-min": "self.version" }, "type": "library", "autoload": { - "classmap": [ - "src/" - ] + "psr-0": { + "": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "include-path": [ @@ -21941,31 +8977,27 @@ } ], "description": "Minimal set of PEAR core files to be used as composer dependency", - "support": { - "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR", - "source": "https://github.com/pear/pear-core-minimal" - }, - "time": "2024-11-24T22:27:58+00:00" + "time": "2019-03-13T18:15:44+00:00" }, { "name": "pear/pear_exception", - "version": "v1.0.2", + "version": "v1.0.0", "source": { "type": "git", "url": "https://github.com/pear/PEAR_Exception.git", - "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0" + "reference": "8c18719fdae000b690e3912be401c76e406dd13b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0", - "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0", + "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/8c18719fdae000b690e3912be401c76e406dd13b", + "reference": "8c18719fdae000b690e3912be401c76e406dd13b", "shasum": "" }, "require": { - "php": ">=5.2.0" + "php": ">=4.4.0" }, "require-dev": { - "phpunit/phpunit": "<9" + "phpunit/phpunit": "*" }, "type": "class", "extra": { @@ -21974,9 +9006,9 @@ } }, "autoload": { - "classmap": [ - "PEAR/" - ] + "psr-0": { + "PEAR": "" + } }, "notification-url": "https://packagist.org/downloads/", "include-path": [ @@ -22000,297 +9032,24 @@ "keywords": [ "exception" ], - "support": { - "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception", - "source": "https://github.com/pear/PEAR_Exception" - }, - "time": "2021-03-21T15:43:46+00:00" + "time": "2015-02-10T20:07:52+00:00" }, { - "name": "phootwork/collection", - "version": "v3.2.3", + "name": "psr/container", + "version": "1.0.0", "source": { "type": "git", - "url": "https://github.com/phootwork/collection.git", - "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa" + "url": "https://github.com/php-fig/container.git", + "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa", - "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa", + "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f", + "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f", "shasum": "" }, "require": { - "phootwork/lang": "^3.0", - "php": ">=8.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "phootwork\\collection\\": "" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Thomas Gossmann", - "homepage": "http://gos.si" - } - ], - "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.", - "homepage": "https://phootwork.github.io/collection/", - "keywords": [ - "Array object", - "Text object", - "collection", - "collections", - "json", - "list", - "map", - "queue", - "set", - "stack", - "xml" - ], - "support": { - "issues": "https://github.com/phootwork/phootwork/issues", - "source": "https://github.com/phootwork/collection/tree/v3.2.3" - }, - "time": "2022-08-27T12:51:24+00:00" - }, - { - "name": "phootwork/lang", - "version": "v3.2.3", - "source": { - "type": "git", - "url": "https://github.com/phootwork/lang.git", - "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phootwork/lang/zipball/52ec8cce740ce1c424eef02f43b43d5ddfec7b5e", - "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e", - "shasum": "" - }, - "require": { - "php": ">=8.0", - "symfony/polyfill-mbstring": "^1.12", - "symfony/polyfill-php81": "^1.22" - }, - "type": "library", - "autoload": { - "psr-4": { - "phootwork\\lang\\": "" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Thomas Gossmann", - "homepage": "http://gos.si" - } - ], - "description": "Missing PHP language constructs", - "homepage": "https://phootwork.github.io/lang/", - "keywords": [ - "array", - "comparator", - "comparison", - "string" - ], - "support": { - "issues": "https://github.com/phootwork/phootwork/issues", - "source": "https://github.com/phootwork/lang/tree/v3.2.3" - }, - "time": "2024-10-03T13:43:19+00:00" - }, - { - "name": "phpoption/phpoption", - "version": "1.9.3", - "source": { - "type": "git", - "url": "https://github.com/schmittjoh/php-option.git", - "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54", - "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54", - "shasum": "" - }, - "require": { - "php": "^7.2.5 || ^8.0" - }, - "require-dev": { - "bamarni/composer-bin-plugin": "^1.8.2", - "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28" - }, - "type": "library", - "extra": { - "bamarni-bin": { - "bin-links": true, - "forward-command": false - }, - "branch-alias": { - "dev-master": "1.9-dev" - } - }, - "autoload": { - "psr-4": { - "PhpOption\\": "src/PhpOption/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Apache-2.0" - ], - "authors": [ - { - "name": "Johannes M. Schmitt", - "email": "schmittjoh@gmail.com", - "homepage": "https://github.com/schmittjoh" - }, - { - "name": "Graham Campbell", - "email": "hello@gjcampbell.co.uk", - "homepage": "https://github.com/GrahamCampbell" - } - ], - "description": "Option Type for PHP", - "keywords": [ - "language", - "option", - "php", - "type" - ], - "support": { - "issues": "https://github.com/schmittjoh/php-option/issues", - "source": "https://github.com/schmittjoh/php-option/tree/1.9.3" - }, - "funding": [ - { - "url": "https://github.com/GrahamCampbell", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption", - "type": "tidelift" - } - ], - "time": "2024-07-20T21:41:07+00:00" - }, - { - "name": "phpowermove/docblock", - "version": "v4.0", - "source": { - "type": "git", - "url": "https://github.com/phpowermove/docblock.git", - "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826", - "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826", - "shasum": "" - }, - "require": { - "phootwork/collection": "^3.0", - "phootwork/lang": "^3.0", - "php": ">=8.0" - }, - "require-dev": { - "phootwork/php-cs-fixer-config": "^0.4", - "phpunit/phpunit": "^9.0", - "psalm/phar": "^4.3" - }, - "type": "library", - "autoload": { - "psr-4": { - "phpowermove\\docblock\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Thomas Gossmann", - "homepage": "http://gos.si" - } - ], - "description": "PHP Docblock parser and generator. An API to read and write Docblocks.", - "keywords": [ - "docblock", - "generator", - "parser" - ], - "support": { - "issues": "https://github.com/phpowermove/docblock/issues", - "source": "https://github.com/phpowermove/docblock/tree/v4.0" - }, - "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", - "source": { - "type": "git", - "url": "https://github.com/php-fig/cache.git", - "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf", - "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf", - "shasum": "" - }, - "require": { - "php": ">=8.0.0" + "php": ">=5.3.0" }, "type": "library", "extra": { @@ -22298,103 +9057,6 @@ "dev-master": "1.0.x-dev" } }, - "autoload": { - "psr-4": { - "Psr\\Cache\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "https://www.php-fig.org/" - } - ], - "description": "Common interface for caching libraries", - "keywords": [ - "cache", - "psr", - "psr-6" - ], - "support": { - "source": "https://github.com/php-fig/cache/tree/3.0.0" - }, - "time": "2021-02-03T23:26:27+00:00" - }, - { - "name": "psr/clock", - "version": "1.0.0", - "source": { - "type": "git", - "url": "https://github.com/php-fig/clock.git", - "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d", - "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d", - "shasum": "" - }, - "require": { - "php": "^7.0 || ^8.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Psr\\Clock\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "https://www.php-fig.org/" - } - ], - "description": "Common interface for reading the clock.", - "homepage": "https://github.com/php-fig/clock", - "keywords": [ - "clock", - "now", - "psr", - "psr-20", - "time" - ], - "support": { - "issues": "https://github.com/php-fig/clock/issues", - "source": "https://github.com/php-fig/clock/tree/1.0.0" - }, - "time": "2022-11-25T14:36:26+00:00" - }, - { - "name": "psr/container", - "version": "2.0.2", - "source": { - "type": "git", - "url": "https://github.com/php-fig/container.git", - "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963", - "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963", - "shasum": "" - }, - "require": { - "php": ">=7.4.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.0.x-dev" - } - }, "autoload": { "psr-4": { "Psr\\Container\\": "src/" @@ -22407,7 +9069,7 @@ "authors": [ { "name": "PHP-FIG", - "homepage": "https://www.php-fig.org/" + "homepage": "http://www.php-fig.org/" } ], "description": "Common Container Interface (PHP FIG PSR-11)", @@ -22419,28 +9081,24 @@ "container-interop", "psr" ], - "support": { - "issues": "https://github.com/php-fig/container/issues", - "source": "https://github.com/php-fig/container/tree/2.0.2" - }, - "time": "2021-11-05T16:47:00+00:00" + "time": "2017-02-14T16:28:37+00:00" }, { - "name": "psr/event-dispatcher", - "version": "1.0.0", + "name": "psr/http-message", + "version": "1.0.1", "source": { "type": "git", - "url": "https://github.com/php-fig/event-dispatcher.git", - "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0" + "url": "https://github.com/php-fig/http-message.git", + "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0", - "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0", + "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363", + "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363", "shasum": "" }, "require": { - "php": ">=7.2.0" + "php": ">=5.3.0" }, "type": "library", "extra": { @@ -22450,7 +9108,7 @@ }, "autoload": { "psr-4": { - "Psr\\EventDispatcher\\": "src/" + "Psr\\Http\\Message\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -22463,163 +9121,6 @@ "homepage": "http://www.php-fig.org/" } ], - "description": "Standard interfaces for event handling.", - "keywords": [ - "events", - "psr", - "psr-14" - ], - "support": { - "issues": "https://github.com/php-fig/event-dispatcher/issues", - "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0" - }, - "time": "2019-01-08T18:20:26+00:00" - }, - { - "name": "psr/http-client", - "version": "1.0.3", - "source": { - "type": "git", - "url": "https://github.com/php-fig/http-client.git", - "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90", - "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90", - "shasum": "" - }, - "require": { - "php": "^7.0 || ^8.0", - "psr/http-message": "^1.0 || ^2.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Psr\\Http\\Client\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "https://www.php-fig.org/" - } - ], - "description": "Common interface for HTTP clients", - "homepage": "https://github.com/php-fig/http-client", - "keywords": [ - "http", - "http-client", - "psr", - "psr-18" - ], - "support": { - "source": "https://github.com/php-fig/http-client" - }, - "time": "2023-09-23T14:17:50+00:00" - }, - { - "name": "psr/http-factory", - "version": "1.1.0", - "source": { - "type": "git", - "url": "https://github.com/php-fig/http-factory.git", - "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a", - "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a", - "shasum": "" - }, - "require": { - "php": ">=7.1", - "psr/http-message": "^1.0 || ^2.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Psr\\Http\\Message\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "https://www.php-fig.org/" - } - ], - "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories", - "keywords": [ - "factory", - "http", - "message", - "psr", - "psr-17", - "psr-7", - "request", - "response" - ], - "support": { - "source": "https://github.com/php-fig/http-factory" - }, - "time": "2024-04-15T12:06:14+00:00" - }, - { - "name": "psr/http-message", - "version": "2.0", - "source": { - "type": "git", - "url": "https://github.com/php-fig/http-message.git", - "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71", - "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71", - "shasum": "" - }, - "require": { - "php": "^7.2 || ^8.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Psr\\Http\\Message\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "https://www.php-fig.org/" - } - ], "description": "Common interface for HTTP messages", "homepage": "https://github.com/php-fig/http-message", "keywords": [ @@ -22630,37 +9131,34 @@ "request", "response" ], - "support": { - "source": "https://github.com/php-fig/http-message/tree/2.0" - }, - "time": "2023-04-04T09:54:51+00:00" + "time": "2016-08-06T14:39:51+00:00" }, { "name": "psr/log", - "version": "3.0.2", + "version": "1.1.0", "source": { "type": "git", "url": "https://github.com/php-fig/log.git", - "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3" + "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", - "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3", + "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd", + "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd", "shasum": "" }, "require": { - "php": ">=8.0.0" + "php": ">=5.3.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.x-dev" + "dev-master": "1.0.x-dev" } }, "autoload": { "psr-4": { - "Psr\\Log\\": "src" + "Psr\\Log\\": "Psr/Log/" } }, "notification-url": "https://packagist.org/downloads/", @@ -22670,7 +9168,7 @@ "authors": [ { "name": "PHP-FIG", - "homepage": "https://www.php-fig.org/" + "homepage": "http://www.php-fig.org/" } ], "description": "Common interface for logging libraries", @@ -22680,55 +9178,51 @@ "psr", "psr-3" ], - "support": { - "source": "https://github.com/php-fig/log/tree/3.0.2" - }, - "time": "2024-09-11T13:17:53+00:00" + "time": "2018-11-20T15:27:04+00:00" }, { "name": "psy/psysh", - "version": "v0.12.9", + "version": "v0.9.9", "source": { "type": "git", "url": "https://github.com/bobthecow/psysh.git", - "reference": "1b801844becfe648985372cb4b12ad6840245ace" + "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bobthecow/psysh/zipball/1b801844becfe648985372cb4b12ad6840245ace", - "reference": "1b801844becfe648985372cb4b12ad6840245ace", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e", + "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e", "shasum": "" }, "require": { + "dnoegel/php-xdg-base-dir": "0.1", "ext-json": "*", "ext-tokenizer": "*", - "nikic/php-parser": "^5.0 || ^4.0", - "php": "^8.0 || ^7.4", - "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4", - "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4" - }, - "conflict": { - "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4" + "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*", + "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0", + "php": ">=5.4.0", + "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0", + "symfony/var-dumper": "~2.7|~3.0|~4.0" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.2" + "bamarni/composer-bin-plugin": "^1.2", + "hoa/console": "~2.15|~3.16", + "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0" }, "suggest": { "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)", "ext-pdo-sqlite": "The doc command requires SQLite to work.", - "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well." + "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.", + "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.", + "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit." }, "bin": [ "bin/psysh" ], "type": "library", "extra": { - "bamarni-bin": { - "bin-links": false, - "forward-command": false - }, "branch-alias": { - "dev-main": "0.12.x-dev" + "dev-develop": "0.9.x-dev" } }, "autoload": { @@ -22758,11 +9252,7 @@ "interactive", "shell" ], - "support": { - "issues": "https://github.com/bobthecow/psysh/issues", - "source": "https://github.com/bobthecow/psysh/tree/v0.12.9" - }, - "time": "2025-06-23T02:35:06+00:00" + "time": "2018-10-13T15:16:03+00:00" }, { "name": "ralouphie/getallheaders", @@ -22802,46 +9292,39 @@ } ], "description": "A polyfill for getallheaders.", - "support": { - "issues": "https://github.com/ralouphie/getallheaders/issues", - "source": "https://github.com/ralouphie/getallheaders/tree/develop" - }, "time": "2019-03-08T08:55:37+00:00" }, { - "name": "sabberworm/php-css-parser", - "version": "v8.9.0", + "name": "stack/builder", + "version": "v1.0.5", "source": { "type": "git", - "url": "https://github.com/MyIntervals/PHP-CSS-Parser.git", - "reference": "d8e916507b88e389e26d4ab03c904a082aa66bb9" + "url": "https://github.com/stackphp/builder.git", + "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/MyIntervals/PHP-CSS-Parser/zipball/d8e916507b88e389e26d4ab03c904a082aa66bb9", - "reference": "d8e916507b88e389e26d4ab03c904a082aa66bb9", + "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a", + "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a", "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" + "php": ">=5.3.0", + "symfony/http-foundation": "~2.1|~3.0|~4.0", + "symfony/http-kernel": "~2.1|~3.0|~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" + "silex/silex": "~1.0" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "9.0.x-dev" + "dev-master": "1.0-dev" } }, "autoload": { - "psr-4": { - "Sabberworm\\CSS\\": "src/" + "psr-0": { + "Stack": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -22850,272 +9333,177 @@ ], "authors": [ { - "name": "Raphael Schweikert" - }, - { - "name": "Oliver Klee", - "email": "github@oliverklee.de" - }, - { - "name": "Jake Hotson", - "email": "jake.github@qzdesign.co.uk" + "name": "Igor Wiedler", + "email": "igor@wiedler.ch" } ], - "description": "Parser for CSS Files written in PHP", - "homepage": "https://www.sabberworm.com/blog/2010/6/10/php-css-parser", + "description": "Builder for stack middlewares based on HttpKernelInterface.", "keywords": [ - "css", - "parser", - "stylesheet" + "stack" ], - "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" + "time": "2017-11-18T14:57:29+00:00" }, { - "name": "sebastian/diff", - "version": "4.0.6", + "name": "symfony-cmf/routing", + "version": "1.4.1", "source": { "type": "git", - "url": "https://github.com/sebastianbergmann/diff.git", - "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc" + "url": "https://github.com/symfony-cmf/routing.git", + "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc", - "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc", + "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac", + "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac", "shasum": "" }, "require": { - "php": ">=7.3" + "php": "^5.3.9|^7.0", + "psr/log": "1.*", + "symfony/http-kernel": "^2.2|3.*", + "symfony/routing": "^2.2|3.*" }, "require-dev": { - "phpunit/phpunit": "^9.3", - "symfony/process": "^4.2 || ^5" + "friendsofsymfony/jsrouting-bundle": "^1.1", + "symfony-cmf/testing": "^1.3", + "symfony/config": "^2.2|3.*", + "symfony/dependency-injection": "^2.0.5|3.*", + "symfony/event-dispatcher": "^2.1|3.*" + }, + "suggest": { + "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0-dev" + "dev-master": "1.4-dev" } }, "autoload": { - "classmap": [ - "src/" + "psr-4": { + "Symfony\\Cmf\\Component\\Routing\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Symfony CMF Community", + "homepage": "https://github.com/symfony-cmf/Routing/contributors" + } + ], + "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers", + "homepage": "http://cmf.symfony.com", + "keywords": [ + "database", + "routing" + ], + "time": "2017-05-09T08:10:41+00:00" + }, + { + "name": "symfony/class-loader", + "version": "v3.4.31", + "source": { + "type": "git", + "url": "https://github.com/symfony/class-loader.git", + "reference": "e212b06996819a2bce026a63da03b7182d05a690" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/class-loader/zipball/e212b06996819a2bce026a63da03b7182d05a690", + "reference": "e212b06996819a2bce026a63da03b7182d05a690", + "shasum": "" + }, + "require": { + "php": "^5.5.9|>=7.0.8" + }, + "require-dev": { + "symfony/finder": "~2.8|~3.0|~4.0", + "symfony/polyfill-apcu": "~1.1" + }, + "suggest": { + "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\ClassLoader\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - }, - { - "name": "Kore Nordmann", - "email": "mail@kore-nordmann.de" - } - ], - "description": "Diff implementation", - "homepage": "https://github.com/sebastianbergmann/diff", - "keywords": [ - "diff", - "udiff", - "unidiff", - "unified diff" - ], - "support": { - "issues": "https://github.com/sebastianbergmann/diff/issues", - "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6" - }, - "funding": [ - { - "url": "https://github.com/sebastianbergmann", - "type": "github" - } - ], - "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": "Fabien Potencier", + "email": "fabien@symfony.com" }, { - "name": "Maximilian Kresse", - "email": "maximilian.kresse@setasign.com", - "homepage": "https://www.setasign.com" + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" } ], - "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" + "description": "Symfony ClassLoader Component", + "homepage": "https://symfony.com", + "time": "2019-08-20T13:31:17+00:00" }, { - "name": "simshaun/recurr", - "version": "v5.0.3", + "name": "symfony/console", + "version": "v3.4.31", "source": { "type": "git", - "url": "https://github.com/simshaun/recurr.git", - "reference": "7b136768d64f257065e38a804ee6d2f9af6ba6d1" + "url": "https://github.com/symfony/console.git", + "reference": "4510f04e70344d70952566e4262a0b11df39cb10" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/simshaun/recurr/zipball/7b136768d64f257065e38a804ee6d2f9af6ba6d1", - "reference": "7b136768d64f257065e38a804ee6d2f9af6ba6d1", + "url": "https://api.github.com/repos/symfony/console/zipball/4510f04e70344d70952566e4262a0b11df39cb10", + "reference": "4510f04e70344d70952566e4262a0b11df39cb10", "shasum": "" }, "require": { - "doctrine/collections": "~1.6||^2.0", - "php": "^7.2||^8.0" + "php": "^5.5.9|>=7.0.8", + "symfony/debug": "~2.8|~3.0|~4.0", + "symfony/polyfill-mbstring": "~1.0" + }, + "conflict": { + "symfony/dependency-injection": "<3.4", + "symfony/process": "<3.3" + }, + "provide": { + "psr/log-implementation": "1.0" }, "require-dev": { - "phpunit/phpunit": "^8.5.16", - "symfony/yaml": "^5.3" + "psr/log": "~1.0", + "symfony/config": "~3.3|~4.0", + "symfony/dependency-injection": "~3.4|~4.0", + "symfony/event-dispatcher": "~2.8|~3.0|~4.0", + "symfony/lock": "~3.4|~4.0", + "symfony/process": "~3.3|~4.0" + }, + "suggest": { + "psr/log": "For using the console logger", + "symfony/event-dispatcher": "", + "symfony/lock": "", + "symfony/process": "" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "0.x-dev" + "dev-master": "3.4-dev" } }, - "autoload": { - "psr-4": { - "Recurr\\": "src/Recurr/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Shaun Simmons", - "email": "shaun@shaun.pub", - "homepage": "https://shaun.pub" - } - ], - "description": "PHP library for working with recurrence rules", - "homepage": "https://github.com/simshaun/recurr", - "keywords": [ - "dates", - "events", - "recurrence", - "recurring", - "rrule" - ], - "support": { - "issues": "https://github.com/simshaun/recurr/issues", - "source": "https://github.com/simshaun/recurr/tree/v5.0.3" - }, - "time": "2024-12-12T15:39:24+00:00" - }, - { - "name": "symfony/console", - "version": "v6.4.23", - "source": { - "type": "git", - "url": "https://github.com/symfony/console.git", - "reference": "9056771b8eca08d026cd3280deeec3cfd99c4d93" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/9056771b8eca08d026cd3280deeec3cfd99c4d93", - "reference": "9056771b8eca08d026cd3280deeec3cfd99c4d93", - "shasum": "" - }, - "require": { - "php": ">=8.1", - "symfony/deprecation-contracts": "^2.5|^3", - "symfony/polyfill-mbstring": "~1.0", - "symfony/service-contracts": "^2.5|^3", - "symfony/string": "^5.4|^6.0|^7.0" - }, - "conflict": { - "symfony/dependency-injection": "<5.4", - "symfony/dotenv": "<5.4", - "symfony/event-dispatcher": "<5.4", - "symfony/lock": "<5.4", - "symfony/process": "<5.4" - }, - "provide": { - "psr/log-implementation": "1.0|2.0|3.0" - }, - "require-dev": { - "psr/log": "^1|^2|^3", - "symfony/config": "^5.4|^6.0|^7.0", - "symfony/dependency-injection": "^5.4|^6.0|^7.0", - "symfony/event-dispatcher": "^5.4|^6.0|^7.0", - "symfony/http-foundation": "^6.4|^7.0", - "symfony/http-kernel": "^6.4|^7.0", - "symfony/lock": "^5.4|^6.0|^7.0", - "symfony/messenger": "^5.4|^6.0|^7.0", - "symfony/process": "^5.4|^6.0|^7.0", - "symfony/stopwatch": "^5.4|^6.0|^7.0", - "symfony/var-dumper": "^5.4|^6.0|^7.0" - }, - "type": "library", "autoload": { "psr-4": { "Symfony\\Component\\Console\\": "" @@ -23138,54 +9526,43 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Eases the creation of beautiful and testable command line interfaces", + "description": "Symfony Console Component", "homepage": "https://symfony.com", - "keywords": [ - "cli", - "command-line", - "console", - "terminal" - ], - "support": { - "source": "https://github.com/symfony/console/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-27T19:37:22+00:00" + "time": "2019-08-26T07:52:58+00:00" }, { - "name": "symfony/css-selector", - "version": "v6.4.13", + "name": "symfony/debug", + "version": "v4.3.4", "source": { "type": "git", - "url": "https://github.com/symfony/css-selector.git", - "reference": "cb23e97813c5837a041b73a6d63a9ddff0778f5e" + "url": "https://github.com/symfony/debug.git", + "reference": "afcdea44a2e399c1e4b52246ec8d54c715393ced" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/cb23e97813c5837a041b73a6d63a9ddff0778f5e", - "reference": "cb23e97813c5837a041b73a6d63a9ddff0778f5e", + "url": "https://api.github.com/repos/symfony/debug/zipball/afcdea44a2e399c1e4b52246ec8d54c715393ced", + "reference": "afcdea44a2e399c1e4b52246ec8d54c715393ced", "shasum": "" }, "require": { - "php": ">=8.1" + "php": "^7.1.3", + "psr/log": "~1.0" + }, + "conflict": { + "symfony/http-kernel": "<3.4" + }, + "require-dev": { + "symfony/http-kernel": "~3.4|~4.0" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.3-dev" + } + }, "autoload": { "psr-4": { - "Symfony\\Component\\CssSelector\\": "" + "Symfony\\Component\\Debug\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -23200,74 +9577,60 @@ "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", + "description": "Symfony Debug Component", "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": "2019-08-20T14:27:59+00:00" }, { "name": "symfony/dependency-injection", - "version": "v6.4.23", + "version": "v3.4.31", "source": { "type": "git", "url": "https://github.com/symfony/dependency-injection.git", - "reference": "0d9f24f3de0a83573fce5c9ed025d6306c6e166b" + "reference": "2709bc2978ceb90f5180181f777f8a09125f2d89" }, "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/2709bc2978ceb90f5180181f777f8a09125f2d89", + "reference": "2709bc2978ceb90f5180181f777f8a09125f2d89", "shasum": "" }, "require": { - "php": ">=8.1", - "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" + "php": "^5.5.9|>=7.0.8", + "psr/container": "^1.0" }, "conflict": { - "ext-psr": "<1.1|>=2", - "symfony/config": "<6.1", - "symfony/finder": "<5.4", - "symfony/proxy-manager-bridge": "<6.3", - "symfony/yaml": "<5.4" + "symfony/config": "<3.3.7", + "symfony/finder": "<3.3", + "symfony/proxy-manager-bridge": "<3.4", + "symfony/yaml": "<3.4" }, "provide": { - "psr/container-implementation": "1.1|2.0", - "symfony/service-implementation": "1.1|2.0|3.0" + "psr/container-implementation": "1.0" }, "require-dev": { - "symfony/config": "^6.1|^7.0", - "symfony/expression-language": "^5.4|^6.0|^7.0", - "symfony/yaml": "^5.4|^6.0|^7.0" + "symfony/config": "~3.3|~4.0", + "symfony/expression-language": "~2.8|~3.0|~4.0", + "symfony/yaml": "~3.4|~4.0" + }, + "suggest": { + "symfony/config": "", + "symfony/expression-language": "For using expressions in service container configuration", + "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required", + "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them", + "symfony/yaml": "" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + } + }, "autoload": { "psr-4": { "Symfony\\Component\\DependencyInjection\\": "" @@ -23290,273 +9653,47 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Allows you to standardize and centralize the way objects are constructed in your application", + "description": "Symfony DependencyInjection Component", "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/dependency-injection/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-23T06:49:06+00:00" - }, - { - "name": "symfony/deprecation-contracts", - "version": "v3.5.1", - "source": { - "type": "git", - "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6", - "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6", - "shasum": "" - }, - "require": { - "php": ">=8.1" - }, - "type": "library", - "extra": { - "thanks": { - "url": "https://github.com/symfony/contracts", - "name": "symfony/contracts" - }, - "branch-alias": { - "dev-main": "3.5-dev" - } - }, - "autoload": { - "files": [ - "function.php" - ] - }, - "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": "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" - }, - "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: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" - }, - { - "name": "symfony/error-handler", - "version": "v6.4.23", - "source": { - "type": "git", - "url": "https://github.com/symfony/error-handler.git", - "reference": "b088e0b175c30b4e06d8085200fa465b586f44fa" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/b088e0b175c30b4e06d8085200fa465b586f44fa", - "reference": "b088e0b175c30b4e06d8085200fa465b586f44fa", - "shasum": "" - }, - "require": { - "php": ">=8.1", - "psr/log": "^1|^2|^3", - "symfony/var-dumper": "^5.4|^6.0|^7.0" - }, - "conflict": { - "symfony/deprecation-contracts": "<2.5", - "symfony/http-kernel": "<6.4" - }, - "require-dev": { - "symfony/deprecation-contracts": "^2.5|^3", - "symfony/http-kernel": "^6.4|^7.0", - "symfony/serializer": "^5.4|^6.0|^7.0" - }, - "bin": [ - "Resources/bin/patch-type-declarations" - ], - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\ErrorHandler\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Provides 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" - }, - "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-13T07:39:48+00:00" + "time": "2019-08-26T16:07:57+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v6.4.13", + "version": "v3.4.31", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e" + "reference": "3e922c4c3430b9de624e8a285dada5e61e230959" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e", - "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/3e922c4c3430b9de624e8a285dada5e61e230959", + "reference": "3e922c4c3430b9de624e8a285dada5e61e230959", "shasum": "" }, "require": { - "php": ">=8.1", - "symfony/event-dispatcher-contracts": "^2.5|^3" + "php": "^5.5.9|>=7.0.8" }, "conflict": { - "symfony/dependency-injection": "<5.4", - "symfony/service-contracts": "<2.5" - }, - "provide": { - "psr/event-dispatcher-implementation": "1.0", - "symfony/event-dispatcher-implementation": "2.0|3.0" + "symfony/dependency-injection": "<3.3" }, "require-dev": { - "psr/log": "^1|^2|^3", - "symfony/config": "^5.4|^6.0|^7.0", - "symfony/dependency-injection": "^5.4|^6.0|^7.0", - "symfony/error-handler": "^5.4|^6.0|^7.0", - "symfony/expression-language": "^5.4|^6.0|^7.0", - "symfony/http-foundation": "^5.4|^6.0|^7.0", - "symfony/service-contracts": "^2.5|^3", - "symfony/stopwatch": "^5.4|^6.0|^7.0" + "psr/log": "~1.0", + "symfony/config": "~2.8|~3.0|~4.0", + "symfony/dependency-injection": "~3.3|~4.0", + "symfony/expression-language": "~2.8|~3.0|~4.0", + "symfony/stopwatch": "~2.8|~3.0|~4.0" + }, + "suggest": { + "symfony/dependency-injection": "", + "symfony/http-kernel": "" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + } + }, "autoload": { "psr-4": { "Symfony\\Component\\EventDispatcher\\": "" @@ -23579,126 +9716,34 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", + "description": "Symfony EventDispatcher Component", "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/event-dispatcher/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/event-dispatcher-contracts", - "version": "v3.5.1", - "source": { - "type": "git", - "url": "https://github.com/symfony/event-dispatcher-contracts.git", - "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f", - "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f", - "shasum": "" - }, - "require": { - "php": ">=8.1", - "psr/event-dispatcher": "^1" - }, - "type": "library", - "extra": { - "thanks": { - "url": "https://github.com/symfony/contracts", - "name": "symfony/contracts" - }, - "branch-alias": { - "dev-main": "3.5-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Contracts\\EventDispatcher\\": "" - } - }, - "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": "Generic abstractions related to dispatching event", - "homepage": "https://symfony.com", - "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" - ], - "support": { - "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1" - }, - "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:20:29+00:00" + "time": "2019-08-23T08:05:57+00:00" }, { "name": "symfony/filesystem", - "version": "v6.4.13", + "version": "v4.3.4", "source": { "type": "git", "url": "https://github.com/symfony/filesystem.git", - "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3" + "reference": "9abbb7ef96a51f4d7e69627bc6f63307994e4263" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3", - "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/9abbb7ef96a51f4d7e69627bc6f63307994e4263", + "reference": "9abbb7ef96a51f4d7e69627bc6f63307994e4263", "shasum": "" }, "require": { - "php": ">=8.1", - "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-mbstring": "~1.8" - }, - "require-dev": { - "symfony/process": "^5.4|^6.4|^7.0" + "php": "^7.1.3", + "symfony/polyfill-ctype": "~1.8" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.3-dev" + } + }, "autoload": { "psr-4": { "Symfony\\Component\\Filesystem\\": "" @@ -23721,48 +9766,33 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Provides basic utilities for the filesystem", + "description": "Symfony Filesystem Component", "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/filesystem/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-10-25T15:07:50+00:00" + "time": "2019-08-20T14:07:54+00:00" }, { "name": "symfony/finder", - "version": "v6.4.17", + "version": "v4.3.4", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7" + "reference": "86c1c929f0a4b24812e1eb109262fc3372c8e9f2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7", - "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7", + "url": "https://api.github.com/repos/symfony/finder/zipball/86c1c929f0a4b24812e1eb109262fc3372c8e9f2", + "reference": "86c1c929f0a4b24812e1eb109262fc3372c8e9f2", "shasum": "" }, "require": { - "php": ">=8.1" - }, - "require-dev": { - "symfony/filesystem": "^6.0|^7.0" + "php": "^7.1.3" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.3-dev" + } + }, "autoload": { "psr-4": { "Symfony\\Component\\Finder\\": "" @@ -23785,61 +9815,38 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Finds files and directories via an intuitive fluent interface", + "description": "Symfony Finder Component", "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/finder/tree/v6.4.17" - }, - "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-12-29T13:51:37+00:00" + "time": "2019-08-14T12:26:46+00:00" }, { "name": "symfony/http-foundation", - "version": "v6.4.23", + "version": "v3.4.31", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "452d19f945ee41345fd8a50c18b60783546b7bd3" + "reference": "b3d57a1c325f39f703b249bed7998ce8c64236b4" }, "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/b3d57a1c325f39f703b249bed7998ce8c64236b4", + "reference": "b3d57a1c325f39f703b249bed7998ce8c64236b4", "shasum": "" }, "require": { - "php": ">=8.1", - "symfony/deprecation-contracts": "^2.5|^3", + "php": "^5.5.9|>=7.0.8", "symfony/polyfill-mbstring": "~1.1", - "symfony/polyfill-php83": "^1.27" - }, - "conflict": { - "symfony/cache": "<6.4.12|>=7.0,<7.1.5" + "symfony/polyfill-php70": "~1.6" }, "require-dev": { - "doctrine/dbal": "^2.13.1|^3|^4", - "predis/predis": "^1.1|^2.0", - "symfony/cache": "^6.4.12|^7.1.5", - "symfony/dependency-injection": "^5.4|^6.0|^7.0", - "symfony/expression-language": "^5.4|^6.0|^7.0", - "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0", - "symfony/mime": "^5.4|^6.0|^7.0", - "symfony/rate-limiter": "^5.4|^6.0|^7.0" + "symfony/expression-language": "~2.8|~3.0|~4.0" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + } + }, "autoload": { "psr-4": { "Symfony\\Component\\HttpFoundation\\": "" @@ -23862,98 +9869,73 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Defines an object-oriented layer for the HTTP specification", + "description": "Symfony HttpFoundation Component", "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/http-foundation/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-05-26T09:17:58+00:00" + "time": "2019-08-26T07:50:50+00:00" }, { "name": "symfony/http-kernel", - "version": "v6.4.23", + "version": "v3.4.31", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "2bb2cba685aabd859f22cf6946554e8e7f3c329a" + "reference": "f6d35bb306b26812df007525f5757a8b0e95857e" }, "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/f6d35bb306b26812df007525f5757a8b0e95857e", + "reference": "f6d35bb306b26812df007525f5757a8b0e95857e", "shasum": "" }, "require": { - "php": ">=8.1", - "psr/log": "^1|^2|^3", - "symfony/deprecation-contracts": "^2.5|^3", - "symfony/error-handler": "^6.4|^7.0", - "symfony/event-dispatcher": "^5.4|^6.0|^7.0", - "symfony/http-foundation": "^6.4|^7.0", - "symfony/polyfill-ctype": "^1.8" + "php": "^5.5.9|>=7.0.8", + "psr/log": "~1.0", + "symfony/debug": "^3.3.3|~4.0", + "symfony/event-dispatcher": "~2.8|~3.0|~4.0", + "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1", + "symfony/polyfill-ctype": "~1.8" }, "conflict": { - "symfony/browser-kit": "<5.4", - "symfony/cache": "<5.4", - "symfony/config": "<6.1", - "symfony/console": "<5.4", - "symfony/dependency-injection": "<6.4", - "symfony/doctrine-bridge": "<5.4", - "symfony/form": "<5.4", - "symfony/http-client": "<5.4", - "symfony/http-client-contracts": "<2.5", - "symfony/mailer": "<5.4", - "symfony/messenger": "<5.4", - "symfony/translation": "<5.4", - "symfony/translation-contracts": "<2.5", - "symfony/twig-bridge": "<5.4", - "symfony/validator": "<6.4", - "symfony/var-dumper": "<6.3", - "twig/twig": "<2.13" + "symfony/config": "<2.8", + "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4", + "symfony/var-dumper": "<3.3", + "twig/twig": "<1.34|<2.4,>=2" }, "provide": { - "psr/log-implementation": "1.0|2.0|3.0" + "psr/log-implementation": "1.0" }, "require-dev": { - "psr/cache": "^1.0|^2.0|^3.0", - "symfony/browser-kit": "^5.4|^6.0|^7.0", - "symfony/clock": "^6.2|^7.0", - "symfony/config": "^6.1|^7.0", - "symfony/console": "^5.4|^6.0|^7.0", - "symfony/css-selector": "^5.4|^6.0|^7.0", - "symfony/dependency-injection": "^6.4|^7.0", - "symfony/dom-crawler": "^5.4|^6.0|^7.0", - "symfony/expression-language": "^5.4|^6.0|^7.0", - "symfony/finder": "^5.4|^6.0|^7.0", - "symfony/http-client-contracts": "^2.5|^3", - "symfony/process": "^5.4|^6.0|^7.0", - "symfony/property-access": "^5.4.5|^6.0.5|^7.0", - "symfony/routing": "^5.4|^6.0|^7.0", - "symfony/serializer": "^6.4.4|^7.0.4", - "symfony/stopwatch": "^5.4|^6.0|^7.0", - "symfony/translation": "^5.4|^6.0|^7.0", - "symfony/translation-contracts": "^2.5|^3", - "symfony/uid": "^5.4|^6.0|^7.0", - "symfony/validator": "^6.4|^7.0", - "symfony/var-dumper": "^5.4|^6.4|^7.0", - "symfony/var-exporter": "^6.2|^7.0", - "twig/twig": "^2.13|^3.0.4" + "psr/cache": "~1.0", + "symfony/browser-kit": "~2.8|~3.0|~4.0", + "symfony/class-loader": "~2.8|~3.0", + "symfony/config": "~2.8|~3.0|~4.0", + "symfony/console": "~2.8|~3.0|~4.0", + "symfony/css-selector": "~2.8|~3.0|~4.0", + "symfony/dependency-injection": "^3.4.10|^4.0.10", + "symfony/dom-crawler": "~2.8|~3.0|~4.0", + "symfony/expression-language": "~2.8|~3.0|~4.0", + "symfony/finder": "~2.8|~3.0|~4.0", + "symfony/process": "~2.8|~3.0|~4.0", + "symfony/routing": "~3.4|~4.0", + "symfony/stopwatch": "~2.8|~3.0|~4.0", + "symfony/templating": "~2.8|~3.0|~4.0", + "symfony/translation": "~2.8|~3.0|~4.0", + "symfony/var-dumper": "~3.3|~4.0" + }, + "suggest": { + "symfony/browser-kit": "", + "symfony/config": "", + "symfony/console": "", + "symfony/dependency-injection": "", + "symfony/finder": "", + "symfony/var-dumper": "" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + } + }, "autoload": { "psr-4": { "Symfony\\Component\\HttpKernel\\": "" @@ -23976,229 +9958,43 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Provides a structured process for converting a Request into a Response", + "description": "Symfony HttpKernel Component", "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/http-kernel/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-28T08:14:51+00:00" - }, - { - "name": "symfony/mailer", - "version": "v6.4.23", - "source": { - "type": "git", - "url": "https://github.com/symfony/mailer.git", - "reference": "a480322ddf8e54de262c9bca31fdcbe26b553de5" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/mailer/zipball/a480322ddf8e54de262c9bca31fdcbe26b553de5", - "reference": "a480322ddf8e54de262c9bca31fdcbe26b553de5", - "shasum": "" - }, - "require": { - "egulias/email-validator": "^2.1.10|^3|^4", - "php": ">=8.1", - "psr/event-dispatcher": "^1", - "psr/log": "^1|^2|^3", - "symfony/event-dispatcher": "^5.4|^6.0|^7.0", - "symfony/mime": "^6.2|^7.0", - "symfony/service-contracts": "^2.5|^3" - }, - "conflict": { - "symfony/http-client-contracts": "<2.5", - "symfony/http-kernel": "<5.4", - "symfony/messenger": "<6.2", - "symfony/mime": "<6.2", - "symfony/twig-bridge": "<6.2.1" - }, - "require-dev": { - "symfony/console": "^5.4|^6.0|^7.0", - "symfony/http-client": "^5.4|^6.0|^7.0", - "symfony/messenger": "^6.2|^7.0", - "symfony/twig-bridge": "^6.2|^7.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\Mailer\\": "" - }, - "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": "Helps sending emails", - "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/mailer/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-26T21:24:02+00:00" - }, - { - "name": "symfony/mime", - "version": "v6.4.21", - "source": { - "type": "git", - "url": "https://github.com/symfony/mime.git", - "reference": "fec8aa5231f3904754955fad33c2db50594d22d1" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/fec8aa5231f3904754955fad33c2db50594d22d1", - "reference": "fec8aa5231f3904754955fad33c2db50594d22d1", - "shasum": "" - }, - "require": { - "php": ">=8.1", - "symfony/deprecation-contracts": "^2.5|^3", - "symfony/polyfill-intl-idn": "^1.10", - "symfony/polyfill-mbstring": "^1.0" - }, - "conflict": { - "egulias/email-validator": "~3.0.0", - "phpdocumentor/reflection-docblock": "<3.2.2", - "phpdocumentor/type-resolver": "<1.4.0", - "symfony/mailer": "<5.4", - "symfony/serializer": "<6.4.3|>7.0,<7.0.3" - }, - "require-dev": { - "egulias/email-validator": "^2.1.10|^3.1|^4", - "league/html-to-markdown": "^5.0", - "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0", - "symfony/dependency-injection": "^5.4|^6.0|^7.0", - "symfony/process": "^5.4|^6.4|^7.0", - "symfony/property-access": "^5.4|^6.0|^7.0", - "symfony/property-info": "^5.4|^6.0|^7.0", - "symfony/serializer": "^6.4.3|^7.0.3" - }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\Mime\\": "" - }, - "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": "Allows manipulating MIME messages", - "homepage": "https://symfony.com", - "keywords": [ - "mime", - "mime-type" - ], - "support": { - "source": "https://github.com/symfony/mime/tree/v6.4.21" - }, - "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-04-27T13:27:38+00:00" + "time": "2019-08-26T16:36:29+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.31.0", + "version": "v1.12.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638" + "reference": "550ebaac289296ce228a706d0867afc34687e3f4" }, "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/550ebaac289296ce228a706d0867afc34687e3f4", + "reference": "550ebaac289296ce228a706d0867afc34687e3f4", "shasum": "" }, "require": { - "php": ">=7.2" - }, - "provide": { - "ext-ctype": "*" + "php": ">=5.3.3" }, "suggest": { "ext-ctype": "For best performance" }, "type": "library", "extra": { - "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" + "branch-alias": { + "dev-master": "1.12-dev" } }, "autoload": { - "files": [ - "bootstrap.php" - ], "psr-4": { "Symfony\\Polyfill\\Ctype\\": "" - } + }, + "files": [ + "bootstrap.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -24222,62 +10018,41 @@ "polyfill", "portable" ], - "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.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-09-09T11:45:10+00:00" + "time": "2019-08-06T08:03:45+00:00" }, { "name": "symfony/polyfill-iconv", - "version": "v1.31.0", + "version": "v1.12.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-iconv.git", - "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956" + "reference": "685968b11e61a347c18bf25db32effa478be610f" }, "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/685968b11e61a347c18bf25db32effa478be610f", + "reference": "685968b11e61a347c18bf25db32effa478be610f", "shasum": "" }, "require": { - "php": ">=7.2" - }, - "provide": { - "ext-iconv": "*" + "php": ">=5.3.3" }, "suggest": { "ext-iconv": "For best performance" }, "type": "library", "extra": { - "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" + "branch-alias": { + "dev-master": "1.12-dev" } }, "autoload": { - "files": [ - "bootstrap.php" - ], "psr-4": { "Symfony\\Polyfill\\Iconv\\": "" - } + }, + "files": [ + "bootstrap.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -24302,304 +10077,41 @@ "portable", "shim" ], - "support": { - "source": "https://github.com/symfony/polyfill-iconv/tree/v1.31.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-09-09T11:45:10+00:00" - }, - { - "name": "symfony/polyfill-intl-grapheme", - "version": "v1.31.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-intl-grapheme.git", - "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", - "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe", - "shasum": "" - }, - "require": { - "php": ">=7.2" - }, - "suggest": { - "ext-intl": "For best performance" - }, - "type": "library", - "extra": { - "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" - } - }, - "autoload": { - "files": [ - "bootstrap.php" - ], - "psr-4": { - "Symfony\\Polyfill\\Intl\\Grapheme\\": "" - } - }, - "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 for intl's grapheme_* functions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "grapheme", - "intl", - "polyfill", - "portable", - "shim" - ], - "support": { - "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.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-09-09T11:45:10+00:00" - }, - { - "name": "symfony/polyfill-intl-idn", - "version": "v1.31.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773", - "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773", - "shasum": "" - }, - "require": { - "php": ">=7.2", - "symfony/polyfill-intl-normalizer": "^1.10" - }, - "suggest": { - "ext-intl": "For best performance" - }, - "type": "library", - "extra": { - "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" - } - }, - "autoload": { - "files": [ - "bootstrap.php" - ], - "psr-4": { - "Symfony\\Polyfill\\Intl\\Idn\\": "" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Laurent Bassin", - "email": "laurent@bassin.info" - }, - { - "name": "Trevor Rowbotham", - "email": "trevor.rowbotham@pm.me" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "idn", - "intl", - "polyfill", - "portable", - "shim" - ], - "support": { - "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.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-09-09T11:45:10+00:00" - }, - { - "name": "symfony/polyfill-intl-normalizer", - "version": "v1.31.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "3833d7255cc303546435cb650316bff708a1c75c" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c", - "reference": "3833d7255cc303546435cb650316bff708a1c75c", - "shasum": "" - }, - "require": { - "php": ">=7.2" - }, - "suggest": { - "ext-intl": "For best performance" - }, - "type": "library", - "extra": { - "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" - } - }, - "autoload": { - "files": [ - "bootstrap.php" - ], - "psr-4": { - "Symfony\\Polyfill\\Intl\\Normalizer\\": "" - }, - "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 for intl's Normalizer class and related functions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "intl", - "normalizer", - "polyfill", - "portable", - "shim" - ], - "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.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-09-09T11:45:10+00:00" + "time": "2019-08-06T08:03:45+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.31.0", + "version": "v1.12.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341" + "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17" }, "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/b42a2f66e8f1b15ccf25652c3424265923eb4f17", + "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17", "shasum": "" }, "require": { - "php": ">=7.2" - }, - "provide": { - "ext-mbstring": "*" + "php": ">=5.3.3" }, "suggest": { "ext-mbstring": "For best performance" }, "type": "library", "extra": { - "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" + "branch-alias": { + "dev-master": "1.12-dev" } }, "autoload": { - "files": [ - "bootstrap.php" - ], "psr-4": { "Symfony\\Polyfill\\Mbstring\\": "" - } + }, + "files": [ + "bootstrap.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -24624,136 +10136,39 @@ "portable", "shim" ], - "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.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-09-09T11:45:10+00:00" + "time": "2019-08-06T08:03:45+00:00" }, { - "name": "symfony/polyfill-php80", - "version": "v1.32.0", + "name": "symfony/polyfill-php70", + "version": "v1.12.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608" + "url": "https://github.com/symfony/polyfill-php70.git", + "reference": "54b4c428a0054e254223797d2713c31e08610831" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608", - "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608", + "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/54b4c428a0054e254223797d2713c31e08610831", + "reference": "54b4c428a0054e254223797d2713c31e08610831", "shasum": "" }, "require": { - "php": ">=7.2" + "paragonie/random_compat": "~1.0|~2.0|~9.99", + "php": ">=5.3.3" }, "type": "library", "extra": { - "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" + "branch-alias": { + "dev-master": "1.12-dev" } }, "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Php70\\": "" + }, "files": [ "bootstrap.php" ], - "psr-4": { - "Symfony\\Polyfill\\Php80\\": "" - }, - "classmap": [ - "Resources/stubs" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Ion Bazan", - "email": "ion.bazan@gmail.com" - }, - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "polyfill", - "portable", - "shim" - ], - "support": { - "source": "https://github.com/symfony/polyfill-php80/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-01-02T08:10:11+00:00" - }, - { - "name": "symfony/polyfill-php81", - "version": "v1.32.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-php81.git", - "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c", - "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c", - "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\\Php81\\": "" - }, "classmap": [ "Resources/stubs" ] @@ -24772,7 +10187,7 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions", + "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "compatibility", @@ -24780,58 +10195,37 @@ "portable", "shim" ], - "support": { - "source": "https://github.com/symfony/polyfill-php81/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": "2024-09-09T11:45:10+00:00" + "time": "2019-08-06T08:03:45+00:00" }, { - "name": "symfony/polyfill-php83", - "version": "v1.31.0", + "name": "symfony/polyfill-php72", + "version": "v1.12.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-php83.git", - "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491" + "url": "https://github.com/symfony/polyfill-php72.git", + "reference": "04ce3335667451138df4307d6a9b61565560199e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491", - "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/04ce3335667451138df4307d6a9b61565560199e", + "reference": "04ce3335667451138df4307d6a9b61565560199e", "shasum": "" }, "require": { - "php": ">=7.2" + "php": ">=5.3.3" }, "type": "library", "extra": { - "thanks": { - "url": "https://github.com/symfony/polyfill", - "name": "symfony/polyfill" + "branch-alias": { + "dev-master": "1.12-dev" } }, "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Php72\\": "" + }, "files": [ "bootstrap.php" - ], - "psr-4": { - "Symfony\\Polyfill\\Php83\\": "" - }, - "classmap": [ - "Resources/stubs" ] }, "notification-url": "https://packagist.org/downloads/", @@ -24848,7 +10242,7 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions", + "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ "compatibility", @@ -24856,119 +10250,31 @@ "portable", "shim" ], - "support": { - "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.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-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": "2019-08-06T08:03:45+00:00" }, { "name": "symfony/process", - "version": "v6.4.20", + "version": "v3.4.31", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "e2a61c16af36c9a07e5c9906498b73e091949a20" + "reference": "d822cb654000a95b7855362c0d5b127f6a6d8baa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/e2a61c16af36c9a07e5c9906498b73e091949a20", - "reference": "e2a61c16af36c9a07e5c9906498b73e091949a20", + "url": "https://api.github.com/repos/symfony/process/zipball/d822cb654000a95b7855362c0d5b127f6a6d8baa", + "reference": "d822cb654000a95b7855362c0d5b127f6a6d8baa", "shasum": "" }, "require": { - "php": ">=8.1" + "php": "^5.5.9|>=7.0.8" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + } + }, "autoload": { "psr-4": { "Symfony\\Component\\Process\\": "" @@ -24991,61 +10297,43 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Executes commands in sub-processes", + "description": "Symfony Process Component", "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/process/tree/v6.4.20" - }, - "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-03-10T17:11:00+00:00" + "time": "2019-08-26T07:52:58+00:00" }, { "name": "symfony/psr-http-message-bridge", - "version": "v6.4.13", + "version": "v1.2.0", "source": { "type": "git", "url": "https://github.com/symfony/psr-http-message-bridge.git", - "reference": "c9cf83326a1074f83a738fc5320945abf7fb7fec" + "reference": "9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/c9cf83326a1074f83a738fc5320945abf7fb7fec", - "reference": "c9cf83326a1074f83a738fc5320945abf7fb7fec", + "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad", + "reference": "9ab9d71f97d5c7d35a121a7fb69f74fee95cd0ad", "shasum": "" }, "require": { - "php": ">=8.1", - "psr/http-message": "^1.0|^2.0", - "symfony/http-foundation": "^5.4|^6.0|^7.0" - }, - "conflict": { - "php-http/discovery": "<1.15", - "symfony/http-kernel": "<6.2" + "php": "^7.1", + "psr/http-message": "^1.0", + "symfony/http-foundation": "^3.4 || ^4.0" }, "require-dev": { "nyholm/psr7": "^1.1", - "php-http/discovery": "^1.15", - "psr/log": "^1.1.4|^2|^3", - "symfony/browser-kit": "^5.4|^6.0|^7.0", - "symfony/config": "^5.4|^6.0|^7.0", - "symfony/event-dispatcher": "^5.4|^6.0|^7.0", - "symfony/framework-bundle": "^6.2|^7.0", - "symfony/http-kernel": "^6.2|^7.0" + "symfony/phpunit-bridge": "^3.4.20 || ^4.0", + "zendframework/zend-diactoros": "^1.4.1 || ^2.0" + }, + "suggest": { + "nyholm/psr7": "For a super lightweight PSR-7/17 implementation" }, "type": "symfony-bridge", + "extra": { + "branch-alias": { + "dev-master": "1.2-dev" + } + }, "autoload": { "psr-4": { "Symfony\\Bridge\\PsrHttpMessage\\": "" @@ -25060,75 +10348,68 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "name": "Symfony Community", + "homepage": "http://symfony.com/contributors" }, { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" } ], "description": "PSR HTTP message bridge", - "homepage": "https://symfony.com", + "homepage": "http://symfony.com", "keywords": [ "http", "http-message", "psr-17", "psr-7" ], - "support": { - "source": "https://github.com/symfony/psr-http-message-bridge/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": "2019-03-11T18:22:33+00:00" }, { "name": "symfony/routing", - "version": "v6.4.22", + "version": "v3.4.31", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "1f5234e8457164a3a0038a4c0a4ba27876a9c670" + "reference": "8b0faa681c4ee14701e76a7056fef15ac5384163" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/1f5234e8457164a3a0038a4c0a4ba27876a9c670", - "reference": "1f5234e8457164a3a0038a4c0a4ba27876a9c670", + "url": "https://api.github.com/repos/symfony/routing/zipball/8b0faa681c4ee14701e76a7056fef15ac5384163", + "reference": "8b0faa681c4ee14701e76a7056fef15ac5384163", "shasum": "" }, "require": { - "php": ">=8.1", - "symfony/deprecation-contracts": "^2.5|^3" + "php": "^5.5.9|>=7.0.8" }, "conflict": { - "doctrine/annotations": "<1.12", - "symfony/config": "<6.2", - "symfony/dependency-injection": "<5.4", - "symfony/yaml": "<5.4" + "symfony/config": "<3.3.1", + "symfony/dependency-injection": "<3.3", + "symfony/yaml": "<3.4" }, "require-dev": { - "doctrine/annotations": "^1.12|^2", - "psr/log": "^1|^2|^3", - "symfony/config": "^6.2|^7.0", - "symfony/dependency-injection": "^5.4|^6.0|^7.0", - "symfony/expression-language": "^5.4|^6.0|^7.0", - "symfony/http-foundation": "^5.4|^6.0|^7.0", - "symfony/yaml": "^5.4|^6.0|^7.0" + "doctrine/annotations": "~1.0", + "psr/log": "~1.0", + "symfony/config": "^3.3.1|~4.0", + "symfony/dependency-injection": "~3.3|~4.0", + "symfony/expression-language": "~2.8|~3.0|~4.0", + "symfony/http-foundation": "~2.8|~3.0|~4.0", + "symfony/yaml": "~3.4|~4.0" + }, + "suggest": { + "doctrine/annotations": "For using the annotation loader", + "symfony/config": "For using the all-in-one router or any loader", + "symfony/expression-language": "For using expression matching", + "symfony/http-foundation": "For using a Symfony Request object", + "symfony/yaml": "For using the YAML loader" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + } + }, "autoload": { "psr-4": { "Symfony\\Component\\Routing\\": "" @@ -25151,7 +10432,7 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Maps an HTTP request to a set of configuration variables", + "description": "Symfony Routing Component", "homepage": "https://symfony.com", "keywords": [ "router", @@ -25159,80 +10440,61 @@ "uri", "url" ], - "support": { - "source": "https://github.com/symfony/routing/tree/v6.4.22" - }, - "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-04-27T16:08:38+00:00" + "time": "2019-08-26T07:50:50+00:00" }, { "name": "symfony/serializer", - "version": "v6.4.23", + "version": "v3.4.31", "source": { "type": "git", "url": "https://github.com/symfony/serializer.git", - "reference": "b40a697a2bb2c3d841a1f9e34a8a9f50bf9d1d06" + "reference": "758c3cb8cd4a949ee76ee457450abdc80ea82aa1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/serializer/zipball/b40a697a2bb2c3d841a1f9e34a8a9f50bf9d1d06", - "reference": "b40a697a2bb2c3d841a1f9e34a8a9f50bf9d1d06", + "url": "https://api.github.com/repos/symfony/serializer/zipball/758c3cb8cd4a949ee76ee457450abdc80ea82aa1", + "reference": "758c3cb8cd4a949ee76ee457450abdc80ea82aa1", "shasum": "" }, "require": { - "php": ">=8.1", - "symfony/deprecation-contracts": "^2.5|^3", + "php": "^5.5.9|>=7.0.8", "symfony/polyfill-ctype": "~1.8" }, "conflict": { - "doctrine/annotations": "<1.12", - "phpdocumentor/reflection-docblock": "<3.2.2", - "phpdocumentor/type-resolver": "<1.4.0", - "symfony/dependency-injection": "<5.4", - "symfony/property-access": "<5.4", - "symfony/property-info": "<5.4.24|>=6,<6.2.11", - "symfony/uid": "<5.4", - "symfony/validator": "<6.4", - "symfony/yaml": "<5.4" + "phpdocumentor/type-resolver": "<0.2.1", + "symfony/dependency-injection": "<3.2", + "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4", + "symfony/property-info": "<3.1", + "symfony/yaml": "<3.4" }, "require-dev": { - "doctrine/annotations": "^1.12|^2", - "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0", - "seld/jsonlint": "^1.10", - "symfony/cache": "^5.4|^6.0|^7.0", - "symfony/config": "^5.4|^6.0|^7.0", - "symfony/console": "^5.4|^6.0|^7.0", - "symfony/dependency-injection": "^5.4|^6.0|^7.0", - "symfony/error-handler": "^5.4|^6.0|^7.0", - "symfony/filesystem": "^5.4|^6.0|^7.0", - "symfony/form": "^5.4|^6.0|^7.0", - "symfony/http-foundation": "^5.4|^6.0|^7.0", - "symfony/http-kernel": "^5.4|^6.0|^7.0", - "symfony/messenger": "^5.4|^6.0|^7.0", - "symfony/mime": "^5.4|^6.0|^7.0", - "symfony/property-access": "^5.4.26|^6.3|^7.0", - "symfony/property-info": "^5.4.24|^6.2.11|^7.0", - "symfony/translation-contracts": "^2.5|^3", - "symfony/uid": "^5.4|^6.0|^7.0", - "symfony/validator": "^6.4|^7.0", - "symfony/var-dumper": "^5.4|^6.0|^7.0", - "symfony/var-exporter": "^5.4|^6.0|^7.0", - "symfony/yaml": "^5.4|^6.0|^7.0" + "doctrine/annotations": "~1.0", + "doctrine/cache": "~1.0", + "phpdocumentor/reflection-docblock": "^3.0|^4.0", + "symfony/cache": "~3.1|~4.0", + "symfony/config": "~2.8|~3.0|~4.0", + "symfony/dependency-injection": "~3.2|~4.0", + "symfony/http-foundation": "~2.8|~3.0|~4.0", + "symfony/property-access": "~2.8|~3.0|~4.0", + "symfony/property-info": "^3.4.13|~4.0", + "symfony/yaml": "~3.4|~4.0" + }, + "suggest": { + "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.", + "doctrine/cache": "For using the default cached annotation reader and metadata cache.", + "psr/cache-implementation": "For using the metadata cache.", + "symfony/config": "For using the XML mapping loader.", + "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.", + "symfony/property-access": "For using the ObjectNormalizer.", + "symfony/property-info": "To deserialize relations.", + "symfony/yaml": "For using the default YAML mapping loader." }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + } + }, "autoload": { "psr-4": { "Symfony\\Component\\Serializer\\": "" @@ -25255,334 +10517,60 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.", + "description": "Symfony Serializer Component", "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/serializer/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-27T15:34:20+00:00" + "time": "2019-08-26T07:52:58+00:00" }, { - "name": "symfony/service-contracts", - "version": "v3.5.1", + "name": "symfony/translation", + "version": "v3.4.31", "source": { "type": "git", - "url": "https://github.com/symfony/service-contracts.git", - "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0" + "url": "https://github.com/symfony/translation.git", + "reference": "49a884e9ac297f99c56052bad30b2af89f716ee1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0", - "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0", + "url": "https://api.github.com/repos/symfony/translation/zipball/49a884e9ac297f99c56052bad30b2af89f716ee1", + "reference": "49a884e9ac297f99c56052bad30b2af89f716ee1", "shasum": "" }, "require": { - "php": ">=8.1", - "psr/container": "^1.1|^2.0", - "symfony/deprecation-contracts": "^2.5|^3" - }, - "conflict": { - "ext-psr": "<1.1|>=2" - }, - "type": "library", - "extra": { - "thanks": { - "url": "https://github.com/symfony/contracts", - "name": "symfony/contracts" - }, - "branch-alias": { - "dev-main": "3.5-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Contracts\\Service\\": "" - }, - "exclude-from-classmap": [ - "/Test/" - ] - }, - "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": "Generic abstractions related to writing services", - "homepage": "https://symfony.com", - "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" - ], - "support": { - "source": "https://github.com/symfony/service-contracts/tree/v3.5.1" - }, - "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:20:29+00:00" - }, - { - "name": "symfony/string", - "version": "v6.4.21", - "source": { - "type": "git", - "url": "https://github.com/symfony/string.git", - "reference": "73e2c6966a5aef1d4892873ed5322245295370c6" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/73e2c6966a5aef1d4892873ed5322245295370c6", - "reference": "73e2c6966a5aef1d4892873ed5322245295370c6", - "shasum": "" - }, - "require": { - "php": ">=8.1", - "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-intl-grapheme": "~1.0", - "symfony/polyfill-intl-normalizer": "~1.0", + "php": "^5.5.9|>=7.0.8", "symfony/polyfill-mbstring": "~1.0" }, "conflict": { - "symfony/translation-contracts": "<2.5" + "symfony/config": "<2.8", + "symfony/dependency-injection": "<3.4", + "symfony/yaml": "<3.4" }, "require-dev": { - "symfony/error-handler": "^5.4|^6.0|^7.0", - "symfony/http-client": "^5.4|^6.0|^7.0", - "symfony/intl": "^6.2|^7.0", - "symfony/translation-contracts": "^2.5|^3.0", - "symfony/var-exporter": "^5.4|^6.0|^7.0" + "psr/log": "~1.0", + "symfony/config": "~2.8|~3.0|~4.0", + "symfony/dependency-injection": "~3.4|~4.0", + "symfony/finder": "~2.8|~3.0|~4.0", + "symfony/http-kernel": "~3.4|~4.0", + "symfony/intl": "^2.8.18|^3.2.5|~4.0", + "symfony/var-dumper": "~3.4|~4.0", + "symfony/yaml": "~3.4|~4.0" }, - "type": "library", - "autoload": { - "files": [ - "Resources/functions.php" - ], - "psr-4": { - "Symfony\\Component\\String\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "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": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way", - "homepage": "https://symfony.com", - "keywords": [ - "grapheme", - "i18n", - "string", - "unicode", - "utf-8", - "utf8" - ], - "support": { - "source": "https://github.com/symfony/string/tree/v6.4.21" - }, - "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-04-18T15:23:29+00:00" - }, - { - "name": "symfony/translation-contracts", - "version": "v3.5.1", - "source": { - "type": "git", - "url": "https://github.com/symfony/translation-contracts.git", - "reference": "4667ff3bd513750603a09c8dedbea942487fb07c" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c", - "reference": "4667ff3bd513750603a09c8dedbea942487fb07c", - "shasum": "" - }, - "require": { - "php": ">=8.1" + "suggest": { + "psr/log-implementation": "To use logging capability in translator", + "symfony/config": "", + "symfony/yaml": "" }, "type": "library", "extra": { - "thanks": { - "url": "https://github.com/symfony/contracts", - "name": "symfony/contracts" - }, "branch-alias": { - "dev-main": "3.5-dev" + "dev-master": "3.4-dev" } }, "autoload": { "psr-4": { - "Symfony\\Contracts\\Translation\\": "" + "Symfony\\Component\\Translation\\": "" }, "exclude-from-classmap": [ - "/Test/" - ] - }, - "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": "Generic abstractions related to translation", - "homepage": "https://symfony.com", - "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" - ], - "support": { - "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1" - }, - "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:20:29+00:00" - }, - { - "name": "symfony/validator", - "version": "v6.4.23", - "source": { - "type": "git", - "url": "https://github.com/symfony/validator.git", - "reference": "6506760ab57e7cda5bde9cdaed736526162284bc" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/validator/zipball/6506760ab57e7cda5bde9cdaed736526162284bc", - "reference": "6506760ab57e7cda5bde9cdaed736526162284bc", - "shasum": "" - }, - "require": { - "php": ">=8.1", - "symfony/deprecation-contracts": "^2.5|^3", - "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-mbstring": "~1.0", - "symfony/polyfill-php83": "^1.27", - "symfony/translation-contracts": "^2.5|^3" - }, - "conflict": { - "doctrine/annotations": "<1.13", - "doctrine/lexer": "<1.1", - "symfony/dependency-injection": "<5.4", - "symfony/expression-language": "<5.4", - "symfony/http-kernel": "<5.4", - "symfony/intl": "<5.4", - "symfony/property-info": "<5.4", - "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3", - "symfony/yaml": "<5.4" - }, - "require-dev": { - "doctrine/annotations": "^1.13|^2", - "egulias/email-validator": "^2.1.10|^3|^4", - "symfony/cache": "^5.4|^6.0|^7.0", - "symfony/config": "^5.4|^6.0|^7.0", - "symfony/console": "^5.4|^6.0|^7.0", - "symfony/dependency-injection": "^5.4|^6.0|^7.0", - "symfony/expression-language": "^5.4|^6.0|^7.0", - "symfony/finder": "^5.4|^6.0|^7.0", - "symfony/http-client": "^5.4|^6.0|^7.0", - "symfony/http-foundation": "^5.4|^6.0|^7.0", - "symfony/http-kernel": "^5.4|^6.0|^7.0", - "symfony/intl": "^5.4|^6.0|^7.0", - "symfony/mime": "^5.4|^6.0|^7.0", - "symfony/property-access": "^5.4|^6.0|^7.0", - "symfony/property-info": "^5.4|^6.0|^7.0", - "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3", - "symfony/yaml": "^5.4|^6.0|^7.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\Validator\\": "" - }, - "exclude-from-classmap": [ - "/Tests/", - "/Resources/bin/" + "/Tests/" ] }, "notification-url": "https://packagist.org/downloads/", @@ -25599,62 +10587,139 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Provides tools to validate values", + "description": "Symfony Translation Component", "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/validator/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-26T07:25:45+00:00" + "time": "2019-08-26T07:52:58+00:00" }, { - "name": "symfony/var-dumper", - "version": "v6.4.23", + "name": "symfony/validator", + "version": "v3.4.31", "source": { "type": "git", - "url": "https://github.com/symfony/var-dumper.git", - "reference": "d55b1834cdbfcc31bc2cd7e095ba5ed9a88f6600" + "url": "https://github.com/symfony/validator.git", + "reference": "4dde4e74331ffa897c31e4423d02ae08d56f7784" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/d55b1834cdbfcc31bc2cd7e095ba5ed9a88f6600", - "reference": "d55b1834cdbfcc31bc2cd7e095ba5ed9a88f6600", + "url": "https://api.github.com/repos/symfony/validator/zipball/4dde4e74331ffa897c31e4423d02ae08d56f7784", + "reference": "4dde4e74331ffa897c31e4423d02ae08d56f7784", "shasum": "" }, "require": { - "php": ">=8.1", - "symfony/deprecation-contracts": "^2.5|^3", - "symfony/polyfill-mbstring": "~1.0" + "php": "^5.5.9|>=7.0.8", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-mbstring": "~1.0", + "symfony/translation": "~2.8|~3.0|~4.0" }, "conflict": { - "symfony/console": "<5.4" + "doctrine/lexer": "<1.0.2", + "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0", + "symfony/dependency-injection": "<3.3", + "symfony/http-kernel": "<3.3.5", + "symfony/yaml": "<3.4" + }, + "require-dev": { + "doctrine/annotations": "~1.7", + "doctrine/cache": "~1.0", + "egulias/email-validator": "^2.1.10", + "symfony/cache": "~3.1|~4.0", + "symfony/config": "~2.8|~3.0|~4.0", + "symfony/dependency-injection": "~3.3|~4.0", + "symfony/expression-language": "~2.8|~3.0|~4.0", + "symfony/http-foundation": "~2.8|~3.0|~4.0", + "symfony/http-kernel": "^3.3.5|~4.0", + "symfony/intl": "^2.8.18|^3.2.5|~4.0", + "symfony/property-access": "~2.8|~3.0|~4.0", + "symfony/var-dumper": "~3.3|~4.0", + "symfony/yaml": "~3.4|~4.0" + }, + "suggest": { + "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.", + "doctrine/cache": "For using the default cached annotation reader and metadata cache.", + "egulias/email-validator": "Strict (RFC compliant) email validation", + "psr/cache-implementation": "For using the metadata cache.", + "symfony/config": "", + "symfony/expression-language": "For using the Expression validator", + "symfony/http-foundation": "", + "symfony/intl": "", + "symfony/property-access": "For accessing properties within comparison constraints", + "symfony/yaml": "" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\Validator\\": "" + }, + "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": "Symfony Validator Component", + "homepage": "https://symfony.com", + "time": "2019-08-26T07:52:58+00:00" + }, + { + "name": "symfony/var-dumper", + "version": "v4.3.4", + "source": { + "type": "git", + "url": "https://github.com/symfony/var-dumper.git", + "reference": "641043e0f3e615990a0f29479f9c117e8a6698c6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/641043e0f3e615990a0f29479f9c117e8a6698c6", + "reference": "641043e0f3e615990a0f29479f9c117e8a6698c6", + "shasum": "" + }, + "require": { + "php": "^7.1.3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/polyfill-php72": "~1.5" + }, + "conflict": { + "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0", + "symfony/console": "<3.4" }, "require-dev": { "ext-iconv": "*", - "symfony/console": "^5.4|^6.0|^7.0", - "symfony/error-handler": "^6.3|^7.0", - "symfony/http-kernel": "^5.4|^6.0|^7.0", - "symfony/process": "^5.4|^6.0|^7.0", - "symfony/uid": "^5.4|^6.0|^7.0", - "twig/twig": "^2.13|^3.0.4" + "symfony/console": "~3.4|~4.0", + "symfony/process": "~3.4|~4.0", + "twig/twig": "~1.34|~2.4" + }, + "suggest": { + "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).", + "ext-intl": "To show region name in time zone dump", + "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script" }, "bin": [ "Resources/bin/var-dump-server" ], "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.3-dev" + } + }, "autoload": { "files": [ "Resources/functions/dump.php" @@ -25680,137 +10745,47 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Provides mechanisms for walking through any arbitrary PHP variable", + "description": "Symfony mechanism for exploring and dumping PHP variables", "homepage": "https://symfony.com", "keywords": [ "debug", "dump" ], - "support": { - "source": "https://github.com/symfony/var-dumper/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-27T15:05:27+00:00" - }, - { - "name": "symfony/var-exporter", - "version": "v6.4.22", - "source": { - "type": "git", - "url": "https://github.com/symfony/var-exporter.git", - "reference": "f28cf841f5654955c9f88ceaf4b9dc29571988a9" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/var-exporter/zipball/f28cf841f5654955c9f88ceaf4b9dc29571988a9", - "reference": "f28cf841f5654955c9f88ceaf4b9dc29571988a9", - "shasum": "" - }, - "require": { - "php": ">=8.1", - "symfony/deprecation-contracts": "^2.5|^3" - }, - "require-dev": { - "symfony/property-access": "^6.4|^7.0", - "symfony/serializer": "^6.4|^7.0", - "symfony/var-dumper": "^5.4|^6.0|^7.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\VarExporter\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "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": "Allows exporting any serializable PHP data structure to plain PHP code", - "homepage": "https://symfony.com", - "keywords": [ - "clone", - "construct", - "export", - "hydrate", - "instantiate", - "lazy-loading", - "proxy", - "serialize" - ], - "support": { - "source": "https://github.com/symfony/var-exporter/tree/v6.4.22" - }, - "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-05-14T13:00:13+00:00" + "time": "2019-08-26T08:26:39+00:00" }, { "name": "symfony/yaml", - "version": "v6.4.23", + "version": "v3.4.31", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "93e29e0deb5f1b2e360adfb389a20d25eb81a27b" + "reference": "3dc414b7db30695bae671a1d86013d03f4ae9834" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/93e29e0deb5f1b2e360adfb389a20d25eb81a27b", - "reference": "93e29e0deb5f1b2e360adfb389a20d25eb81a27b", + "url": "https://api.github.com/repos/symfony/yaml/zipball/3dc414b7db30695bae671a1d86013d03f4ae9834", + "reference": "3dc414b7db30695bae671a1d86013d03f4ae9834", "shasum": "" }, "require": { - "php": ">=8.1", - "symfony/deprecation-contracts": "^2.5|^3", - "symfony/polyfill-ctype": "^1.8" + "php": "^5.5.9|>=7.0.8", + "symfony/polyfill-ctype": "~1.8" }, "conflict": { - "symfony/console": "<5.4" + "symfony/console": "<3.4" }, "require-dev": { - "symfony/console": "^5.4|^6.0|^7.0" + "symfony/console": "~3.4|~4.0" + }, + "suggest": { + "symfony/console": "For validating YAML files using the lint command" }, - "bin": [ - "Resources/bin/yaml-lint" - ], "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + } + }, "autoload": { "psr-4": { "Symfony\\Component\\Yaml\\": "" @@ -25833,175 +10808,43 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Loads and dumps YAML files", + "description": "Symfony Yaml Component", "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/yaml/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-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" - }, - { - "name": "thinkshout/mailchimp-api-php", - "version": "v3.0.1", - "source": { - "type": "git", - "url": "https://github.com/thinkshout/mailchimp-api-php.git", - "reference": "466e4bd2a36ff052418cf2a24a611e91ac5c2929" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/thinkshout/mailchimp-api-php/zipball/466e4bd2a36ff052418cf2a24a611e91ac5c2929", - "reference": "466e4bd2a36ff052418cf2a24a611e91ac5c2929", - "shasum": "" - }, - "require": { - "guzzlehttp/guzzle": "^6.5.8|^7.4.5", - "php": ">=5.4.0" - }, - "require-dev": { - "phpunit/phpunit": "^6.2.2|^7.0|^8.0|^9.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Mailchimp\\": "src/", - "Mailchimp\\http\\": "src/http/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-2.0-or-later" - ], - "description": "PHP library for v3 of the MailChimp API", - "homepage": "https://github.com/thinkshout/mailchimp-api-php", - "keywords": [ - "mail", - "mailchimp" - ], - "support": { - "issues": "https://github.com/thinkshout/mailchimp-api-php/issues", - "source": "https://github.com/thinkshout/mailchimp-api-php/tree/v3.0.1" - }, - "time": "2023-12-08T18:46:31+00:00" + "time": "2019-08-20T13:31:17+00:00" }, { "name": "twig/twig", - "version": "v3.20.0", + "version": "v1.42.3", "source": { "type": "git", "url": "https://github.com/twigphp/Twig.git", - "reference": "3468920399451a384bef53cf7996965f7cd40183" + "reference": "201baee843e0ffe8b0b956f336dd42b2a92fae4e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/twigphp/Twig/zipball/3468920399451a384bef53cf7996965f7cd40183", - "reference": "3468920399451a384bef53cf7996965f7cd40183", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/201baee843e0ffe8b0b956f336dd42b2a92fae4e", + "reference": "201baee843e0ffe8b0b956f336dd42b2a92fae4e", "shasum": "" }, "require": { - "php": ">=8.1.0", - "symfony/deprecation-contracts": "^2.5|^3", - "symfony/polyfill-ctype": "^1.8", - "symfony/polyfill-mbstring": "^1.3" + "php": ">=5.5.0", + "symfony/polyfill-ctype": "^1.8" }, "require-dev": { - "phpstan/phpstan": "^2.0", - "psr/container": "^1.0|^2.0", - "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0" + "psr/container": "^1.0", + "symfony/debug": "^3.4|^4.2", + "symfony/phpunit-bridge": "^4.4@dev|^5.0" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.42-dev" + } + }, "autoload": { - "files": [ - "src/Resources/core.php", - "src/Resources/debug.php", - "src/Resources/escaper.php", - "src/Resources/string_loader.php" - ], + "psr-0": { + "Twig_": "lib/" + }, "psr-4": { "Twig\\": "src/" } @@ -26013,18 +10856,19 @@ "authors": [ { "name": "Fabien Potencier", + "role": "Lead Developer", "email": "fabien@symfony.com", - "homepage": "http://fabien.potencier.org", - "role": "Lead Developer" + "homepage": "http://fabien.potencier.org" }, { "name": "Twig Team", - "role": "Contributors" + "role": "Contributors", + "homepage": "https://twig.symfony.com/contributors" }, { "name": "Armin Ronacher", - "email": "armin.ronacher@active-4.com", - "role": "Project Founder" + "role": "Project Founder", + "email": "armin.ronacher@active-4.com" } ], "description": "Twig, the flexible, fast, and secure template language for PHP", @@ -26032,204 +10876,84 @@ "keywords": [ "templating" ], - "support": { - "issues": "https://github.com/twigphp/Twig/issues", - "source": "https://github.com/twigphp/Twig/tree/v3.20.0" - }, - "funding": [ - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/twig/twig", - "type": "tidelift" - } - ], - "time": "2025-02-13T08:34:43+00:00" + "time": "2019-08-24T12:51:03+00:00" }, { - "name": "vlucas/phpdotenv", - "version": "v5.6.2", + "name": "typo3/phar-stream-wrapper", + "version": "v2.1.2", "source": { "type": "git", - "url": "https://github.com/vlucas/phpdotenv.git", - "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af" + "url": "https://github.com/TYPO3/phar-stream-wrapper.git", + "reference": "057622f5a3b92a5ffbea0fbaadce573500a62870" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/24ac4c74f91ee2c193fa1aaa5c249cb0822809af", - "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af", + "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/057622f5a3b92a5ffbea0fbaadce573500a62870", + "reference": "057622f5a3b92a5ffbea0fbaadce573500a62870", "shasum": "" }, "require": { - "ext-pcre": "*", - "graham-campbell/result-type": "^1.1.3", - "php": "^7.2.5 || ^8.0", - "phpoption/phpoption": "^1.9.3", - "symfony/polyfill-ctype": "^1.24", - "symfony/polyfill-mbstring": "^1.24", - "symfony/polyfill-php80": "^1.24" + "brumann/polyfill-unserialize": "^1.0", + "ext-json": "*", + "php": "^5.3.3|^7.0" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.8.2", - "ext-filter": "*", - "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2" + "ext-xdebug": "*", + "phpunit/phpunit": "^4.8.36" }, "suggest": { - "ext-filter": "Required to use the boolean validator." + "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing" }, "type": "library", - "extra": { - "bamarni-bin": { - "bin-links": true, - "forward-command": false - }, - "branch-alias": { - "dev-master": "5.6-dev" - } - }, "autoload": { "psr-4": { - "Dotenv\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "authors": [ - { - "name": "Graham Campbell", - "email": "hello@gjcampbell.co.uk", - "homepage": "https://github.com/GrahamCampbell" - }, - { - "name": "Vance Lucas", - "email": "vance@vancelucas.com", - "homepage": "https://github.com/vlucas" - } - ], - "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", - "keywords": [ - "dotenv", - "env", - "environment" - ], - "support": { - "issues": "https://github.com/vlucas/phpdotenv/issues", - "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.2" - }, - "funding": [ - { - "url": "https://github.com/GrahamCampbell", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv", - "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/" + "TYPO3\\PharStreamWrapper\\": "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", + "description": "Interceptors for PHP's native phar:// stream handling", + "homepage": "https://typo3.org/", "keywords": [ - "crawler", - "dom", - "html" + "phar", + "php", + "security", + "stream-wrapper" ], - "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": "2019-05-14T13:14:31+00:00" }, { "name": "webflo/drupal-finder", - "version": "1.3.1", + "version": "1.2.0", "source": { "type": "git", "url": "https://github.com/webflo/drupal-finder.git", - "reference": "73045060b0894c77962a10cff047f72872d8810c" + "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/73045060b0894c77962a10cff047f72872d8810c", - "reference": "73045060b0894c77962a10cff047f72872d8810c", + "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/123e248e14ee8dd3fbe89fb5a733a6cf91f5820e", + "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e", "shasum": "" }, "require": { - "composer-runtime-api": "^2.2", - "php": ">=8.1" + "ext-json": "*" }, "require-dev": { "mikey179/vfsstream": "^1.6", - "phpunit/phpunit": "^10.4", - "symfony/process": "^6.4" + "phpunit/phpunit": "^4.8" }, "type": "library", "autoload": { - "psr-4": { - "DrupalFinder\\": "src/" - } + "classmap": [ + "src/DrupalFinder.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { @@ -26237,42 +10961,34 @@ "email": "florian@webflo.org" } ], - "description": "Helper class to locate a Drupal installation.", - "support": { - "issues": "https://github.com/webflo/drupal-finder/issues", - "source": "https://github.com/webflo/drupal-finder/tree/1.3.1" - }, - "time": "2024-06-28T13:45:36+00:00" + "description": "Helper class to locate a Drupal installation from a given path.", + "time": "2019-08-02T08:06:18+00:00" }, { "name": "webmozart/assert", - "version": "1.11.0", + "version": "1.5.0", "source": { "type": "git", - "url": "https://github.com/webmozarts/assert.git", - "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" + "url": "https://github.com/webmozart/assert.git", + "reference": "88e6d84706d09a236046d686bbea96f07b3a34f4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", - "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", + "url": "https://api.github.com/repos/webmozart/assert/zipball/88e6d84706d09a236046d686bbea96f07b3a34f4", + "reference": "88e6d84706d09a236046d686bbea96f07b3a34f4", "shasum": "" }, "require": { - "ext-ctype": "*", - "php": "^7.2 || ^8.0" - }, - "conflict": { - "phpstan/phpstan": "<0.12.20", - "vimeo/psalm": "<4.6.1 || 4.6.2" + "php": "^5.3.3 || ^7.0", + "symfony/polyfill-ctype": "^1.8" }, "require-dev": { - "phpunit/phpunit": "^8.5.13" + "phpunit/phpunit": "^4.8.36 || ^7.5.13" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.10-dev" + "dev-master": "1.3-dev" } }, "autoload": { @@ -26296,147 +11012,39 @@ "check", "validate" ], - "support": { - "issues": "https://github.com/webmozarts/assert/issues", - "source": "https://github.com/webmozarts/assert/tree/1.11.0" - }, - "time": "2022-06-03T18:03:27+00:00" - } - ], - "packages-dev": [ - { - "name": "behat/behat", - "version": "v3.23.0", - "source": { - "type": "git", - "url": "https://github.com/Behat/Behat.git", - "reference": "c465af8756adaaa6d962c3176a0a6c594361809b" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Behat/Behat/zipball/c465af8756adaaa6d962c3176a0a6c594361809b", - "reference": "c465af8756adaaa6d962c3176a0a6c594361809b", - "shasum": "" - }, - "require": { - "behat/gherkin": "^4.12.0", - "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", - "symfony/console": "^5.4 || ^6.4 || ^7.0", - "symfony/dependency-injection": "^5.4 || ^6.4 || ^7.0", - "symfony/event-dispatcher": "^5.4 || ^6.4 || ^7.0", - "symfony/translation": "^5.4 || ^6.4 || ^7.0", - "symfony/yaml": "^5.4 || ^6.4 || ^7.0" - }, - "require-dev": { - "friendsofphp/php-cs-fixer": "^3.68", - "phpstan/phpstan": "^2.0", - "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" - }, - "suggest": { - "ext-dom": "Needed to output test results in JUnit format." - }, - "bin": [ - "bin/behat" - ], - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.x-dev" - } - }, - "autoload": { - "psr-4": { - "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/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Konstantin Kudryashov", - "email": "ever.zet@gmail.com", - "homepage": "http://everzet.com" - } - ], - "description": "Scenario-oriented BDD framework for PHP", - "homepage": "https://behat.org/", - "keywords": [ - "Agile", - "BDD", - "ScenarioBDD", - "Scrum", - "StoryBDD", - "User story", - "business", - "development", - "documentation", - "examples", - "symfony", - "testing" - ], - "support": { - "issues": "https://github.com/Behat/Behat/issues", - "source": "https://github.com/Behat/Behat/tree/v3.23.0" - }, - "time": "2025-07-15T16:58:54+00:00" + "time": "2019-08-24T08:43:50+00:00" }, { - "name": "behat/gherkin", - "version": "v4.14.0", + "name": "webmozart/path-util", + "version": "2.3.0", "source": { "type": "git", - "url": "https://github.com/Behat/Gherkin.git", - "reference": "34c9b59c59355a7b4c53b9f041c8dbd1c8acc3b4" + "url": "https://github.com/webmozart/path-util.git", + "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Behat/Gherkin/zipball/34c9b59c59355a7b4c53b9f041c8dbd1c8acc3b4", - "reference": "34c9b59c59355a7b4c53b9f041c8dbd1c8acc3b4", + "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725", + "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725", "shasum": "" }, "require": { - "composer-runtime-api": "^2.2", - "php": "8.1.* || 8.2.* || 8.3.* || 8.4.*" + "php": ">=5.3.3", + "webmozart/assert": "~1.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" - }, - "suggest": { - "symfony/yaml": "If you want to parse features, represented in YAML files" + "phpunit/phpunit": "^4.6", + "sebastian/version": "^1.0.1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.x-dev" + "dev-master": "2.3-dev" } }, "autoload": { "psr-4": { - "Behat\\Gherkin\\": "src/" + "Webmozart\\PathUtil\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -26445,757 +11053,249 @@ ], "authors": [ { - "name": "Konstantin Kudryashov", - "email": "ever.zet@gmail.com", - "homepage": "https://everzet.com" + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" } ], - "description": "Gherkin DSL parser for PHP", - "homepage": "https://behat.org/", - "keywords": [ - "BDD", - "Behat", - "Cucumber", - "DSL", - "gherkin", - "parser" - ], - "support": { - "issues": "https://github.com/Behat/Gherkin/issues", - "source": "https://github.com/Behat/Gherkin/tree/v4.14.0" - }, - "time": "2025-05-23T15:06:40+00:00" + "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.", + "time": "2015-12-17T08:42:14+00:00" }, { - "name": "behat/mink", - "version": "v1.12.0", + "name": "zendframework/zend-diactoros", + "version": "1.8.7", "source": { "type": "git", - "url": "https://github.com/minkphp/Mink.git", - "reference": "7e4edec6c335937029cb3569ce7ef81182804d0a" + "url": "https://github.com/zendframework/zend-diactoros.git", + "reference": "a85e67b86e9b8520d07e6415fcbcb8391b44a75b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/minkphp/Mink/zipball/7e4edec6c335937029cb3569ce7ef81182804d0a", - "reference": "7e4edec6c335937029cb3569ce7ef81182804d0a", + "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/a85e67b86e9b8520d07e6415fcbcb8391b44a75b", + "reference": "a85e67b86e9b8520d07e6415fcbcb8391b44a75b", "shasum": "" }, "require": { - "php": ">=7.2", - "symfony/css-selector": "^4.4 || ^5.0 || ^6.0 || ^7.0" + "php": "^5.6 || ^7.0", + "psr/http-message": "^1.0" + }, + "provide": { + "psr/http-message-implementation": "1.0" }, "require-dev": { - "phpstan/phpstan": "^1.10", - "phpstan/phpstan-phpunit": "^1.3", - "phpunit/phpunit": "^8.5.22 || ^9.5.11", - "symfony/error-handler": "^4.4 || ^5.0 || ^6.0 || ^7.0", - "symfony/phpunit-bridge": "^5.4 || ^6.0 || ^7.0" - }, - "suggest": { - "behat/mink-browserkit-driver": "fast headless driver for any app without JS emulation", - "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)", - "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)", - "dmore/chrome-mink-driver": "fast and JS-enabled driver for any app (requires chromium or google chrome)" + "ext-dom": "*", + "ext-libxml": "*", + "php-http/psr7-integration-tests": "dev-master", + "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7", + "zendframework/zend-coding-standard": "~1.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.x-dev" + "dev-release-1.8": "1.8.x-dev" } }, "autoload": { + "files": [ + "src/functions/create_uploaded_file.php", + "src/functions/marshal_headers_from_sapi.php", + "src/functions/marshal_method_from_sapi.php", + "src/functions/marshal_protocol_version_from_sapi.php", + "src/functions/marshal_uri_from_sapi.php", + "src/functions/normalize_server.php", + "src/functions/normalize_uploaded_files.php", + "src/functions/parse_cookie_header.php" + ], "psr-4": { - "Behat\\Mink\\": "src/" + "Zend\\Diactoros\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-2-Clause" ], - "authors": [ - { - "name": "Konstantin Kudryashov", - "email": "ever.zet@gmail.com", - "homepage": "http://everzet.com" - } - ], - "description": "Browser controller/emulator abstraction for PHP", - "homepage": "https://mink.behat.org/", + "description": "PSR HTTP Message implementations", + "homepage": "https://github.com/zendframework/zend-diactoros", "keywords": [ - "browser", - "testing", - "web" + "http", + "psr", + "psr-7" ], - "support": { - "issues": "https://github.com/minkphp/Mink/issues", - "source": "https://github.com/minkphp/Mink/tree/v1.12.0" - }, - "time": "2024-10-30T18:48:14+00:00" + "time": "2019-08-06T17:53:53+00:00" }, { - "name": "composer/pcre", - "version": "3.3.2", + "name": "zendframework/zend-escaper", + "version": "2.6.0", "source": { "type": "git", - "url": "https://github.com/composer/pcre.git", - "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e" + "url": "https://github.com/zendframework/zend-escaper.git", + "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e", - "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e", + "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/31d8aafae982f9568287cb4dce987e6aff8fd074", + "reference": "31d8aafae982f9568287cb4dce987e6aff8fd074", "shasum": "" }, "require": { - "php": "^7.4 || ^8.0" - }, - "conflict": { - "phpstan/phpstan": "<1.11.10" + "php": "^5.6 || ^7.0" }, "require-dev": { - "phpstan/phpstan": "^1.12 || ^2", - "phpstan/phpstan-strict-rules": "^1 || ^2", - "phpunit/phpunit": "^8 || ^9" + "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2", + "zendframework/zend-coding-standard": "~1.0.0" }, "type": "library", "extra": { - "phpstan": { - "includes": [ - "extension.neon" - ] - }, "branch-alias": { - "dev-main": "3.x-dev" + "dev-master": "2.6.x-dev", + "dev-develop": "2.7.x-dev" } }, "autoload": { "psr-4": { - "Composer\\Pcre\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Jordi Boggiano", - "email": "j.boggiano@seld.be", - "homepage": "http://seld.be" - } - ], - "description": "PCRE wrapping library that offers type-safe preg_* replacements.", - "keywords": [ - "PCRE", - "preg", - "regex", - "regular expression" - ], - "support": { - "issues": "https://github.com/composer/pcre/issues", - "source": "https://github.com/composer/pcre/tree/3.3.2" - }, - "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" - }, - { - "name": "dekor/php-array-table", - "version": "2.0", - "source": { - "type": "git", - "url": "https://github.com/deniskoronets/php-array-table.git", - "reference": "ca40b21ba84eee6a9658a33fc5f897d76baaf8e5" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/deniskoronets/php-array-table/zipball/ca40b21ba84eee6a9658a33fc5f897d76baaf8e5", - "reference": "ca40b21ba84eee6a9658a33fc5f897d76baaf8e5", - "shasum": "" - }, - "require": { - "ext-mbstring": "*", - "php": ">=5.6.0" - }, - "require-dev": { - "phpunit/phpunit": "^10" - }, - "type": "library", - "autoload": { - "psr-4": { - "dekor\\": "src" + "Zend\\Escaper\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "BSD-3-Clause" ], - "authors": [ - { - "name": "Denis Koronets", - "email": "deniskoronets@woo.zp.ua", - "homepage": "https://woo.zp.ua/" - } - ], - "description": "PHP Library for printing associative arrays as text table (similar to mysql terminal console)", + "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs", "keywords": [ - "library", - "php" + "ZendFramework", + "escaper", + "zf" ], - "support": { - "issues": "https://github.com/deniskoronets/php-array-table/issues", - "source": "https://github.com/deniskoronets/php-array-table/tree/2.0" - }, - "time": "2023-02-10T10:13:42+00:00" + "time": "2018-04-25T15:48:53+00:00" }, { - "name": "drupal/upgrade_status", - "version": "4.3.8", + "name": "zendframework/zend-feed", + "version": "2.12.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/upgrade_status.git", - "reference": "4.3.8" + "url": "https://github.com/zendframework/zend-feed.git", + "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/upgrade_status-4.3.8.zip", - "reference": "4.3.8", - "shasum": "4526741f6d0991f2165d4d79c8830602f5ac8bca" - }, - "require": { - "dekor/php-array-table": "^2.0", - "drupal/core": "^9 || ^10 || ^11", - "mglaman/phpstan-drupal": "^1.2.11|^2.0", - "nikic/php-parser": "^4.0.0|^5.0.0", - "phpstan/phpstan-deprecation-rules": "^1.0.0|^2.0", - "symfony/process": "^3.4|^4.0|^5.0|^6.0|^7.0", - "webflo/drupal-finder": "^1.2" - }, - "require-dev": { - "drush/drush": "^11|^12|^13" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "4.3.8", - "datestamp": "1751485112", - "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": "gábor hojtsy", - "homepage": "https://www.drupal.org/user/4166" - } - ], - "description": "Review Drupal major upgrade readiness of the environment and components of the site.", - "homepage": "http://drupal.org/project/upgrade_status", - "support": { - "source": "https://git.drupalcode.org/project/upgrade_status" - } - }, - { - "name": "mglaman/phpstan-drupal", - "version": "2.0.7", - "source": { - "type": "git", - "url": "https://github.com/mglaman/phpstan-drupal.git", - "reference": "42cca54ee8bccec83a674ac45d1d17586777187e" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/42cca54ee8bccec83a674ac45d1d17586777187e", - "reference": "42cca54ee8bccec83a674ac45d1d17586777187e", + "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/d926c5af34b93a0121d5e2641af34ddb1533d733", + "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733", "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", - "webflo/drupal-finder": "^1.3.1" + "ext-dom": "*", + "ext-libxml": "*", + "php": "^5.6 || ^7.0", + "zendframework/zend-escaper": "^2.5.2", + "zendframework/zend-stdlib": "^3.2.1" }, "require-dev": { - "behat/mink": "^1.10", - "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" + "phpunit/phpunit": "^5.7.23 || ^6.4.3", + "psr/http-message": "^1.0.1", + "zendframework/zend-cache": "^2.7.2", + "zendframework/zend-coding-standard": "~1.0.0", + "zendframework/zend-db": "^2.8.2", + "zendframework/zend-http": "^2.7", + "zendframework/zend-servicemanager": "^2.7.8 || ^3.3", + "zendframework/zend-validator": "^2.10.1" }, "suggest": { - "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.", - "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.", - "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan." + "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator", + "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests", + "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub", + "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader", + "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations", + "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent" }, - "type": "phpstan-extension", + "type": "library", "extra": { - "phpstan": { - "includes": [ - "extension.neon", - "rules.neon" - ] - }, - "installer-paths": { - "tests/fixtures/drupal/core": [ - "type:drupal-core" - ], - "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" - ] + "branch-alias": { + "dev-master": "2.12.x-dev", + "dev-develop": "2.13.x-dev" } }, "autoload": { "psr-4": { - "mglaman\\PHPStanDrupal\\": "src/" + "Zend\\Feed\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], - "authors": [ - { - "name": "Matt Glaman", - "email": "nmd.matt@gmail.com" - } - ], - "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" - }, - "funding": [ - { - "url": "https://github.com/mglaman", - "type": "github" - }, - { - "url": "https://opencollective.com/phpstan-drupal", - "type": "open_collective" - }, - { - "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal", - "type": "tidelift" - } - ], - "time": "2025-05-22T18:06:14+00:00" - }, - { - "name": "phpstan/phpstan", - "version": "2.1.21", - "source": { - "type": "git", - "url": "https://github.com/phpstan/phpstan.git", - "reference": "1ccf445757458c06a04eb3f803603cb118fe5fa6" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/1ccf445757458c06a04eb3f803603cb118fe5fa6", - "reference": "1ccf445757458c06a04eb3f803603cb118fe5fa6", - "shasum": "" - }, - "require": { - "php": "^7.4|^8.0" - }, - "conflict": { - "phpstan/phpstan-shim": "*" - }, - "bin": [ - "phpstan", - "phpstan.phar" - ], - "type": "library", - "autoload": { - "files": [ - "bootstrap.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "description": "PHPStan - PHP Static Analysis Tool", + "description": "provides functionality for consuming RSS and Atom feeds", "keywords": [ - "dev", - "static analysis" + "ZendFramework", + "feed", + "zf" ], - "support": { - "docs": "https://phpstan.org/user-guide/getting-started", - "forum": "https://github.com/phpstan/phpstan/discussions", - "issues": "https://github.com/phpstan/phpstan/issues", - "security": "https://github.com/phpstan/phpstan/security/policy", - "source": "https://github.com/phpstan/phpstan-src" - }, - "funding": [ - { - "url": "https://github.com/ondrejmirtes", - "type": "github" - }, - { - "url": "https://github.com/phpstan", - "type": "github" - } - ], - "time": "2025-07-28T19:35:08+00:00" + "time": "2019-03-05T20:08:49+00:00" }, { - "name": "phpstan/phpstan-deprecation-rules", - "version": "2.0.3", + "name": "zendframework/zend-stdlib", + "version": "3.2.1", "source": { "type": "git", - "url": "https://github.com/phpstan/phpstan-deprecation-rules.git", - "reference": "468e02c9176891cc901143da118f09dc9505fc2f" + "url": "https://github.com/zendframework/zend-stdlib.git", + "reference": "66536006722aff9e62d1b331025089b7ec71c065" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/468e02c9176891cc901143da118f09dc9505fc2f", - "reference": "468e02c9176891cc901143da118f09dc9505fc2f", + "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/66536006722aff9e62d1b331025089b7ec71c065", + "reference": "66536006722aff9e62d1b331025089b7ec71c065", "shasum": "" }, "require": { - "php": "^7.4 || ^8.0", - "phpstan/phpstan": "^2.1.15" + "php": "^5.6 || ^7.0" }, "require-dev": { - "php-parallel-lint/php-parallel-lint": "^1.2", - "phpstan/phpstan-phpunit": "^2.0", - "phpunit/phpunit": "^9.6" + "phpbench/phpbench": "^0.13", + "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2", + "zendframework/zend-coding-standard": "~1.0.0" }, - "type": "phpstan-extension", + "type": "library", "extra": { - "phpstan": { - "includes": [ - "rules.neon" - ] + "branch-alias": { + "dev-master": "3.2.x-dev", + "dev-develop": "3.3.x-dev" } }, "autoload": { "psr-4": { - "PHPStan\\": "src/" + "Zend\\Stdlib\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], - "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" - }, - "time": "2025-05-14T10:56:57+00:00" - }, - { - "name": "symfony/config", - "version": "v6.4.22", - "source": { - "type": "git", - "url": "https://github.com/symfony/config.git", - "reference": "af5917a3b1571f54689e56677a3f06440d2fe4c7" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/af5917a3b1571f54689e56677a3f06440d2fe4c7", - "reference": "af5917a3b1571f54689e56677a3f06440d2fe4c7", - "shasum": "" - }, - "require": { - "php": ">=8.1", - "symfony/deprecation-contracts": "^2.5|^3", - "symfony/filesystem": "^5.4|^6.0|^7.0", - "symfony/polyfill-ctype": "~1.8" - }, - "conflict": { - "symfony/finder": "<5.4", - "symfony/service-contracts": "<2.5" - }, - "require-dev": { - "symfony/event-dispatcher": "^5.4|^6.0|^7.0", - "symfony/finder": "^5.4|^6.0|^7.0", - "symfony/messenger": "^5.4|^6.0|^7.0", - "symfony/service-contracts": "^2.5|^3", - "symfony/yaml": "^5.4|^6.0|^7.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Symfony\\Component\\Config\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" + "description": "SPL extensions, array utilities, error handlers, and more", + "keywords": [ + "ZendFramework", + "stdlib", + "zf" ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "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" - }, - "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-05-14T06:00:01+00:00" - }, - { - "name": "symfony/translation", - "version": "v6.4.23", - "source": { - "type": "git", - "url": "https://github.com/symfony/translation.git", - "reference": "de8afa521e04a5220e9e58a1dc99971ab7cac643" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/de8afa521e04a5220e9e58a1dc99971ab7cac643", - "reference": "de8afa521e04a5220e9e58a1dc99971ab7cac643", - "shasum": "" - }, - "require": { - "php": ">=8.1", - "symfony/deprecation-contracts": "^2.5|^3", - "symfony/polyfill-mbstring": "~1.0", - "symfony/translation-contracts": "^2.5|^3.0" - }, - "conflict": { - "symfony/config": "<5.4", - "symfony/console": "<5.4", - "symfony/dependency-injection": "<5.4", - "symfony/http-client-contracts": "<2.5", - "symfony/http-kernel": "<5.4", - "symfony/service-contracts": "<2.5", - "symfony/twig-bundle": "<5.4", - "symfony/yaml": "<5.4" - }, - "provide": { - "symfony/translation-implementation": "2.3|3.0" - }, - "require-dev": { - "nikic/php-parser": "^4.18|^5.0", - "psr/log": "^1|^2|^3", - "symfony/config": "^5.4|^6.0|^7.0", - "symfony/console": "^5.4|^6.0|^7.0", - "symfony/dependency-injection": "^5.4|^6.0|^7.0", - "symfony/finder": "^5.4|^6.0|^7.0", - "symfony/http-client-contracts": "^2.5|^3.0", - "symfony/http-kernel": "^5.4|^6.0|^7.0", - "symfony/intl": "^5.4|^6.0|^7.0", - "symfony/polyfill-intl-icu": "^1.21", - "symfony/routing": "^5.4|^6.0|^7.0", - "symfony/service-contracts": "^2.5|^3", - "symfony/yaml": "^5.4|^6.0|^7.0" - }, - "type": "library", - "autoload": { - "files": [ - "Resources/functions.php" - ], - "psr-4": { - "Symfony\\Component\\Translation\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Provides tools to internationalize your application", - "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/translation/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-26T21:24:02+00:00" + "time": "2018-08-28T21:34:05+00:00" } ], + "packages-dev": [], "aliases": [ { - "package": "drupal/facets", - "version": "dev-3.0.x", - "alias": "2.0.x-dev", - "alias_normalized": "2.0.9999999.9999999-dev" + "alias": "1.x-dev", + "alias_normalized": "1.9999999.9999999.9999999-dev", + "version": "dev-8.x-1.x", + "package": "drupal/drutopia_collection" } ], "minimum-stability": "dev", "stability-flags": { - "drupal/ckeditor_iframe": 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/menu_link_config": 15, - "drupal/migration_helpers": 20, - "drupal/notfoundpassthrough": 20, - "drupal/octavia": 20, - "drupal/octavia_camouflage": 20, - "drupal/plausible": 10, - "drupal/rabbit_hole": 10, - "drupal/social_post_facebook": 20, - "drupal/social_post_twitter": 20, - "drupal/subpathauto": 5, - "drupal/tomselect": 20, - "drupal/workflow_buttons": 20, - "drutopia/drutopia": 20 + "drupal/claro": 15, + "drupal/config_actions": 20, + "drupal/convert_bundles": 15, + "drupal/cshs": 10, + "drupal/drutopia_collection": 20 }, "prefer-stable": true, "prefer-lowest": false, - "platform": {}, - "platform-dev": {}, - "plugin-api-version": "2.6.0" + "platform": [], + "platform-dev": [] } diff --git a/config/sync/admin_toolbar.settings.yml b/config/sync/admin_toolbar.settings.yml deleted file mode 100644 index 6754618..0000000 --- a/config/sync/admin_toolbar.settings.yml +++ /dev/null @@ -1,5 +0,0 @@ -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 deleted file mode 100644 index a4b0cc4..0000000 --- a/config/sync/admin_toolbar_search.settings.yml +++ /dev/null @@ -1,4 +0,0 @@ -_core: - default_config_hash: AAmWcgwzGYbXfR6wfEfMyoi3r5QZwlpxvq5dHbupnJo -display_menu_item: false -enable_keyboard_shortcut: true diff --git a/config/sync/admin_toolbar_tools.settings.yml b/config/sync/admin_toolbar_tools.settings.yml deleted file mode 100644 index d2ac5ea..0000000 --- a/config/sync/admin_toolbar_tools.settings.yml +++ /dev/null @@ -1 +0,0 @@ -max_bundle_number: 20 diff --git a/config/sync/antibot.settings.yml b/config/sync/antibot.settings.yml deleted file mode 100644 index 32970a3..0000000 --- a/config/sync/antibot.settings.yml +++ /dev/null @@ -1,9 +0,0 @@ -_core: - default_config_hash: 7QwhifH5gAzkdFMMDFV6XQRrcx4PAvtROZO8rs19nTo -form_ids: - - 'comment_*' - - user_login_form - - user_pass - - user_register_form - - 'contact_message_*' -show_form_ids: false diff --git a/config/sync/automated_cron.settings.yml b/config/sync/automated_cron.settings.yml index 3fc5821..2418a00 100644 --- a/config/sync/automated_cron.settings.yml +++ b/config/sync/automated_cron.settings.yml @@ -1,3 +1,3 @@ +interval: 10800 _core: default_config_hash: fUksROt4FfkAU9BV4hV2XvhTBSS2nTNrZS4U7S-tKrs -interval: 10800 diff --git a/config/sync/autosave_form.messages.yml b/config/sync/autosave_form.messages.yml deleted file mode 100644 index 4b81262..0000000 --- a/config/sync/autosave_form.messages.yml +++ /dev/null @@ -1,3 +0,0 @@ -_core: - default_config_hash: In3MY-CuVp64RxCeU5X6rsEhR6jR4Si8OG6BX18DALg -entity_saved_in_background_alert_message: 'The content has been modified elsewhere. As a result, autosaving has been disabled and autosaved states for the current page have been deleted. Autosave will be reactivated after reloading the page.' diff --git a/config/sync/autosave_form.settings.yml b/config/sync/autosave_form.settings.yml deleted file mode 100644 index 9c6abe9..0000000 --- a/config/sync/autosave_form.settings.yml +++ /dev/null @@ -1,14 +0,0 @@ -_core: - default_config_hash: NX6_WyjygzZfQY-9SZq6_5fmh_KUK7L0XlOqaAXkRCQ -langcode: en -interval: 60000 -only_on_form_change: false -active_on: - content_entity_forms: true - config_entity_forms: false -notification: - active: true - message: 'Saving draft...' - delay: 1000 -allowed_content_entity_types: { } -allowed_new: true diff --git a/config/sync/block.block.articletopics.yml b/config/sync/block.block.articletopics.yml index 97274c9..b9f3d42 100644 --- a/config/sync/block.block.articletopics.yml +++ b/config/sync/block.block.articletopics.yml @@ -18,12 +18,12 @@ plugin: 'facet_block:article_topics' settings: id: 'facet_block:article_topics' label: 'Article Topics' - label_display: visible provider: facets + label_display: visible block_id: articletopics visibility: condition_group: id: condition_group negate: false - context_mapping: { } block_visibility_group: '' + context_mapping: { } diff --git a/config/sync/block.block.articletype.yml b/config/sync/block.block.articletype.yml index 48bb776..d49b797 100644 --- a/config/sync/block.block.articletype.yml +++ b/config/sync/block.block.articletype.yml @@ -18,12 +18,12 @@ plugin: 'facet_block:article_type' settings: id: 'facet_block:article_type' label: 'Article Type' - label_display: visible provider: facets + label_display: visible block_id: articletype visibility: condition_group: id: condition_group negate: false - context_mapping: { } block_visibility_group: '' + context_mapping: { } diff --git a/config/sync/block.block.bulma_account_menu.yml b/config/sync/block.block.bulma_account_menu.yml index e7d2035..a800a7f 100644 --- a/config/sync/block.block.bulma_account_menu.yml +++ b/config/sync/block.block.bulma_account_menu.yml @@ -19,8 +19,8 @@ plugin: 'system_menu_block:account' settings: id: 'system_menu_block:account' label: 'User account menu' - label_display: '1' provider: system + label_display: '1' level: 1 depth: 1 expand_all_items: false diff --git a/config/sync/block.block.bulma_branding.yml b/config/sync/block.block.bulma_branding.yml index 6ee2e65..0a6c52e 100644 --- a/config/sync/block.block.bulma_branding.yml +++ b/config/sync/block.block.bulma_branding.yml @@ -17,8 +17,8 @@ plugin: system_branding_block settings: id: system_branding_block label: 'Site branding' - label_display: '0' provider: system + label_display: '0' use_site_logo: true use_site_name: true use_site_slogan: true diff --git a/config/sync/block.block.bulma_content.yml b/config/sync/block.block.bulma_content.yml index ef6b489..94b911e 100644 --- a/config/sync/block.block.bulma_content.yml +++ b/config/sync/block.block.bulma_content.yml @@ -17,6 +17,6 @@ plugin: system_main_block settings: id: system_main_block label: 'Main page content' - label_display: '0' provider: system + label_display: '0' visibility: { } diff --git a/config/sync/block.block.bulma_help.yml b/config/sync/block.block.bulma_help.yml index ac7619f..7dd082f 100644 --- a/config/sync/block.block.bulma_help.yml +++ b/config/sync/block.block.bulma_help.yml @@ -17,6 +17,6 @@ plugin: help_block settings: id: help_block label: Help - label_display: '0' provider: help + label_display: '0' visibility: { } diff --git a/config/sync/block.block.bulma_local_tasks.yml b/config/sync/block.block.bulma_local_tasks.yml index 9e33624..8273603 100644 --- a/config/sync/block.block.bulma_local_tasks.yml +++ b/config/sync/block.block.bulma_local_tasks.yml @@ -15,8 +15,8 @@ plugin: local_tasks_block settings: id: local_tasks_block label: Tabs - label_display: '0' provider: core + label_display: '0' primary: true secondary: true visibility: { } diff --git a/config/sync/block.block.bulma_main_menu.yml b/config/sync/block.block.bulma_main_menu.yml index d8a8321..663f4c2 100644 --- a/config/sync/block.block.bulma_main_menu.yml +++ b/config/sync/block.block.bulma_main_menu.yml @@ -19,8 +19,8 @@ plugin: 'system_menu_block:main' settings: id: 'system_menu_block:main' label: 'Main navigation' - label_display: '0' provider: system + label_display: '0' level: 1 depth: 1 expand_all_items: false diff --git a/config/sync/block.block.bulma_messages.yml b/config/sync/block.block.bulma_messages.yml index df215e5..fb6b3dd 100644 --- a/config/sync/block.block.bulma_messages.yml +++ b/config/sync/block.block.bulma_messages.yml @@ -17,6 +17,6 @@ plugin: system_messages_block settings: id: system_messages_block label: 'Status messages' - label_display: '0' provider: system + label_display: '0' visibility: { } diff --git a/config/sync/block.block.bulma_page_title.yml b/config/sync/block.block.bulma_page_title.yml index 583cbd2..c518a01 100644 --- a/config/sync/block.block.bulma_page_title.yml +++ b/config/sync/block.block.bulma_page_title.yml @@ -15,6 +15,6 @@ plugin: page_title_block settings: id: page_title_block label: 'Page title' - label_display: '0' provider: core + label_display: '0' visibility: { } diff --git a/config/sync/block.block.bulma_powered.yml b/config/sync/block.block.bulma_powered.yml index e30bc8b..48f2154 100644 --- a/config/sync/block.block.bulma_powered.yml +++ b/config/sync/block.block.bulma_powered.yml @@ -17,6 +17,6 @@ plugin: system_powered_by_block settings: id: system_powered_by_block label: 'Powered by Drupal' - label_display: '0' provider: system + label_display: '0' visibility: { } diff --git a/config/sync/block.block.bulma_tools.yml b/config/sync/block.block.bulma_tools.yml index 796acf7..9ddd082 100644 --- a/config/sync/block.block.bulma_tools.yml +++ b/config/sync/block.block.bulma_tools.yml @@ -19,8 +19,8 @@ plugin: 'system_menu_block:tools' settings: id: 'system_menu_block:tools' label: Tools - label_display: visible provider: system + label_display: visible level: 1 depth: 0 expand_all_items: false diff --git a/config/sync/block.block.claro_breadcrumbs.yml b/config/sync/block.block.claro_breadcrumbs.yml index 0f63673..5032243 100644 --- a/config/sync/block.block.claro_breadcrumbs.yml +++ b/config/sync/block.block.claro_breadcrumbs.yml @@ -17,6 +17,6 @@ plugin: system_breadcrumb_block settings: id: system_breadcrumb_block label: Breadcrumbs - label_display: '0' provider: system + label_display: '0' visibility: { } diff --git a/config/sync/block.block.claro_content.yml b/config/sync/block.block.claro_content.yml index 32b7106..bc31527 100644 --- a/config/sync/block.block.claro_content.yml +++ b/config/sync/block.block.claro_content.yml @@ -17,6 +17,6 @@ plugin: system_main_block settings: id: system_main_block label: 'Main page content' - label_display: '0' provider: system + label_display: '0' visibility: { } diff --git a/config/sync/block.block.claro_help.yml b/config/sync/block.block.claro_help.yml index c05716a..3317e4f 100644 --- a/config/sync/block.block.claro_help.yml +++ b/config/sync/block.block.claro_help.yml @@ -17,6 +17,6 @@ plugin: help_block settings: id: help_block label: Help - label_display: '0' provider: help + label_display: '0' visibility: { } diff --git a/config/sync/block.block.claro_local_actions.yml b/config/sync/block.block.claro_local_actions.yml index 024aa41..9956e99 100644 --- a/config/sync/block.block.claro_local_actions.yml +++ b/config/sync/block.block.claro_local_actions.yml @@ -15,6 +15,6 @@ plugin: local_actions_block settings: id: local_actions_block label: 'Primary admin actions' - label_display: '0' provider: core + label_display: '0' visibility: { } diff --git a/config/sync/block.block.claro_messages.yml b/config/sync/block.block.claro_messages.yml index cf12124..1c0e2db 100644 --- a/config/sync/block.block.claro_messages.yml +++ b/config/sync/block.block.claro_messages.yml @@ -17,6 +17,6 @@ plugin: system_messages_block settings: id: system_messages_block label: 'Status messages' - label_display: '0' provider: system + label_display: '0' visibility: { } diff --git a/config/sync/block.block.claro_page_title.yml b/config/sync/block.block.claro_page_title.yml index b6a4210..9ec79ab 100644 --- a/config/sync/block.block.claro_page_title.yml +++ b/config/sync/block.block.claro_page_title.yml @@ -15,6 +15,6 @@ plugin: page_title_block settings: id: page_title_block label: 'Page title' - label_display: '0' provider: core + label_display: '0' visibility: { } diff --git a/config/sync/block.block.claro_primary_local_tasks.yml b/config/sync/block.block.claro_primary_local_tasks.yml index 01a010b..7288085 100644 --- a/config/sync/block.block.claro_primary_local_tasks.yml +++ b/config/sync/block.block.claro_primary_local_tasks.yml @@ -15,8 +15,8 @@ plugin: local_tasks_block settings: id: local_tasks_block label: 'Primary tabs' - label_display: '0' provider: core + label_display: '0' primary: true secondary: false visibility: { } diff --git a/config/sync/block.block.claro_secondary_local_tasks.yml b/config/sync/block.block.claro_secondary_local_tasks.yml index 8dd29f8..ef71d5e 100644 --- a/config/sync/block.block.claro_secondary_local_tasks.yml +++ b/config/sync/block.block.claro_secondary_local_tasks.yml @@ -15,8 +15,8 @@ plugin: local_tasks_block settings: id: local_tasks_block label: 'Secondary tabs' - label_display: '0' provider: core + label_display: '0' primary: false secondary: true visibility: { } diff --git a/config/sync/block.block.donatelink.yml b/config/sync/block.block.donatelink.yml deleted file mode 100644 index 4c16676..0000000 --- a/config/sync/block.block.donatelink.yml +++ /dev/null @@ -1,31 +0,0 @@ -uuid: e236c061-f0f8-4620-b069-cc4f7713f364 -langcode: en -status: true -dependencies: - content: - - 'block_content:slide:385d1256-b634-44c5-85cb-0d08a6da226b' - module: - - block_content - - block_visibility_groups - theme: - - geofresco -id: donatelink -theme: geofresco -region: footer_notice -weight: 0 -provider: null -plugin: 'block_content:385d1256-b634-44c5-85cb-0d08a6da226b' -settings: - id: 'block_content:385d1256-b634-44c5-85cb-0d08a6da226b' - label: 'Donate link' - label_display: '0' - provider: block_content - status: true - info: '' - view_mode: default -visibility: - condition_group: - id: condition_group - negate: false - context_mapping: { } - block_visibility_group: '' diff --git a/config/sync/block.block.exposedformsearchpage_1.yml b/config/sync/block.block.exposedformsearchpage_1.yml index 6117e9c..e43b086 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 @@ -22,12 +18,12 @@ plugin: 'views_exposed_filter_block:search-page_1' settings: id: 'views_exposed_filter_block:search-page_1' label: '' - label_display: '0' provider: views + label_display: '0' views_label: '' visibility: condition_group: id: condition_group negate: false - context_mapping: { } block_visibility_group: '' + context_mapping: { } diff --git a/config/sync/block.block.footer_about_us.yml b/config/sync/block.block.footer_about_us.yml index 045308e..e238ae7 100644 --- a/config/sync/block.block.footer_about_us.yml +++ b/config/sync/block.block.footer_about_us.yml @@ -20,20 +20,16 @@ plugin: 'menu_block:main' settings: id: 'menu_block:main' label: 'About Us' - label_display: visible provider: menu_block - follow: false - follow_parent: child - label_link: false - label_type: block + label_display: visible level: 1 depth: 0 - expand_all_items: false + expand: 0 parent: 'main:menu_link_content:33435872-bdbe-4833-9477-c057c2c33359' suggestion: main visibility: condition_group: id: condition_group negate: false - context_mapping: { } block_visibility_group: '' + context_mapping: { } diff --git a/config/sync/block.block.footer_contact_info.yml b/config/sync/block.block.footer_contact_info.yml index 125b8b6..cd5e800 100644 --- a/config/sync/block.block.footer_contact_info.yml +++ b/config/sync/block.block.footer_contact_info.yml @@ -17,8 +17,8 @@ plugin: 'block_content:ab794f80-2d8f-4254-bda4-6554074ab46c' settings: id: 'block_content:ab794f80-2d8f-4254-bda4-6554074ab46c' label: 'Footer contact information' - label_display: '0' provider: block_content + label_display: '0' status: true info: '' view_mode: full @@ -26,5 +26,5 @@ visibility: condition_group: id: condition_group negate: false - context_mapping: { } block_visibility_group: '' + context_mapping: { } diff --git a/config/sync/block.block.footer_copyleft.yml b/config/sync/block.block.footer_copyleft.yml index 435c016..68960c3 100644 --- a/config/sync/block.block.footer_copyleft.yml +++ b/config/sync/block.block.footer_copyleft.yml @@ -17,8 +17,8 @@ plugin: 'block_content:5eeea524-f31d-4a75-92aa-8f3d92925a9f' settings: id: 'block_content:5eeea524-f31d-4a75-92aa-8f3d92925a9f' label: 'Footer copyleft' - label_display: '0' provider: block_content + label_display: '0' status: true info: '' view_mode: full @@ -26,5 +26,5 @@ visibility: condition_group: id: condition_group negate: false - context_mapping: { } block_visibility_group: '' + context_mapping: { } diff --git a/config/sync/block.block.footer_get_involved.yml b/config/sync/block.block.footer_get_involved.yml index c341dc6..7dbd86d 100644 --- a/config/sync/block.block.footer_get_involved.yml +++ b/config/sync/block.block.footer_get_involved.yml @@ -20,20 +20,16 @@ plugin: 'menu_block:main' settings: id: 'menu_block:main' label: 'Get Involved' - label_display: visible provider: menu_block - follow: false - follow_parent: child - label_link: false - label_type: block + label_display: visible level: 1 depth: 0 - expand_all_items: false + expand: 0 parent: 'main:menu_link_content:f1eaa438-620d-418b-acd3-ad00dab9c635' suggestion: main visibility: condition_group: id: condition_group negate: false - context_mapping: { } block_visibility_group: '' + context_mapping: { } diff --git a/config/sync/block.block.footer_our_work.yml b/config/sync/block.block.footer_our_work.yml index 0ab70af..67c5cc5 100644 --- a/config/sync/block.block.footer_our_work.yml +++ b/config/sync/block.block.footer_our_work.yml @@ -20,20 +20,16 @@ plugin: 'menu_block:main' settings: id: 'menu_block:main' label: 'Our Work' - label_display: visible provider: menu_block - follow: false - follow_parent: child - label_link: false - label_type: block + label_display: visible level: 1 depth: 0 - expand_all_items: false + expand: 0 parent: 'main:menu_link_content:3f594be0-bb0f-4b30-923e-e7984983a0fd' suggestion: main visibility: condition_group: id: condition_group negate: false - context_mapping: { } block_visibility_group: '' + context_mapping: { } diff --git a/config/sync/block.block.geofresco_account_menu.yml b/config/sync/block.block.geofresco_account_menu.yml index 72b5a0c..3f50741 100644 --- a/config/sync/block.block.geofresco_account_menu.yml +++ b/config/sync/block.block.geofresco_account_menu.yml @@ -19,8 +19,8 @@ plugin: 'system_menu_block:account' settings: id: 'system_menu_block:account' label: 'User account menu' - label_display: '0' provider: system + label_display: '0' level: 1 depth: 1 expand_all_items: false diff --git a/config/sync/block.block.geofresco_branding.yml b/config/sync/block.block.geofresco_branding.yml index c614e5b..bab358e 100644 --- a/config/sync/block.block.geofresco_branding.yml +++ b/config/sync/block.block.geofresco_branding.yml @@ -17,8 +17,8 @@ plugin: system_branding_block settings: id: system_branding_block label: 'Site branding' - label_display: '0' provider: system + label_display: '0' use_site_logo: true use_site_name: true use_site_slogan: true diff --git a/config/sync/block.block.geofresco_content.yml b/config/sync/block.block.geofresco_content.yml index c110b30..5e63114 100644 --- a/config/sync/block.block.geofresco_content.yml +++ b/config/sync/block.block.geofresco_content.yml @@ -11,12 +11,12 @@ _core: id: geofresco_content theme: geofresco region: content -weight: -5 +weight: 0 provider: null plugin: system_main_block settings: id: system_main_block label: 'Main page content' - label_display: '0' provider: system + label_display: '0' visibility: { } diff --git a/config/sync/block.block.geofresco_footer_menu.yml b/config/sync/block.block.geofresco_footer_menu.yml index 8398f25..9161284 100644 --- a/config/sync/block.block.geofresco_footer_menu.yml +++ b/config/sync/block.block.geofresco_footer_menu.yml @@ -5,7 +5,6 @@ dependencies: config: - system.menu.footer module: - - block_visibility_groups - system theme: - geofresco @@ -20,13 +19,9 @@ plugin: 'system_menu_block:footer' settings: id: 'system_menu_block:footer' label: 'Footer menu' - label_display: '0' provider: system + label_display: '0' level: 1 depth: 0 expand_all_items: false -visibility: - condition_group: - id: condition_group - negate: false - block_visibility_group: '' +visibility: { } diff --git a/config/sync/block.block.geofresco_help.yml b/config/sync/block.block.geofresco_help.yml index 067c227..735d8f4 100644 --- a/config/sync/block.block.geofresco_help.yml +++ b/config/sync/block.block.geofresco_help.yml @@ -17,6 +17,6 @@ plugin: help_block settings: id: help_block label: Help - label_display: '0' provider: help + label_display: '0' visibility: { } diff --git a/config/sync/block.block.geofresco_local_actions.yml b/config/sync/block.block.geofresco_local_actions.yml index 3615188..e6b6a34 100644 --- a/config/sync/block.block.geofresco_local_actions.yml +++ b/config/sync/block.block.geofresco_local_actions.yml @@ -9,12 +9,12 @@ _core: id: geofresco_local_actions theme: geofresco region: content -weight: -6 +weight: -20 provider: null plugin: local_actions_block settings: id: local_actions_block label: 'Primary admin actions' - label_display: '0' provider: core + label_display: '0' visibility: { } diff --git a/config/sync/block.block.geofresco_local_tasks.yml b/config/sync/block.block.geofresco_local_tasks.yml index e4c67d3..12b22b5 100644 --- a/config/sync/block.block.geofresco_local_tasks.yml +++ b/config/sync/block.block.geofresco_local_tasks.yml @@ -15,8 +15,8 @@ plugin: local_tasks_block settings: id: local_tasks_block label: Tabs - label_display: '0' provider: core + label_display: '0' primary: true secondary: true visibility: { } diff --git a/config/sync/block.block.geofresco_main_menu.yml b/config/sync/block.block.geofresco_main_menu.yml index 14776de..5e3b48d 100644 --- a/config/sync/block.block.geofresco_main_menu.yml +++ b/config/sync/block.block.geofresco_main_menu.yml @@ -19,8 +19,8 @@ plugin: 'system_menu_block:main' settings: id: 'system_menu_block:main' label: 'Main navigation' - label_display: '0' provider: system + label_display: '0' level: 1 depth: 2 expand_all_items: false diff --git a/config/sync/block.block.geofresco_messages.yml b/config/sync/block.block.geofresco_messages.yml index e397612..6d2f3f2 100644 --- a/config/sync/block.block.geofresco_messages.yml +++ b/config/sync/block.block.geofresco_messages.yml @@ -17,6 +17,6 @@ plugin: system_messages_block settings: id: system_messages_block label: 'Status messages' - label_display: '0' provider: system + label_display: '0' visibility: { } diff --git a/config/sync/block.block.geofresco_page_title.yml b/config/sync/block.block.geofresco_page_title.yml index 13cee8f..d2cc11d 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 @@ -20,6 +15,6 @@ plugin: page_title_block settings: id: page_title_block label: 'Page title' - label_display: '0' provider: core + label_display: '0' visibility: { } diff --git a/config/sync/block.block.geofresco_views_block__comments_recent_block_1.yml b/config/sync/block.block.geofresco_views_block__comments_recent_block_1.yml index fe15bbb..cc0ebaa 100644 --- a/config/sync/block.block.geofresco_views_block__comments_recent_block_1.yml +++ b/config/sync/block.block.geofresco_views_block__comments_recent_block_1.yml @@ -18,13 +18,13 @@ plugin: 'views_block:comments_recent-block_1' settings: id: 'views_block:comments_recent-block_1' label: '' - label_display: visible provider: views + label_display: visible views_label: '' - items_per_page: '5' + items_per_page: none visibility: condition_group: id: condition_group negate: false - context_mapping: { } block_visibility_group: '' + context_mapping: { } diff --git a/config/sync/block.block.geofresco_views_block__content_recent_block_1.yml b/config/sync/block.block.geofresco_views_block__content_recent_block_1.yml index 4808d15..54e36f1 100644 --- a/config/sync/block.block.geofresco_views_block__content_recent_block_1.yml +++ b/config/sync/block.block.geofresco_views_block__content_recent_block_1.yml @@ -18,13 +18,13 @@ plugin: 'views_block:content_recent-block_1' settings: id: 'views_block:content_recent-block_1' label: '' - label_display: visible provider: views + label_display: visible views_label: '' items_per_page: none visibility: condition_group: id: condition_group negate: false - context_mapping: { } block_visibility_group: '' + context_mapping: { } diff --git a/config/sync/block.block.homepagehero.yml b/config/sync/block.block.homepagehero.yml index d6c0ff8..5c41ed7 100644 --- a/config/sync/block.block.homepagehero.yml +++ b/config/sync/block.block.homepagehero.yml @@ -19,17 +19,17 @@ plugin: 'fixed_block_content:home_page_hero' settings: id: 'fixed_block_content:home_page_hero' label: 'Home page hero' - label_display: '0' provider: fixed_block_content + label_display: visible view_mode: default visibility: condition_group: id: condition_group negate: false - context_mapping: { } block_visibility_group: '' + context_mapping: { } request_path: id: request_path + pages: '' negate: false context_mapping: { } - pages: '' diff --git a/config/sync/block.block.octavia_account_menu.yml b/config/sync/block.block.octavia_account_menu.yml index 4cdd78c..1132376 100644 --- a/config/sync/block.block.octavia_account_menu.yml +++ b/config/sync/block.block.octavia_account_menu.yml @@ -19,8 +19,8 @@ plugin: 'system_menu_block:account' settings: id: 'system_menu_block:account' label: 'User account menu' - label_display: '0' provider: system + label_display: '0' level: 1 depth: 1 expand_all_items: false diff --git a/config/sync/block.block.octavia_branding.yml b/config/sync/block.block.octavia_branding.yml index 3177d03..5f66121 100644 --- a/config/sync/block.block.octavia_branding.yml +++ b/config/sync/block.block.octavia_branding.yml @@ -17,8 +17,8 @@ plugin: system_branding_block settings: id: system_branding_block label: 'Site branding' - label_display: '0' provider: system + label_display: '0' use_site_logo: true use_site_name: true use_site_slogan: true diff --git a/config/sync/block.block.octavia_content.yml b/config/sync/block.block.octavia_content.yml index 6911da2..f30bc05 100644 --- a/config/sync/block.block.octavia_content.yml +++ b/config/sync/block.block.octavia_content.yml @@ -17,6 +17,6 @@ plugin: system_main_block settings: id: system_main_block label: 'Main page content' - label_display: '0' provider: system + label_display: '0' visibility: { } diff --git a/config/sync/block.block.octavia_footer_menu.yml b/config/sync/block.block.octavia_footer_menu.yml index 78a4048..092735b 100644 --- a/config/sync/block.block.octavia_footer_menu.yml +++ b/config/sync/block.block.octavia_footer_menu.yml @@ -19,8 +19,8 @@ plugin: 'system_menu_block:footer' settings: id: 'system_menu_block:footer' label: 'Footer menu' - label_display: '0' provider: system + label_display: '0' level: 1 depth: 0 expand_all_items: false diff --git a/config/sync/block.block.octavia_help.yml b/config/sync/block.block.octavia_help.yml index bfc177e..0c1f6ce 100644 --- a/config/sync/block.block.octavia_help.yml +++ b/config/sync/block.block.octavia_help.yml @@ -17,6 +17,6 @@ plugin: help_block settings: id: help_block label: Help - label_display: '0' provider: help + label_display: '0' visibility: { } diff --git a/config/sync/block.block.octavia_local_actions.yml b/config/sync/block.block.octavia_local_actions.yml index a575c29..4b72fae 100644 --- a/config/sync/block.block.octavia_local_actions.yml +++ b/config/sync/block.block.octavia_local_actions.yml @@ -15,6 +15,6 @@ plugin: local_actions_block settings: id: local_actions_block label: 'Primary admin actions' - label_display: '0' provider: core + label_display: '0' visibility: { } diff --git a/config/sync/block.block.octavia_local_tasks.yml b/config/sync/block.block.octavia_local_tasks.yml index 7a341ee..f273080 100644 --- a/config/sync/block.block.octavia_local_tasks.yml +++ b/config/sync/block.block.octavia_local_tasks.yml @@ -15,8 +15,8 @@ plugin: local_tasks_block settings: id: local_tasks_block label: Tabs - label_display: '0' provider: core + label_display: '0' primary: true secondary: true visibility: { } diff --git a/config/sync/block.block.octavia_main_menu.yml b/config/sync/block.block.octavia_main_menu.yml index 9bc2d0c..3e1bdf4 100644 --- a/config/sync/block.block.octavia_main_menu.yml +++ b/config/sync/block.block.octavia_main_menu.yml @@ -19,8 +19,8 @@ plugin: 'system_menu_block:main' settings: id: 'system_menu_block:main' label: 'Main navigation' - label_display: '0' provider: system + label_display: '0' level: 1 depth: 2 expand_all_items: false diff --git a/config/sync/block.block.octavia_messages.yml b/config/sync/block.block.octavia_messages.yml index 71e2510..fc7dac2 100644 --- a/config/sync/block.block.octavia_messages.yml +++ b/config/sync/block.block.octavia_messages.yml @@ -17,6 +17,6 @@ plugin: system_messages_block settings: id: system_messages_block label: 'Status messages' - label_display: '0' provider: system + label_display: '0' visibility: { } diff --git a/config/sync/block.block.octavia_page_title.yml b/config/sync/block.block.octavia_page_title.yml index a8cd587..dca93e7 100644 --- a/config/sync/block.block.octavia_page_title.yml +++ b/config/sync/block.block.octavia_page_title.yml @@ -15,6 +15,6 @@ plugin: page_title_block settings: id: page_title_block label: 'Page title' - label_display: '0' provider: core + label_display: '0' visibility: { } diff --git a/config/sync/block.block.seven_breadcrumbs.yml b/config/sync/block.block.seven_breadcrumbs.yml new file mode 100644 index 0000000..c225db6 --- /dev/null +++ b/config/sync/block.block.seven_breadcrumbs.yml @@ -0,0 +1,22 @@ +uuid: 556ed494-c332-4fcf-b6b1-a4f985a8466b +langcode: en +status: true +dependencies: + module: + - system + theme: + - seven +_core: + default_config_hash: WWu2OQswgCztl9OeXjD1stexIEMZsSgPMYIdC-JHx9c +id: seven_breadcrumbs +theme: seven +region: breadcrumb +weight: 0 +provider: null +plugin: system_breadcrumb_block +settings: + id: system_breadcrumb_block + label: Breadcrumbs + provider: system + label_display: '0' +visibility: { } diff --git a/config/sync/block.block.seven_content.yml b/config/sync/block.block.seven_content.yml new file mode 100644 index 0000000..374e9cb --- /dev/null +++ b/config/sync/block.block.seven_content.yml @@ -0,0 +1,22 @@ +uuid: 24269707-b61f-4072-8033-d17d3abb0523 +langcode: en +status: true +dependencies: + module: + - system + theme: + - seven +_core: + default_config_hash: YRY68JWkaUiGeZlWMv1nzeIgDm0ZZwXYgpqUpLFzwAY +id: seven_content +theme: seven +region: content +weight: 0 +provider: null +plugin: system_main_block +settings: + id: system_main_block + label: 'Main page content' + provider: system + label_display: '0' +visibility: { } diff --git a/config/sync/block.block.seven_help.yml b/config/sync/block.block.seven_help.yml new file mode 100644 index 0000000..0fd0a00 --- /dev/null +++ b/config/sync/block.block.seven_help.yml @@ -0,0 +1,22 @@ +uuid: bf5e4d50-acbf-45af-96e4-a318c246904a +langcode: en +status: true +dependencies: + module: + - help + theme: + - seven +_core: + default_config_hash: NU5A_49mwLHfs5xFzMFrZ850w9pgUolxMS9NNF3vv4c +id: seven_help +theme: seven +region: help +weight: 0 +provider: null +plugin: help_block +settings: + id: help_block + label: Help + provider: help + label_display: '0' +visibility: { } diff --git a/config/sync/block.block.seven_local_actions.yml b/config/sync/block.block.seven_local_actions.yml new file mode 100644 index 0000000..323f6d6 --- /dev/null +++ b/config/sync/block.block.seven_local_actions.yml @@ -0,0 +1,20 @@ +uuid: f018e64e-0b86-4837-8db8-2ec94c878763 +langcode: en +status: true +dependencies: + theme: + - seven +_core: + default_config_hash: HHryZVJbeKi9WnuBGC8FOhBZmBnk2G1H6KxFuy-rC9A +id: seven_local_actions +theme: seven +region: content +weight: -10 +provider: null +plugin: local_actions_block +settings: + id: local_actions_block + label: 'Primary admin actions' + provider: core + label_display: '0' +visibility: { } diff --git a/config/sync/block.block.seven_login.yml b/config/sync/block.block.seven_login.yml new file mode 100644 index 0000000..f93fb70 --- /dev/null +++ b/config/sync/block.block.seven_login.yml @@ -0,0 +1,22 @@ +uuid: 3b9bb00c-49d4-460a-a084-f2eb228b4ac6 +langcode: en +status: true +dependencies: + module: + - user + theme: + - seven +_core: + default_config_hash: IItlF4SKHgxduIysVQdvirDJ_v3HGuAviOkidAOJYRE +id: seven_login +theme: seven +region: content +weight: 10 +provider: null +plugin: user_login_block +settings: + id: user_login_block + label: 'User login' + provider: user + label_display: visible +visibility: { } diff --git a/config/sync/block.block.seven_messages.yml b/config/sync/block.block.seven_messages.yml new file mode 100644 index 0000000..d5f187c --- /dev/null +++ b/config/sync/block.block.seven_messages.yml @@ -0,0 +1,22 @@ +uuid: 694d2bb8-1dfc-4297-9c25-c9f7bb558c0e +langcode: en +status: true +dependencies: + module: + - system + theme: + - seven +_core: + default_config_hash: XJqWwLt1LDCnazcEN6QkJmCLjk4R0__-8s0OO9xeNjg +id: seven_messages +theme: seven +region: highlighted +weight: 0 +provider: null +plugin: system_messages_block +settings: + id: system_messages_block + label: 'Status messages' + provider: system + label_display: '0' +visibility: { } diff --git a/config/sync/block.block.seven_page_title.yml b/config/sync/block.block.seven_page_title.yml new file mode 100644 index 0000000..eeaf150 --- /dev/null +++ b/config/sync/block.block.seven_page_title.yml @@ -0,0 +1,20 @@ +uuid: 822971cb-9b83-4f6e-bf40-30d095be48b2 +langcode: en +status: true +dependencies: + theme: + - seven +_core: + default_config_hash: ZSpc3IoSaLd0PkB02nxjVPBMztIdsTdHek9SiGaqZ_c +id: seven_page_title +theme: seven +region: header +weight: -30 +provider: null +plugin: page_title_block +settings: + id: page_title_block + label: 'Page title' + provider: core + label_display: '0' +visibility: { } diff --git a/config/sync/block.block.seven_primary_local_tasks.yml b/config/sync/block.block.seven_primary_local_tasks.yml new file mode 100644 index 0000000..cfa16fc --- /dev/null +++ b/config/sync/block.block.seven_primary_local_tasks.yml @@ -0,0 +1,22 @@ +uuid: 0c817cde-31b9-4dbd-b9be-02c42d1b7329 +langcode: en +status: true +dependencies: + theme: + - seven +_core: + default_config_hash: ddy1OsBbWxjwEI8VL1viD4I69qcLHOkul4BxbTqLBTs +id: seven_primary_local_tasks +theme: seven +region: header +weight: 0 +provider: null +plugin: local_tasks_block +settings: + id: local_tasks_block + label: 'Primary tabs' + provider: core + label_display: '0' + primary: true + secondary: false +visibility: { } diff --git a/config/sync/block.block.seven_secondary_local_tasks.yml b/config/sync/block.block.seven_secondary_local_tasks.yml new file mode 100644 index 0000000..8ce6739 --- /dev/null +++ b/config/sync/block.block.seven_secondary_local_tasks.yml @@ -0,0 +1,22 @@ +uuid: 31ea76a8-edcf-4191-ba4e-a89066418909 +langcode: en +status: true +dependencies: + theme: + - seven +_core: + default_config_hash: QeZBeCilQfeET3GeW6ZtJkEiwROADTZktFgKWwPieD4 +id: seven_secondary_local_tasks +theme: seven +region: pre_content +weight: 0 +provider: null +plugin: local_tasks_block +settings: + id: local_tasks_block + label: 'Secondary tabs' + provider: core + label_display: '0' + primary: false + secondary: true +visibility: { } diff --git a/config/sync/block.block.syndicate.yml b/config/sync/block.block.syndicate.yml deleted file mode 100644 index 19e3f5d..0000000 --- a/config/sync/block.block.syndicate.yml +++ /dev/null @@ -1,27 +0,0 @@ -uuid: 4a62ed89-3157-46fd-a77e-7c8ee4e5a1e0 -langcode: en -status: true -dependencies: - module: - - block_visibility_groups - - node - theme: - - geofresco -id: syndicate -theme: geofresco -region: footer_menus -weight: 0 -provider: null -plugin: node_syndicate_block -settings: - id: node_syndicate_block - label: Syndicate - label_display: '0' - provider: node - block_count: 10 -visibility: - condition_group: - id: condition_group - negate: false - context_mapping: { } - block_visibility_group: '' diff --git a/config/sync/block.block.views_block__comments_recent_block_1.yml b/config/sync/block.block.views_block__comments_recent_block_1.yml index 10ff39f..2f9a304 100644 --- a/config/sync/block.block.views_block__comments_recent_block_1.yml +++ b/config/sync/block.block.views_block__comments_recent_block_1.yml @@ -18,13 +18,13 @@ plugin: 'views_block:comments_recent-block_1' settings: id: 'views_block:comments_recent-block_1' label: '' - label_display: visible provider: views + label_display: visible views_label: '' items_per_page: none visibility: condition_group: id: condition_group negate: false - context_mapping: { } block_visibility_group: '' + context_mapping: { } diff --git a/config/sync/block.block.views_block__content_by_author_block_author.yml b/config/sync/block.block.views_block__content_by_author_block_author.yml deleted file mode 100644 index 2e5fef5..0000000 --- a/config/sync/block.block.views_block__content_by_author_block_author.yml +++ /dev/null @@ -1,39 +0,0 @@ -uuid: 451af5c3-b1a7-43a9-80ce-64629a3f38db -langcode: en -status: true -dependencies: - config: - - views.view.content_by_author - module: - - block_visibility_groups - - ctools - - views - theme: - - geofresco -id: views_block__content_by_author_block_author -theme: geofresco -region: content -weight: -4 -provider: null -plugin: 'views_block:content_by_author-block_author' -settings: - id: 'views_block:content_by_author-block_author' - label: '' - label_display: visible - provider: views - context_mapping: { } - views_label: '' - items_per_page: '40' -visibility: - condition_group: - id: condition_group - negate: false - context_mapping: { } - block_visibility_group: '' - 'entity_bundle:node': - id: 'entity_bundle:node' - negate: false - context_mapping: - node: '@node.node_route_context:node' - bundles: - people: people diff --git a/config/sync/block.block.views_block__content_recent_block_1.yml b/config/sync/block.block.views_block__content_recent_block_1.yml index 2598674..85cfdca 100644 --- a/config/sync/block.block.views_block__content_recent_block_1.yml +++ b/config/sync/block.block.views_block__content_recent_block_1.yml @@ -18,13 +18,13 @@ plugin: 'views_block:content_recent-block_1' settings: id: 'views_block:content_recent-block_1' label: '' - label_display: visible provider: views + label_display: visible views_label: '' items_per_page: none visibility: condition_group: id: condition_group negate: false - context_mapping: { } block_visibility_group: '' + context_mapping: { } diff --git a/config/sync/block.block.views_block__home_page_views_block_articles.yml b/config/sync/block.block.views_block__home_page_views_block_articles.yml deleted file mode 100644 index a50e383..0000000 --- a/config/sync/block.block.views_block__home_page_views_block_articles.yml +++ /dev/null @@ -1,36 +0,0 @@ -uuid: f6120e1c-309a-4395-a7ef-4b5058e328aa -langcode: en -status: true -dependencies: - config: - - views.view.home_page_views - module: - - block_visibility_groups - - system - - views - theme: - - geofresco -id: views_block__home_page_views_block_articles -theme: geofresco -region: content -weight: -11 -provider: null -plugin: 'views_block:home_page_views-block_articles' -settings: - id: 'views_block:home_page_views-block_articles' - label: '' - label_display: visible - provider: views - views_label: '' - items_per_page: none -visibility: - condition_group: - id: condition_group - negate: false - context_mapping: { } - block_visibility_group: '' - request_path: - id: request_path - negate: false - context_mapping: { } - pages: '' diff --git a/config/sync/block.block.views_block__home_page_views_block_blogs.yml b/config/sync/block.block.views_block__home_page_views_block_blogs.yml deleted file mode 100644 index 3d956ac..0000000 --- a/config/sync/block.block.views_block__home_page_views_block_blogs.yml +++ /dev/null @@ -1,36 +0,0 @@ -uuid: 0d56df84-e499-4cdc-b987-99a668ba1557 -langcode: en -status: true -dependencies: - config: - - views.view.home_page_views - module: - - block_visibility_groups - - system - - views - theme: - - geofresco -id: views_block__home_page_views_block_blogs -theme: geofresco -region: content -weight: -9 -provider: null -plugin: 'views_block:home_page_views-block_blogs' -settings: - id: 'views_block:home_page_views-block_blogs' - label: '' - label_display: visible - provider: views - views_label: '' - items_per_page: none -visibility: - condition_group: - id: condition_group - negate: false - context_mapping: { } - block_visibility_group: '' - request_path: - id: request_path - negate: false - context_mapping: { } - pages: '' diff --git a/config/sync/block.block.views_block__home_page_views_block_collections.yml b/config/sync/block.block.views_block__home_page_views_block_collections.yml deleted file mode 100644 index 554f700..0000000 --- a/config/sync/block.block.views_block__home_page_views_block_collections.yml +++ /dev/null @@ -1,36 +0,0 @@ -uuid: 88fd256e-0dee-4c74-8d20-0351bb6fe912 -langcode: en -status: true -dependencies: - config: - - views.view.home_page_views - module: - - block_visibility_groups - - system - - views - theme: - - geofresco -id: views_block__home_page_views_block_collections -theme: geofresco -region: content -weight: -7 -provider: null -plugin: 'views_block:home_page_views-block_collections' -settings: - id: 'views_block:home_page_views-block_collections' - label: '' - label_display: visible - provider: views - views_label: '' - items_per_page: none -visibility: - condition_group: - id: condition_group - negate: false - context_mapping: { } - block_visibility_group: '' - request_path: - id: request_path - negate: false - context_mapping: { } - pages: '' diff --git a/config/sync/block.block.views_block__home_page_views_block_featured.yml b/config/sync/block.block.views_block__home_page_views_block_featured.yml deleted file mode 100644 index 31730a5..0000000 --- a/config/sync/block.block.views_block__home_page_views_block_featured.yml +++ /dev/null @@ -1,36 +0,0 @@ -uuid: 003eb8a5-597a-4ec9-9ad5-a50573ff103f -langcode: en -status: true -dependencies: - config: - - views.view.home_page_views - module: - - block_visibility_groups - - system - - views - theme: - - geofresco -id: views_block__home_page_views_block_featured -theme: geofresco -region: content -weight: -8 -provider: null -plugin: 'views_block:home_page_views-block_featured' -settings: - id: 'views_block:home_page_views-block_featured' - label: 'Featured articles' - label_display: visible - provider: views - views_label: 'Featured articles' - items_per_page: none -visibility: - condition_group: - id: condition_group - negate: false - context_mapping: { } - block_visibility_group: '' - request_path: - id: request_path - negate: false - context_mapping: { } - pages: '' diff --git a/config/sync/block.block.views_block__home_page_views_block_gleanings.yml b/config/sync/block.block.views_block__home_page_views_block_gleanings.yml deleted file mode 100644 index 42751e2..0000000 --- a/config/sync/block.block.views_block__home_page_views_block_gleanings.yml +++ /dev/null @@ -1,36 +0,0 @@ -uuid: 71576977-dc89-43ad-b748-5f30ddf3e0e1 -langcode: en -status: true -dependencies: - config: - - views.view.home_page_views - module: - - block_visibility_groups - - system - - views - theme: - - geofresco -id: views_block__home_page_views_block_gleanings -theme: geofresco -region: content -weight: -10 -provider: null -plugin: 'views_block:home_page_views-block_gleanings' -settings: - id: 'views_block:home_page_views-block_gleanings' - label: '' - label_display: visible - provider: views - views_label: '' - items_per_page: none -visibility: - condition_group: - id: condition_group - negate: false - context_mapping: { } - block_visibility_group: '' - request_path: - id: request_path - negate: false - context_mapping: { } - pages: '' diff --git a/config/sync/block.block.views_block__related_content_block_related_content.yml b/config/sync/block.block.views_block__related_content_block_related_content.yml index 548ae1d..9fc2409 100644 --- a/config/sync/block.block.views_block__related_content_block_related_content.yml +++ b/config/sync/block.block.views_block__related_content_block_related_content.yml @@ -21,22 +21,22 @@ plugin: 'views_block:related_content-block_related_content' settings: id: 'views_block:related_content-block_related_content' label: '' - label_display: visible provider: views - context_mapping: { } + label_display: visible views_label: '' items_per_page: none + context_mapping: { } visibility: condition_group: id: condition_group negate: false - context_mapping: { } block_visibility_group: '' + context_mapping: { } 'entity_bundle:node': id: 'entity_bundle:node' - negate: true - context_mapping: - node: '@node.node_route_context:node' bundles: landing_page: landing_page people: people + negate: true + context_mapping: + node: '@node.node_route_context:node' diff --git a/config/sync/block.block.views_block__related_content_block_related_content_2.yml b/config/sync/block.block.views_block__related_content_block_related_content_2.yml deleted file mode 100644 index 32c119e..0000000 --- a/config/sync/block.block.views_block__related_content_block_related_content_2.yml +++ /dev/null @@ -1,42 +0,0 @@ -uuid: 69eaf1b9-f9ed-44ab-a28c-a35091ac2595 -langcode: en -status: true -dependencies: - config: - - views.view.related_content - module: - - block_visibility_groups - - node - - views - theme: - - geofresco -id: views_block__related_content_block_related_content_2 -theme: geofresco -region: content_bottom -weight: -12 -provider: null -plugin: 'views_block:related_content-block_related_content' -settings: - id: 'views_block:related_content-block_related_content' - label: '' - label_display: visible - provider: views - context_mapping: { } - views_label: '' - items_per_page: none -visibility: - condition_group: - id: condition_group - negate: false - context_mapping: { } - block_visibility_group: '' - 'entity_bundle:node': - id: 'entity_bundle:node' - negate: false - context_mapping: - node: '@node.node_route_context:node' - bundles: - article: article - blog: blog - collection: collection - gleaning: gleaning 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/block_content.type.basic.yml b/config/sync/block_content.type.basic.yml new file mode 100644 index 0000000..323774d --- /dev/null +++ b/config/sync/block_content.type.basic.yml @@ -0,0 +1,10 @@ +uuid: cf2666c1-8ee6-467c-b771-71f4d39492bf +langcode: en +status: true +dependencies: { } +_core: + default_config_hash: zglzjmYxi0G0ag9MZ02y0LSJOdpWRwJxyP_OvFojFyo +id: basic +label: 'Basic block' +revision: 0 +description: 'A basic block contains a title and a body.' diff --git a/config/sync/block_content.type.slide.yml b/config/sync/block_content.type.slide.yml index 29afbff..d1cfaf2 100644 --- a/config/sync/block_content.type.slide.yml +++ b/config/sync/block_content.type.slide.yml @@ -6,5 +6,5 @@ _core: default_config_hash: pOGP3cCvZKJh3KvC3N1wt5CzxZgG0DOu7KDyFMi3gZw id: slide label: Slide -revision: true +revision: 1 description: '' diff --git a/config/sync/block_visibility_groups.block_visibility_group.article_listing.yml b/config/sync/block_visibility_groups.block_visibility_group.article_listing.yml index e0c6834..c628d11 100644 --- a/config/sync/block_visibility_groups.block_visibility_group.article_listing.yml +++ b/config/sync/block_visibility_groups.block_visibility_group.article_listing.yml @@ -12,8 +12,8 @@ logic: and conditions: 7ff8110c-3b7e-4b97-8def-4081a2590558: id: request_path - negate: false - uuid: 7ff8110c-3b7e-4b97-8def-4081a2590558 - context_mapping: { } pages: /articles + negate: false + context_mapping: { } + uuid: 7ff8110c-3b7e-4b97-8def-4081a2590558 allow_other_conditions: false diff --git a/config/sync/block_visibility_groups.block_visibility_group.blog_listing.yml b/config/sync/block_visibility_groups.block_visibility_group.blog_listing.yml index 82224f9..c8e7652 100644 --- a/config/sync/block_visibility_groups.block_visibility_group.blog_listing.yml +++ b/config/sync/block_visibility_groups.block_visibility_group.blog_listing.yml @@ -12,8 +12,8 @@ logic: and conditions: b3c1bb42-5349-4f54-abe9-590277c82bcc: id: request_path - negate: false - uuid: b3c1bb42-5349-4f54-abe9-590277c82bcc - context_mapping: { } pages: /blog + negate: false + context_mapping: { } + uuid: b3c1bb42-5349-4f54-abe9-590277c82bcc allow_other_conditions: false diff --git a/config/sync/block_visibility_groups.block_visibility_group.search.yml b/config/sync/block_visibility_groups.block_visibility_group.search.yml index 4ae0e84..e354fb9 100644 --- a/config/sync/block_visibility_groups.block_visibility_group.search.yml +++ b/config/sync/block_visibility_groups.block_visibility_group.search.yml @@ -12,8 +12,8 @@ logic: and conditions: f502a545-a711-401c-8e94-6e727993abb4: id: request_path - negate: false - uuid: f502a545-a711-401c-8e94-6e727993abb4 - context_mapping: { } pages: /search + negate: false + context_mapping: { } + uuid: f502a545-a711-401c-8e94-6e727993abb4 allow_other_conditions: false diff --git a/config/sync/bulma.settings.yml b/config/sync/bulma.settings.yml index b3fe700..8cc6e0a 100644 --- a/config/sync/bulma.settings.yml +++ b/config/sync/bulma.settings.yml @@ -1,5 +1,3 @@ -_core: - default_config_hash: u5HfkXMiQipMF-CAMTyJj7Thrm-29irq33crpU5f3jI general: block: 1 icon: 1 @@ -27,7 +25,9 @@ table: narrow: 0 cdn: bulma: - version: 0.9.1 + version: 0.5.3 bulmaswatch: - version: 0.8.1 + version: 0.5.1 theme: default +_core: + default_config_hash: u5HfkXMiQipMF-CAMTyJj7Thrm-29irq33crpU5f3jI diff --git a/config/sync/captcha.captcha_point.comment_comment_form.yml b/config/sync/captcha.captcha_point.comment_comment_form.yml deleted file mode 100644 index 44eccb7..0000000 --- a/config/sync/captcha.captcha_point.comment_comment_form.yml +++ /dev/null @@ -1,7 +0,0 @@ -uuid: 68c612df-4e72-4492-bdd8-049905aede18 -langcode: en -status: true -dependencies: { } -formId: comment_comment_form -captchaType: riddler/Riddler -label: comment_comment_form diff --git a/config/sync/captcha.captcha_point.contact_message_feedback_form.yml b/config/sync/captcha.captcha_point.contact_message_feedback_form.yml deleted file mode 100644 index 9a4bfff..0000000 --- a/config/sync/captcha.captcha_point.contact_message_feedback_form.yml +++ /dev/null @@ -1,9 +0,0 @@ -uuid: bd58361f-7061-4dd2-9d6f-bbf0619943f7 -langcode: en -status: true -dependencies: { } -_core: - default_config_hash: MbTbUeeaumH8DjENUwT0-8uW9UuxyNHbF6jbKCLhYkk -formId: contact_message_feedback_form -captchaType: riddler/Riddler -label: contact_message_feedback_form diff --git a/config/sync/captcha.captcha_point.contact_message_personal_form.yml b/config/sync/captcha.captcha_point.contact_message_personal_form.yml deleted file mode 100644 index 718b536..0000000 --- a/config/sync/captcha.captcha_point.contact_message_personal_form.yml +++ /dev/null @@ -1,9 +0,0 @@ -uuid: 9452d548-2d1b-450b-83ea-70517836f68b -langcode: en -status: false -dependencies: { } -_core: - default_config_hash: 7zUmOK1ti1l0bc78ieysHa3_57MOin7IgHpHhwbSugs -formId: contact_message_personal_form -captchaType: default -label: contact_message_personal_form diff --git a/config/sync/captcha.captcha_point.node_article_form.yml b/config/sync/captcha.captcha_point.node_article_form.yml deleted file mode 100644 index cf1f38a..0000000 --- a/config/sync/captcha.captcha_point.node_article_form.yml +++ /dev/null @@ -1,7 +0,0 @@ -uuid: 51109243-2baa-4002-91c4-0ce1f2df81ed -langcode: en -status: false -dependencies: { } -formId: node_article_form -captchaType: default -label: node_article_form diff --git a/config/sync/captcha.captcha_point.node_blog_form.yml b/config/sync/captcha.captcha_point.node_blog_form.yml deleted file mode 100644 index 193197f..0000000 --- a/config/sync/captcha.captcha_point.node_blog_form.yml +++ /dev/null @@ -1,7 +0,0 @@ -uuid: e5a56ee3-d865-4616-b2e6-765bd6681ce2 -langcode: en -status: false -dependencies: { } -formId: node_blog_form -captchaType: default -label: node_blog_form diff --git a/config/sync/captcha.captcha_point.node_collection_form.yml b/config/sync/captcha.captcha_point.node_collection_form.yml deleted file mode 100644 index 8cc9cd0..0000000 --- a/config/sync/captcha.captcha_point.node_collection_form.yml +++ /dev/null @@ -1,7 +0,0 @@ -uuid: f75d1ab1-7635-4339-a3eb-01d4529b99fc -langcode: en -status: false -dependencies: { } -formId: node_collection_form -captchaType: default -label: node_collection_form diff --git a/config/sync/captcha.captcha_point.node_gleaning_form.yml b/config/sync/captcha.captcha_point.node_gleaning_form.yml deleted file mode 100644 index 5df70e1..0000000 --- a/config/sync/captcha.captcha_point.node_gleaning_form.yml +++ /dev/null @@ -1,7 +0,0 @@ -uuid: e61990c1-71bf-4f6b-ae82-52216c49eafc -langcode: en -status: false -dependencies: { } -formId: node_gleaning_form -captchaType: default -label: node_gleaning_form diff --git a/config/sync/captcha.captcha_point.node_landing_page_form.yml b/config/sync/captcha.captcha_point.node_landing_page_form.yml deleted file mode 100644 index 6c638a4..0000000 --- a/config/sync/captcha.captcha_point.node_landing_page_form.yml +++ /dev/null @@ -1,7 +0,0 @@ -uuid: 6dbd3f2e-f441-4750-a6ed-be1072c232d7 -langcode: en -status: false -dependencies: { } -formId: node_landing_page_form -captchaType: default -label: node_landing_page_form diff --git a/config/sync/captcha.captcha_point.node_page_form.yml b/config/sync/captcha.captcha_point.node_page_form.yml deleted file mode 100644 index e4a9dde..0000000 --- a/config/sync/captcha.captcha_point.node_page_form.yml +++ /dev/null @@ -1,7 +0,0 @@ -uuid: bd86139c-8727-430b-b333-4c58e153829f -langcode: en -status: false -dependencies: { } -formId: node_page_form -captchaType: default -label: node_page_form diff --git a/config/sync/captcha.captcha_point.node_people_form.yml b/config/sync/captcha.captcha_point.node_people_form.yml deleted file mode 100644 index c713f44..0000000 --- a/config/sync/captcha.captcha_point.node_people_form.yml +++ /dev/null @@ -1,7 +0,0 @@ -uuid: f07df487-9111-43f2-b049-9c45e982906d -langcode: en -status: false -dependencies: { } -formId: node_people_form -captchaType: default -label: node_people_form diff --git a/config/sync/captcha.captcha_point.user_login_form.yml b/config/sync/captcha.captcha_point.user_login_form.yml deleted file mode 100644 index 2bf2125..0000000 --- a/config/sync/captcha.captcha_point.user_login_form.yml +++ /dev/null @@ -1,9 +0,0 @@ -uuid: 6be0740e-18a3-4f43-9236-da32c00b09e6 -langcode: en -status: false -dependencies: { } -_core: - default_config_hash: XbughDuwgOtc_8ztmYxz84gaXBeR760xH3bGSKD9v1Q -formId: user_login_form -captchaType: default -label: user_login_form diff --git a/config/sync/captcha.captcha_point.user_pass.yml b/config/sync/captcha.captcha_point.user_pass.yml deleted file mode 100644 index 1150677..0000000 --- a/config/sync/captcha.captcha_point.user_pass.yml +++ /dev/null @@ -1,9 +0,0 @@ -uuid: b12e0ad3-448a-4669-bfdf-d2c75a1f7bdf -langcode: en -status: false -dependencies: { } -_core: - default_config_hash: qZeHI5fZ9WQRKsfl8FMBwzk3puSsWCRtWKEZh04JJUo -formId: user_pass -captchaType: default -label: user_pass diff --git a/config/sync/captcha.captcha_point.user_register_form.yml b/config/sync/captcha.captcha_point.user_register_form.yml deleted file mode 100644 index e4fee70..0000000 --- a/config/sync/captcha.captcha_point.user_register_form.yml +++ /dev/null @@ -1,9 +0,0 @@ -uuid: df24b830-5560-454f-a742-6572f54c62e0 -langcode: en -status: false -dependencies: { } -_core: - default_config_hash: 2iz3cMg7T1eSKXtNIB9WyaRptfg7wosDDPBSBhXFXl0 -formId: user_register_form -captchaType: default -label: user_register_form diff --git a/config/sync/captcha.settings.yml b/config/sync/captcha.settings.yml deleted file mode 100644 index bd7904b..0000000 --- a/config/sync/captcha.settings.yml +++ /dev/null @@ -1,16 +0,0 @@ -_core: null -langcode: en -enable_globally: 0 -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_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 -enable_stats: false -log_wrong_responses: true -default_config_hash: QDFjOXYIYVwCPQYHY4wAx4DUqOEkNaZokIx6DGApR9I diff --git a/config/sync/charts.settings.yml b/config/sync/charts.settings.yml deleted file mode 100644 index afcef16..0000000 --- a/config/sync/charts.settings.yml +++ /dev/null @@ -1,75 +0,0 @@ -_core: - default_config_hash: wZ5T1cqvSG3zUPxdtz_BgdBiNjgy1K1Al-L3iT7sPh8 -dependencies: { } -charts_default_settings: - library: '' - type: line - display: - title: '' - subtitle: '' - colors: - - '#006fb0' - - '#f07c33' - - '#342e9c' - - '#579b17' - - '#3f067a' - - '#cbde67' - - '#7643b6' - - '#738d00' - - '#c157c7' - - '#02dab1' - - '#ed56b4' - - '#d8d981' - - '#004695' - - '#736000' - - '#a5a5ff' - - '#833a00' - - '#ff9ee9' - - '#684507' - - '#fe4f85' - - '#5d0011' - - '#ffa67b' - - '#88005c' - - '#ff9b8f' - - '#85000f' - - '#ff7581' - color_changer: false - title_position: out - tooltips: true - tooltips_use_html: false - data_markers: false - data_labels: false - legend: false - legend_position: right - background: '' - three_dimensional: 0 - polar: 0 - dimensions: - width: '' - width_units: '%' - height: '' - height_units: '' - gauge: - max: '100' - min: '0' - green_from: '85' - green_to: '100' - yellow_from: '50' - yellow_to: '85' - red_from: '0' - red_to: '50' - xaxis: - title: '' - labels_rotation: '0' - yaxis: - title: '' - min: '' - max: '' - prefix: '' - suffix: '' - decimal_count: '' - labels_rotation: '0' -advanced: - debug: false - requirements: - cdn: true diff --git a/config/sync/claro.settings.yml b/config/sync/claro.settings.yml index 2be1990..335da39 100644 --- a/config/sync/claro.settings.yml +++ b/config/sync/claro.settings.yml @@ -1,5 +1,5 @@ -_core: - default_config_hash: 8GyocqC2nyRrMjMdTwkLg8XLON-hZQ68wsuOEjxmCx0 third_party_settings: shortcut: module_link: true +_core: + default_config_hash: 8GyocqC2nyRrMjMdTwkLg8XLON-hZQ68wsuOEjxmCx0 diff --git a/config/sync/comment.settings.yml b/config/sync/comment.settings.yml index 5b7ad98..e966828 100644 --- a/config/sync/comment.settings.yml +++ b/config/sync/comment.settings.yml @@ -1,3 +1,3 @@ +log_ip_addresses: false _core: default_config_hash: YNUW2Ij5uE7a4oaXp3i_2lvaFdYM1zNKPPfnEjB0jEc -log_ip_addresses: false diff --git a/config/sync/comment_notify.settings.yml b/config/sync/comment_notify.settings.yml deleted file mode 100644 index 07551c0..0000000 --- a/config/sync/comment_notify.settings.yml +++ /dev/null @@ -1,19 +0,0 @@ -_core: - default_config_hash: y7oCzsZ-B0R-nyeSFO1f2h9BEChUQGSZT-3cqXd-sLE -langcode: en -bundle_types: { } -available_alerts: - 1: true - 2: false -enable_default: - watcher: '1' - entity_author: true -mail_templates: - watcher: - node: - subject: '[site:name] :: new comment on [node:title]' - body: "Hi [comment-subscribed:author],\r\n\r\n[comment:author] has commented on: \"[node:title]\"\r\n\r\n----\r\n[comment:title]\r\n[comment:body]\r\n----\r\n\r\nYou can view the comment at the following url\r\n[comment:url]\r\n\r\nYou can stop receiving emails when someone replies to this post,\r\nby going to [comment-subscribed:unsubscribe-url]\r\n\r\nYou can set up auto-following feature for all future posts\r\nby creating your own user with a few clicks here [site:login-url]\r\n\r\n-- [site:name] team\r\n[site:url]\r\n" - entity_author: - node: - subject: '[site:name] :: new comment for your post' - body: "Hi [node:author],\r\n\r\nYou have received a comment on: \"[node:title]\"\r\n\r\n----\r\n[comment:title]\r\n[comment:body]\r\n----\r\n\r\nYou can view the comment at the following url\r\n[comment:url]\r\n\r\nYou will receive emails like this for all replies to your posts. You can\r\ndisable this by logging in and changing the settings on your user account at\r\n[node:author:edit-url].\r\n\r\n-- [site:name] team\r\n[site:url]\r\n" diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.action.yml b/config/sync/config_snapshot.snapshot.config_sync.module.action.yml deleted file mode 100644 index 1a1a170..0000000 --- a/config/sync/config_snapshot.snapshot.config_sync.module.action.yml +++ /dev/null @@ -1,16 +0,0 @@ -uuid: 6d385c6b-fb29-4b9e-939b-912c697359da -langcode: en -status: true -dependencies: - module: - - action -id: config_sync.module.action -snapshotSet: config_sync -extensionType: module -extensionName: action -items: - - - collection: '' - name: action.settings - data: - recursion_limit: 35 diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.admin_links_access_filter.yml b/config/sync/config_snapshot.snapshot.config_sync.module.admin_links_access_filter.yml new file mode 100644 index 0000000..ddd25ef --- /dev/null +++ b/config/sync/config_snapshot.snapshot.config_sync.module.admin_links_access_filter.yml @@ -0,0 +1,11 @@ +uuid: 4b38040e-f8fa-4c1d-86dd-49817e45343e +langcode: en +status: true +dependencies: + module: + - admin_links_access_filter +id: config_sync.module.admin_links_access_filter +snapshotSet: config_sync +extensionType: module +extensionName: admin_links_access_filter +items: { } diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.admin_toolbar.yml b/config/sync/config_snapshot.snapshot.config_sync.module.admin_toolbar.yml index 974c8bc..1048de2 100644 --- a/config/sync/config_snapshot.snapshot.config_sync.module.admin_toolbar.yml +++ b/config/sync/config_snapshot.snapshot.config_sync.module.admin_toolbar.yml @@ -8,11 +8,4 @@ id: config_sync.module.admin_toolbar snapshotSet: config_sync extensionType: module extensionName: admin_toolbar -items: - - - collection: '' - name: admin_toolbar.settings - data: - menu_depth: 4 - _core: - default_config_hash: jvTSppzcgH5wnzBhX5xnAExcp2I1CzkQ_aky65XNfYI +items: { } diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.admin_toolbar_search.yml b/config/sync/config_snapshot.snapshot.config_sync.module.admin_toolbar_search.yml deleted file mode 100644 index 2027d94..0000000 --- a/config/sync/config_snapshot.snapshot.config_sync.module.admin_toolbar_search.yml +++ /dev/null @@ -1,18 +0,0 @@ -uuid: 42976f9f-aae1-42be-9185-35bfbc6e3cbd -langcode: en -status: true -dependencies: - module: - - admin_toolbar_search -id: config_sync.module.admin_toolbar_search -snapshotSet: config_sync -extensionType: module -extensionName: admin_toolbar_search -items: - - - collection: '' - name: admin_toolbar_search.settings - data: - display_menu_item: 0 - _core: - default_config_hash: AAmWcgwzGYbXfR6wfEfMyoi3r5QZwlpxvq5dHbupnJo diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.admin_toolbar_tools.yml b/config/sync/config_snapshot.snapshot.config_sync.module.admin_toolbar_tools.yml index 875c983..9e5056d 100644 --- a/config/sync/config_snapshot.snapshot.config_sync.module.admin_toolbar_tools.yml +++ b/config/sync/config_snapshot.snapshot.config_sync.module.admin_toolbar_tools.yml @@ -8,13 +8,4 @@ id: config_sync.module.admin_toolbar_tools snapshotSet: config_sync extensionType: module extensionName: admin_toolbar_tools -items: - - - collection: '' - name: admin_toolbar_tools.settings - data: - max_bundle_number: 20 - hoverintent_functionality: true - show_local_tasks: false - _core: - default_config_hash: WgdZsrd_5w9jlmcHV4R9dD2tG9OZEkYo4I_O8h7Gq8Q +items: { } diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.antibot.yml b/config/sync/config_snapshot.snapshot.config_sync.module.antibot.yml deleted file mode 100644 index ca24a34..0000000 --- a/config/sync/config_snapshot.snapshot.config_sync.module.antibot.yml +++ /dev/null @@ -1,24 +0,0 @@ -uuid: 756b3805-463c-4e32-a94c-fc47d303b525 -langcode: en -status: true -dependencies: - module: - - antibot -id: config_sync.module.antibot -snapshotSet: config_sync -extensionType: module -extensionName: antibot -items: - - - collection: '' - name: antibot.settings - data: - form_ids: - - 'comment_*' - - user_login_form - - user_pass - - user_register_form - - 'contact_message_*' - show_form_ids: false - _core: - default_config_hash: 2TnP0TViNExHGuA7Cdr4L3uxhYGNzKyL0XnoAhtSHMQ diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.automated_cron.yml b/config/sync/config_snapshot.snapshot.config_sync.module.automated_cron.yml index fe6004b..a6a603c 100644 --- a/config/sync/config_snapshot.snapshot.config_sync.module.automated_cron.yml +++ b/config/sync/config_snapshot.snapshot.config_sync.module.automated_cron.yml @@ -14,5 +14,3 @@ items: name: automated_cron.settings data: interval: 10800 - _core: - default_config_hash: fUksROt4FfkAU9BV4hV2XvhTBSS2nTNrZS4U7S-tKrs diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.autosave_form.yml b/config/sync/config_snapshot.snapshot.config_sync.module.autosave_form.yml deleted file mode 100644 index f1254a6..0000000 --- a/config/sync/config_snapshot.snapshot.config_sync.module.autosave_form.yml +++ /dev/null @@ -1,35 +0,0 @@ -uuid: db44b7f1-dfc3-49ae-bd85-1e61a233c6e1 -langcode: en -status: true -dependencies: - module: - - autosave_form -id: config_sync.module.autosave_form -snapshotSet: config_sync -extensionType: module -extensionName: autosave_form -items: - - - collection: '' - name: autosave_form.messages - data: - entity_saved_in_background_alert_message: 'The content has been modified elsewhere. As a result, autosaving has been disabled and autosaved states for the current page have been deleted. Autosave will be reactivated after reloading the page.' - _core: - default_config_hash: In3MY-CuVp64RxCeU5X6rsEhR6jR4Si8OG6BX18DALg - - - collection: '' - name: autosave_form.settings - data: - interval: 60000 - only_on_form_change: false - active_on: - content_entity_forms: true - config_entity_forms: false - notification: - active: true - message: 'Saving draft...' - delay: 1000 - allowed_content_entity_types: { } - allowed_new: true - _core: - default_config_hash: NX6_WyjygzZfQY-9SZq6_5fmh_KUK7L0XlOqaAXkRCQ diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.better_normalizers.yml b/config/sync/config_snapshot.snapshot.config_sync.module.better_normalizers.yml new file mode 100644 index 0000000..33e6fdb --- /dev/null +++ b/config/sync/config_snapshot.snapshot.config_sync.module.better_normalizers.yml @@ -0,0 +1,11 @@ +uuid: 46344347-c827-4e07-a053-1730eb2bfdcf +langcode: en +status: true +dependencies: + module: + - better_normalizers +id: config_sync.module.better_normalizers +snapshotSet: config_sync +extensionType: module +extensionName: better_normalizers +items: { } diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.block.yml b/config/sync/config_snapshot.snapshot.config_sync.module.block.yml index e238366..735e8d1 100644 --- a/config/sync/config_snapshot.snapshot.config_sync.module.block.yml +++ b/config/sync/config_snapshot.snapshot.config_sync.module.block.yml @@ -8,49 +8,4 @@ id: config_sync.module.block snapshotSet: config_sync extensionType: module extensionName: block -items: - - - collection: '' - name: tour.tour.block-layout - data: - langcode: en - status: true - dependencies: - module: - - block - id: block-layout - label: 'Block Layout Page' - module: block - routes: - - - route_name: block.admin_display - tips: - block-layout: - id: block-layout - plugin: text - label: 'Block Layout' - weight: 1 - body: 'Blocks are boxes of content rendered into an area, or region, of a web page that can be displayed in regions (such as footer or sidebar) on your page.' - place-block: - id: place-block - plugin: text - label: 'Place Blocks' - weight: 2 - selector: .button--small - body: 'Any custom or contributed block can be added to a particular region by clicking on a button Place block. A new block can also be created by clicking on Place Block' - block-region: - id: block-region - plugin: text - label: 'Block Region' - weight: 3 - selector: .block-region-select - body: 'Assign or change the region of a block by clicking here. A dropdown list with all the regions will appear. You can place one block in multiple regions.' - configure-block: - id: configure-block - plugin: text - label: 'Configure Block' - weight: 4 - selector: .dropbutton-widget - body: 'By Clicking on "Configure" you can go ahead and edit the contents of the block, deal with the visibility settings and even change the placement of where it is on your theme.' - _core: - default_config_hash: pG6QAggTrD7RQWb79PT3NH48GSvTiePly_l53f3OENs +items: { } 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.block_content.yml b/config/sync/config_snapshot.snapshot.config_sync.module.block_content.yml index 71013b6..e46c272 100644 --- a/config/sync/config_snapshot.snapshot.config_sync.module.block_content.yml +++ b/config/sync/config_snapshot.snapshot.config_sync.module.block_content.yml @@ -20,11 +20,8 @@ items: - block_content id: block_content.full label: Full - description: '' targetEntityType: block_content cache: true - _core: - default_config_hash: Q7yUUYeRLByl-MCGveKKF_KhAtNICLCMJuKWfugCvso - collection: '' name: field.storage.block_content.body @@ -47,8 +44,6 @@ items: indexes: { } persist_with_no_fields: true custom_storage: false - _core: - default_config_hash: eS0snV_L3dx9shtWRTzm5eblwOJ7qKWC9IE-4GMTDFc - collection: '' name: views.view.block_content @@ -60,20 +55,112 @@ items: - block_content - user id: block_content - label: 'Content blocks' + label: 'Custom block library' module: views - description: 'Find and manage content blocks.' + description: 'Find and manage custom blocks.' tag: default base_table: block_content_field_data base_field: id + core: 8.x display: default: - id: default - display_title: Default display_plugin: default + id: default + display_title: Master position: 0 display_options: - title: 'Content blocks' + access: + type: perm + options: + perm: 'administer blocks' + cache: + type: tag + options: { } + query: + type: views_query + options: + disable_sql_rewrite: false + distinct: false + replica: false + query_comment: '' + query_tags: { } + 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 + pager: + type: mini + options: + items_per_page: 50 + offset: 0 + id: 0 + total_pages: null + tags: + previous: '‹ Previous' + next: 'Next ›' + 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 + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + override: true + sticky: false + caption: '' + summary: '' + description: '' + columns: + info: info + type: type + changed: changed + operations: operations + info: + info: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + type: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + changed: + sortable: true + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: '' + operations: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + default: changed + empty_table: true + row: + type: fields fields: info: id: info @@ -82,9 +169,6 @@ items: relationship: none group_type: group admin_label: '' - entity_type: null - entity_field: info - plugin_id: field label: 'Block description' exclude: false alter: @@ -140,6 +224,9 @@ items: multi_type: separator separator: ', ' field_api_classes: false + entity_type: null + entity_field: info + plugin_id: field type: id: type table: block_content_field_data @@ -147,9 +234,6 @@ items: relationship: none group_type: group admin_label: '' - entity_type: block_content - entity_field: type - plugin_id: field label: 'Block type' exclude: false alter: @@ -205,6 +289,9 @@ items: multi_type: separator separator: ', ' field_api_classes: false + entity_type: block_content + entity_field: type + plugin_id: field changed: id: changed table: block_content_field_data @@ -212,9 +299,6 @@ items: relationship: none group_type: group admin_label: '' - entity_type: block_content - entity_field: changed - plugin_id: field label: Updated exclude: false alter: @@ -256,20 +340,14 @@ items: hide_empty: false empty_zero: false hide_alter_empty: true + entity_type: block_content + entity_field: changed type: timestamp settings: date_format: short custom_date_format: '' timezone: '' - tooltip: - date_format: long - custom_date_format: '' - time_diff: - enabled: false - future_format: '@interval hence' - past_format: '@interval ago' - granularity: 2 - refresh: 60 + plugin_id: field operations: id: operations table: block_content @@ -277,8 +355,6 @@ items: relationship: none group_type: group admin_label: '' - entity_type: block_content - plugin_id: entity_operations label: Operations exclude: false alter: @@ -321,66 +397,8 @@ items: empty_zero: false hide_alter_empty: true destination: true - pager: - type: mini - options: - offset: 0 - items_per_page: 50 - total_pages: null - id: 0 - tags: - next: 'Next ›' - previous: '‹ 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: true - reset_button_label: Reset - exposed_sorts_label: 'Sort by' - expose_sort_order: true - sort_asc_label: Asc - sort_desc_label: Desc - access: - type: perm - options: - perm: 'access block library' - cache: - type: tag - options: { } - empty: - area_text_custom: - id: area_text_custom - table: views - field: area_text_custom - relationship: none - group_type: group - admin_label: '' - plugin_id: text_custom - empty: true - content: 'There are no content blocks available.' - tokenize: false - block_content_listing_empty: - id: block_content_listing_empty - table: block_content - field: block_content_listing_empty - relationship: none - group_type: group - admin_label: '' entity_type: block_content - plugin_id: block_content_listing_empty - label: '' - empty: true - sorts: { } - arguments: { } + plugin_id: entity_operations filters: info: id: info @@ -389,9 +407,6 @@ items: relationship: none group_type: group admin_label: '' - entity_type: block_content - entity_field: info - plugin_id: string operator: contains value: '' group: 1 @@ -402,8 +417,6 @@ items: description: '' use_operator: false operator: info_op - operator_limit_selection: false - operator_list: { } identifier: info required: false remember: false @@ -424,6 +437,9 @@ items: default_group: All default_group_multiple: { } group_items: { } + entity_type: block_content + entity_field: info + plugin_id: string type: id: type table: block_content_field_data @@ -431,9 +447,6 @@ items: relationship: none group_type: group admin_label: '' - entity_type: block_content - entity_field: type - plugin_id: bundle operator: in value: { } group: 1 @@ -444,8 +457,6 @@ items: description: '' use_operator: false operator: type_op - operator_limit_selection: false - operator_list: { } identifier: type required: false remember: false @@ -467,6 +478,9 @@ items: default_group: All default_group_multiple: { } group_items: { } + entity_type: block_content + entity_field: type + plugin_id: bundle reusable: id: reusable table: block_content_field_data @@ -474,9 +488,6 @@ items: relationship: none group_type: group admin_label: '' - entity_type: block_content - entity_field: reusable - plugin_id: boolean operator: '=' value: '1' group: 1 @@ -487,8 +498,6 @@ items: description: '' use_operator: false operator: '' - operator_limit_selection: false - operator_list: { } identifier: '' required: false remember: false @@ -507,100 +516,70 @@ items: default_group: All default_group_multiple: { } group_items: { } - style: - type: table - options: - grouping: { } - row_class: '' - default_row_class: true - columns: - info: info - type: type - changed: changed - operations: operations - default: changed - info: - info: - sortable: true - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - type: - sortable: true - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - changed: - sortable: true - default_sort_order: desc - align: '' - separator: '' - empty_column: false - responsive: '' - operations: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - override: true - sticky: false - summary: '' - empty_table: true - caption: '' - description: '' - row: - type: fields - query: - type: views_query - options: - query_comment: '' - disable_sql_rewrite: false - distinct: false - replica: false - query_tags: { } - relationships: { } + entity_type: block_content + entity_field: reusable + plugin_id: boolean + sorts: { } + title: 'Custom block library' header: { } footer: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + empty: true + tokenize: false + content: 'There are no custom blocks available.' + plugin_id: text_custom + block_content_listing_empty: + admin_label: '' + empty: true + field: block_content_listing_empty + group_type: group + id: block_content_listing_empty + label: '' + relationship: none + table: block_content + plugin_id: block_content_listing_empty + entity_type: block_content + relationships: { } + arguments: { } display_extenders: { } cache_metadata: - max-age: -1 contexts: - 'languages:language_content' - 'languages:language_interface' - url - url.query_args - user.permissions + max-age: 0 tags: { } page_1: + display_plugin: page id: page_1 display_title: Page - display_plugin: page position: 1 display_options: display_extenders: { } - path: admin/content/block + path: admin/structure/block/block-content menu: type: tab - title: Blocks - description: 'Create and edit content blocks.' + title: 'Custom block library' + description: '' + parent: block.admin_display weight: 0 - menu_name: admin - parent: system.admin_content context: '0' + menu_name: admin cache_metadata: - max-age: -1 contexts: - 'languages:language_content' - 'languages:language_interface' - url - url.query_args - user.permissions + max-age: 0 tags: { } - _core: - default_config_hash: AcOE_1RLjX4okjWSOk7Pen1IdtPsY0Nbn0HXWG3zMqc diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.captcha.yml b/config/sync/config_snapshot.snapshot.config_sync.module.captcha.yml deleted file mode 100644 index 4593ed4..0000000 --- a/config/sync/config_snapshot.snapshot.config_sync.module.captcha.yml +++ /dev/null @@ -1,78 +0,0 @@ -uuid: a0774d2b-61d7-4c01-8258-8981e5117df1 -langcode: en -status: true -dependencies: - module: - - captcha -id: config_sync.module.captcha -snapshotSet: config_sync -extensionType: module -extensionName: captcha -items: - - - collection: '' - name: captcha.captcha_point.contact_message_personal_form - data: - langcode: en - status: false - dependencies: { } - formId: contact_message_personal_form - captchaType: default - label: contact_message_personal_form - _core: - default_config_hash: 7zUmOK1ti1l0bc78ieysHa3_57MOin7IgHpHhwbSugs - - - collection: '' - name: captcha.captcha_point.user_login_form - data: - langcode: en - status: false - dependencies: { } - formId: user_login_form - captchaType: default - label: user_login_form - _core: - default_config_hash: XbughDuwgOtc_8ztmYxz84gaXBeR760xH3bGSKD9v1Q - - - collection: '' - name: captcha.captcha_point.user_pass - data: - langcode: en - status: false - dependencies: { } - formId: user_pass - captchaType: default - label: user_pass - _core: - default_config_hash: qZeHI5fZ9WQRKsfl8FMBwzk3puSsWCRtWKEZh04JJUo - - - collection: '' - name: captcha.captcha_point.user_register_form - data: - langcode: en - status: false - dependencies: { } - formId: user_register_form - captchaType: default - label: user_register_form - _core: - default_config_hash: 2iz3cMg7T1eSKXtNIB9WyaRptfg7wosDDPBSBhXFXl0 - - - collection: '' - name: captcha.settings - data: - enable_globally: 0 - enable_globally_on_admin_routes: false - default_challenge: captcha/Math - description: 'This question is for testing whether or not you are a human visitor and to prevent automated spam submissions.' - title: CAPTCHA - administration_mode: false - 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 - enable_stats: false - log_wrong_responses: false - _core: - default_config_hash: QDFjOXYIYVwCPQYHY4wAx4DUqOEkNaZokIx6DGApR9I diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.charts.yml b/config/sync/config_snapshot.snapshot.config_sync.module.charts.yml deleted file mode 100644 index 20a070c..0000000 --- a/config/sync/config_snapshot.snapshot.config_sync.module.charts.yml +++ /dev/null @@ -1,90 +0,0 @@ -uuid: 9e67a143-2ccc-4837-aaf4-9ebdb0889b7b -langcode: en -status: true -dependencies: - module: - - charts -id: config_sync.module.charts -snapshotSet: config_sync -extensionType: module -extensionName: charts -items: - - - collection: '' - name: charts.settings - data: - dependencies: { } - charts_default_settings: - library: '' - type: line - display: - title: '' - subtitle: '' - colors: - - '#006fb0' - - '#f07c33' - - '#342e9c' - - '#579b17' - - '#3f067a' - - '#cbde67' - - '#7643b6' - - '#738d00' - - '#c157c7' - - '#02dab1' - - '#ed56b4' - - '#d8d981' - - '#004695' - - '#736000' - - '#a5a5ff' - - '#833a00' - - '#ff9ee9' - - '#684507' - - '#fe4f85' - - '#5d0011' - - '#ffa67b' - - '#88005c' - - '#ff9b8f' - - '#85000f' - - '#ff7581' - color_changer: false - title_position: out - tooltips: true - tooltips_use_html: false - data_markers: false - data_labels: false - legend: false - legend_position: right - background: '' - three_dimensional: 0 - polar: 0 - dimensions: - width: '' - width_units: '%' - height: '' - height_units: '' - gauge: - max: '100' - min: '0' - green_from: '85' - green_to: '100' - yellow_from: '50' - yellow_to: '85' - red_from: '0' - red_to: '50' - xaxis: - title: '' - labels_rotation: '0' - yaxis: - title: '' - min: '' - max: '' - prefix: '' - suffix: '' - decimal_count: '' - labels_rotation: '0' - advanced: - debug: false - requirements: - cdn: true - _core: - default_config_hash: wZ5T1cqvSG3zUPxdtz_BgdBiNjgy1K1Al-L3iT7sPh8 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.classitup.yml b/config/sync/config_snapshot.snapshot.config_sync.module.classitup.yml deleted file mode 100644 index e63e46e..0000000 --- a/config/sync/config_snapshot.snapshot.config_sync.module.classitup.yml +++ /dev/null @@ -1,11 +0,0 @@ -uuid: 43dd3c99-9e37-4dc8-b9f5-16b8f46efe8f -langcode: en -status: true -dependencies: - module: - - classitup -id: config_sync.module.classitup -snapshotSet: config_sync -extensionType: module -extensionName: classitup -items: { } diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.scn.yml b/config/sync/config_snapshot.snapshot.config_sync.module.color.yml similarity index 50% rename from config/sync/config_snapshot.snapshot.config_sync.module.scn.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.color.yml index 2f5244f..adc1fd8 100644 --- a/config/sync/config_snapshot.snapshot.config_sync.module.scn.yml +++ b/config/sync/config_snapshot.snapshot.config_sync.module.color.yml @@ -1,11 +1,11 @@ -uuid: 72dd1f0f-cc86-46e5-95e7-192e4a7deaca +uuid: 44432830-2e91-428c-9984-0a27e5aa0835 langcode: en status: true dependencies: module: - - scn -id: config_sync.module.scn + - color +id: config_sync.module.color snapshotSet: config_sync extensionType: module -extensionName: scn +extensionName: color items: { } diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.comment.yml b/config/sync/config_snapshot.snapshot.config_sync.module.comment.yml index 5a35195..22a6b66 100644 --- a/config/sync/config_snapshot.snapshot.config_sync.module.comment.yml +++ b/config/sync/config_snapshot.snapshot.config_sync.module.comment.yml @@ -14,8 +14,6 @@ items: name: comment.settings data: log_ip_addresses: false - _core: - default_config_hash: YNUW2Ij5uE7a4oaXp3i_2lvaFdYM1zNKPPfnEjB0jEc - collection: '' name: core.entity_view_mode.comment.full @@ -27,11 +25,8 @@ items: - comment id: comment.full label: 'Full comment' - description: '' targetEntityType: comment cache: true - _core: - default_config_hash: N4mUjXpPckUkVRY1PbKw4GGoL1i2ECU7PL3EreiKStk - collection: '' name: field.storage.comment.comment_body @@ -54,8 +49,6 @@ items: indexes: { } persist_with_no_fields: true custom_storage: false - _core: - default_config_hash: swYoCch_hY8QO5uwr4FURplfnUCUlpPB4idF8WGVCpw - collection: '' name: system.action.comment_delete_action @@ -70,8 +63,6 @@ items: type: comment plugin: 'entity:delete_action:comment' configuration: { } - _core: - default_config_hash: vpBH8OmL4sdesCdeZLsW8KOutB5gkbreWJbfjhfFKaQ - collection: '' name: system.action.comment_publish_action @@ -86,8 +77,6 @@ items: type: comment plugin: 'entity:publish_action:comment' configuration: { } - _core: - default_config_hash: C00dyL_W_5M0nFlgUB3lWUTUs96jn51Jw1MLHVEHZD0 - collection: '' name: system.action.comment_save_action @@ -102,8 +91,6 @@ items: type: comment plugin: 'entity:save_action:comment' configuration: { } - _core: - default_config_hash: lfyE_snmvfg_EQ3VDyhUtGAXgmqtEiqa46I3bTMg8DU - collection: '' name: system.action.comment_unpublish_action @@ -118,8 +105,6 @@ items: type: comment plugin: 'entity:unpublish_action:comment' configuration: { } - _core: - default_config_hash: tWOIjSMobEWOFZddMkNqb9JySbOVwE1diC6NRqcfLTk - collection: '' name: views.view.comment @@ -137,14 +122,123 @@ items: tag: default base_table: comment_field_data base_field: cid + core: 8.x display: default: - id: default - display_title: Default display_plugin: default + id: default + display_title: Master position: 0 display_options: - title: Comments + access: + type: perm + options: + perm: 'administer comments' + cache: + type: tag + options: { } + query: + type: views_query + options: + disable_sql_rewrite: false + distinct: false + replica: false + query_comment: '' + query_tags: { } + 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 + pager: + type: full + options: + items_per_page: 50 + offset: 0 + id: 0 + total_pages: null + tags: + previous: '‹ previous' + next: 'next ›' + 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 + style: + type: table + options: + grouping: { } + row_class: '' + default_row_class: true + override: true + sticky: true + caption: '' + summary: '' + description: '' + columns: + comment_bulk_form: comment_bulk_form + subject: subject + uid: uid + entity_id: entity_id + changed: changed + operations: operations + info: + comment_bulk_form: + align: '' + separator: '' + empty_column: false + responsive: '' + subject: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + uid: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + entity_id: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + changed: + sortable: true + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: priority-low + operations: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + default: changed + empty_table: true + row: + type: fields fields: comment_bulk_form: id: comment_bulk_form @@ -153,8 +247,6 @@ items: relationship: none group_type: group admin_label: '' - entity_type: comment - plugin_id: comment_bulk_form label: '' exclude: false alter: @@ -201,6 +293,8 @@ items: selected_actions: - comment_delete_action - comment_unpublish_action + plugin_id: comment_bulk_form + entity_type: comment subject: id: subject table: comment_field_data @@ -208,9 +302,6 @@ items: relationship: none group_type: group admin_label: '' - entity_type: comment - entity_field: subject - plugin_id: field label: Subject exclude: false alter: @@ -266,6 +357,9 @@ items: multi_type: separator separator: ', ' field_api_classes: false + entity_type: comment + entity_field: subject + plugin_id: field uid: id: uid table: comment_field_data @@ -273,9 +367,6 @@ items: relationship: none group_type: group admin_label: '' - entity_type: comment - entity_field: uid - plugin_id: field label: '' exclude: true alter: @@ -331,6 +422,9 @@ items: multi_type: separator separator: ', ' field_api_classes: false + entity_type: comment + entity_field: uid + plugin_id: field name: id: name table: comment_field_data @@ -338,9 +432,6 @@ items: relationship: none group_type: group admin_label: '' - entity_type: comment - entity_field: name - plugin_id: field label: Author exclude: false alter: @@ -395,6 +486,9 @@ items: multi_type: separator separator: ', ' field_api_classes: false + entity_type: comment + entity_field: name + plugin_id: field entity_id: id: entity_id table: comment_field_data @@ -402,9 +496,6 @@ items: relationship: none group_type: group admin_label: '' - entity_type: comment - entity_field: entity_id - plugin_id: commented_entity label: 'Posted in' exclude: false alter: @@ -460,6 +551,9 @@ items: multi_type: separator separator: ', ' field_api_classes: false + entity_type: comment + entity_field: entity_id + plugin_id: commented_entity changed: id: changed table: comment_field_data @@ -467,9 +561,6 @@ items: relationship: none group_type: group admin_label: '' - entity_type: comment - entity_field: changed - plugin_id: field label: Updated exclude: false alter: @@ -517,15 +608,6 @@ items: date_format: short custom_date_format: '' timezone: '' - tooltip: - date_format: long - custom_date_format: '' - time_diff: - enabled: false - future_format: '@interval hence' - past_format: '@interval ago' - granularity: 2 - refresh: 60 group_column: value group_columns: { } group_rows: true @@ -536,6 +618,9 @@ items: multi_type: separator separator: ', ' field_api_classes: false + entity_type: comment + entity_field: changed + plugin_id: field operations: id: operations table: comment @@ -543,8 +628,6 @@ items: relationship: none group_type: group admin_label: '' - entity_type: comment - plugin_id: entity_operations label: Operations exclude: false alter: @@ -587,6 +670,8 @@ items: empty_zero: false hide_alter_empty: true destination: true + entity_type: comment + plugin_id: entity_operations name_1: id: name_1 table: users_field_data @@ -594,9 +679,6 @@ items: relationship: uid group_type: group admin_label: '' - entity_type: user - entity_field: name - plugin_id: field label: '' exclude: true alter: @@ -652,74 +734,9 @@ items: multi_type: separator separator: ', ' field_api_classes: false - pager: - type: full - options: - offset: 0 - items_per_page: 50 - total_pages: null - id: 0 - tags: - next: 'next ›' - previous: '‹ 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 - exposed_form: - type: basic - options: - submit_button: Filter - 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: perm - options: - perm: 'administer comments' - cache: - type: tag - options: { } - empty: - area_text_custom: - id: area_text_custom - table: views - field: area_text_custom - relationship: none - group_type: group - admin_label: '' - plugin_id: text_custom - empty: true - content: 'No comments available.' - tokenize: false - sorts: - changed: - id: changed - table: comment_field_data - field: changed - relationship: none - group_type: group - admin_label: '' - entity_type: comment - entity_field: changed - plugin_id: date - order: DESC - expose: - label: '' - field_identifier: changed - exposed: false - granularity: second - arguments: { } + entity_type: user + entity_field: name + plugin_id: field filters: status: id: status @@ -728,9 +745,6 @@ items: relationship: none group_type: group admin_label: '' - entity_type: comment - entity_field: status - plugin_id: boolean operator: '=' value: '1' group: 1 @@ -741,8 +755,6 @@ items: description: '' use_operator: false operator: '' - operator_limit_selection: false - operator_list: { } identifier: '' required: false remember: false @@ -761,6 +773,9 @@ items: default_group: All default_group_multiple: { } group_items: { } + entity_type: comment + entity_field: status + plugin_id: boolean subject: id: subject table: comment_field_data @@ -768,9 +783,6 @@ items: relationship: none group_type: group admin_label: '' - entity_type: comment - entity_field: subject - plugin_id: string operator: contains value: '' group: 1 @@ -781,8 +793,6 @@ items: description: '' use_operator: false operator: subject_op - operator_limit_selection: false - operator_list: { } identifier: subject required: false remember: false @@ -803,6 +813,9 @@ items: default_group: All default_group_multiple: { } group_items: { } + entity_type: comment + entity_field: subject + plugin_id: string combine: id: combine table: views @@ -810,7 +823,6 @@ items: relationship: none group_type: group admin_label: '' - plugin_id: combine operator: contains value: '' group: 1 @@ -821,8 +833,6 @@ items: description: '' use_operator: false operator: combine_op - operator_limit_selection: false - operator_list: { } identifier: author_name required: false remember: false @@ -846,6 +856,7 @@ items: fields: name: name name_1: name_1 + plugin_id: combine langcode: id: langcode table: comment_field_data @@ -853,9 +864,6 @@ items: relationship: none group_type: group admin_label: '' - entity_type: comment - entity_field: langcode - plugin_id: language operator: in value: { } group: 1 @@ -866,8 +874,6 @@ items: description: '' use_operator: false operator: langcode_op - operator_limit_selection: false - operator_list: { } identifier: langcode required: false remember: false @@ -889,81 +895,50 @@ items: default_group: All default_group_multiple: { } group_items: { } - filter_groups: - operator: AND - groups: - 1: AND - style: - type: table - options: - grouping: { } - row_class: '' - default_row_class: true - columns: - comment_bulk_form: comment_bulk_form - subject: subject - uid: uid - entity_id: entity_id - changed: changed - operations: operations - default: changed - info: - comment_bulk_form: - align: '' - separator: '' - empty_column: false - responsive: '' - subject: - sortable: true - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - uid: - sortable: true - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - entity_id: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - changed: - sortable: true - default_sort_order: desc - align: '' - separator: '' - empty_column: false - responsive: priority-low - operations: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - override: true - sticky: true - summary: '' - empty_table: true - caption: '' - description: '' - row: - type: fields - query: - type: views_query - options: - query_comment: '' - disable_sql_rewrite: false - distinct: false - replica: false - query_tags: { } + entity_type: comment + entity_field: langcode + plugin_id: language + sorts: + changed: + id: changed + table: comment_field_data + field: changed + relationship: none + group_type: group + admin_label: '' + order: DESC + exposed: false + expose: + label: '' + granularity: second + entity_type: comment + entity_field: changed + plugin_id: date + title: Comments + header: { } + footer: { } + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + empty: true + tokenize: false + content: 'No comments available.' + plugin_id: text_custom + arguments: { } + display_extenders: { } + use_more: false + use_more_always: true + use_more_text: more + use_ajax: false + hide_attachment_summary: false + show_admin_links: true + group_by: false + css_class: '' relationships: uid: id: uid @@ -972,66 +947,235 @@ items: relationship: none group_type: group admin_label: author + required: false entity_type: comment entity_field: uid plugin_id: standard - required: false - css_class: '' - use_ajax: false - group_by: false - show_admin_links: true - use_more: false - use_more_always: true - use_more_text: more - header: { } - footer: { } - hide_attachment_summary: false - display_extenders: { } + filter_groups: + operator: AND + groups: + 1: AND cache_metadata: - max-age: 0 contexts: - 'languages:language_content' - 'languages:language_interface' - url - url.query_args - user.permissions - tags: { } cacheable: false + max-age: 0 + tags: { } page_published: + display_plugin: page id: page_published display_title: 'Published comments' - display_plugin: page position: 1 display_options: - display_description: 'The approved comments listing.' - display_comment: '' - exposed_block: false - display_extenders: { } path: admin/content/comment menu: type: tab title: Comments description: 'Comments published' - weight: 0 - menu_name: admin parent: '' + weight: 0 context: '0' + menu_name: admin + display_description: 'The approved comments listing.' + display_extenders: { } + exposed_block: false + display_comment: '' cache_metadata: - max-age: 0 contexts: - 'languages:language_content' - 'languages:language_interface' - url - url.query_args - user.permissions - tags: { } cacheable: false + max-age: 0 + tags: { } page_unapproved: + display_plugin: page id: page_unapproved display_title: 'Unapproved comments' - display_plugin: page position: 2 display_options: + path: admin/content/comment/approval + menu: + type: tab + title: 'Unapproved comments' + description: 'Comments unapproved' + parent: '' + weight: 1 + context: '0' + menu_name: admin + display_description: 'The unapproved comments listing.' + filters: + status: + id: status + table: comment_field_data + field: status + relationship: none + group_type: group + admin_label: '' + operator: '=' + value: '0' + group: 1 + exposed: false + expose: + operator_id: '' + label: '' + description: '' + use_operator: false + operator: '' + 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: { } + entity_type: comment + entity_field: status + plugin_id: boolean + subject: + id: subject + table: comment_field_data + field: subject + relationship: none + group_type: group + admin_label: '' + operator: contains + value: '' + group: 1 + exposed: true + expose: + operator_id: subject_op + label: Subject + description: '' + use_operator: false + operator: subject_op + identifier: subject + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: comment + entity_field: subject + plugin_id: string + combine: + id: combine + table: views + field: combine + relationship: none + group_type: group + admin_label: '' + operator: contains + value: '' + group: 1 + exposed: true + expose: + operator_id: combine_op + label: 'Author Name' + description: '' + use_operator: false + operator: combine_op + identifier: author_name + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + fields: + name: name + name_1: name_1 + plugin_id: combine + langcode: + id: langcode + table: comment_field_data + field: langcode + relationship: none + group_type: group + admin_label: '' + operator: in + value: { } + group: 1 + exposed: true + expose: + operator_id: langcode_op + label: Language + description: '' + use_operator: false + operator: langcode_op + identifier: langcode + required: false + remember: false + multiple: false + remember_roles: + authenticated: authenticated + anonymous: '0' + administrator: '0' + reduce: false + is_grouped: false + group_info: + label: '' + description: '' + identifier: '' + optional: true + widget: select + multiple: false + remember: false + default_group: All + default_group_multiple: { } + group_items: { } + entity_type: comment + entity_field: langcode + plugin_id: language + defaults: + filters: false + filter_groups: false + fields: false + display_extenders: { } fields: comment_bulk_form: id: comment_bulk_form @@ -1040,8 +1184,6 @@ items: relationship: none group_type: group admin_label: '' - entity_type: comment - plugin_id: comment_bulk_form label: '' exclude: false alter: @@ -1088,6 +1230,8 @@ items: selected_actions: - comment_delete_action - comment_publish_action + plugin_id: comment_bulk_form + entity_type: comment subject: id: subject table: comment_field_data @@ -1095,9 +1239,6 @@ items: relationship: none group_type: group admin_label: '' - entity_type: comment - entity_field: subject - plugin_id: field label: Subject exclude: false alter: @@ -1153,6 +1294,9 @@ items: multi_type: separator separator: ', ' field_api_classes: false + entity_type: comment + entity_field: subject + plugin_id: field uid: id: uid table: comment_field_data @@ -1160,9 +1304,6 @@ items: relationship: none group_type: group admin_label: '' - entity_type: comment - entity_field: uid - plugin_id: field label: '' exclude: true alter: @@ -1218,6 +1359,9 @@ items: multi_type: separator separator: ', ' field_api_classes: false + entity_type: comment + entity_field: uid + plugin_id: field name: id: name table: comment_field_data @@ -1225,9 +1369,6 @@ items: relationship: none group_type: group admin_label: '' - entity_type: comment - entity_field: name - plugin_id: field label: Author exclude: false alter: @@ -1282,6 +1423,9 @@ items: multi_type: separator separator: ', ' field_api_classes: false + entity_type: comment + entity_field: name + plugin_id: field entity_id: id: entity_id table: comment_field_data @@ -1289,9 +1433,6 @@ items: relationship: none group_type: group admin_label: '' - entity_type: comment - entity_field: entity_id - plugin_id: commented_entity label: 'Posted in' exclude: false alter: @@ -1347,6 +1488,9 @@ items: multi_type: separator separator: ', ' field_api_classes: false + entity_type: comment + entity_field: entity_id + plugin_id: commented_entity changed: id: changed table: comment_field_data @@ -1354,9 +1498,6 @@ items: relationship: none group_type: group admin_label: '' - entity_type: comment - entity_field: changed - plugin_id: field label: Updated exclude: false alter: @@ -1404,15 +1545,6 @@ items: date_format: short custom_date_format: '' timezone: '' - tooltip: - date_format: long - custom_date_format: '' - time_diff: - enabled: false - future_format: '@interval hence' - past_format: '@interval ago' - granularity: 2 - refresh: 60 group_column: value group_columns: { } group_rows: true @@ -1423,6 +1555,9 @@ items: multi_type: separator separator: ', ' field_api_classes: false + entity_type: comment + entity_field: changed + plugin_id: field operations: id: operations table: comment @@ -1430,8 +1565,6 @@ items: relationship: none group_type: group admin_label: '' - entity_type: comment - plugin_id: entity_operations label: Operations exclude: false alter: @@ -1474,6 +1607,8 @@ items: empty_zero: false hide_alter_empty: true destination: true + entity_type: comment + plugin_id: entity_operations name_1: id: name_1 table: users_field_data @@ -1481,9 +1616,6 @@ items: relationship: uid group_type: group admin_label: '' - entity_type: user - entity_field: name - plugin_id: field label: '' exclude: true alter: @@ -1539,206 +1671,23 @@ items: multi_type: separator separator: ', ' field_api_classes: false - filters: - status: - id: status - table: comment_field_data - field: status - relationship: none - group_type: group - admin_label: '' - entity_type: comment - entity_field: status - plugin_id: boolean - operator: '=' - value: '0' - 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: { } - subject: - id: subject - table: comment_field_data - field: subject - relationship: none - group_type: group - admin_label: '' - entity_type: comment - entity_field: subject - plugin_id: string - operator: contains - value: '' - group: 1 - exposed: true - expose: - operator_id: subject_op - label: Subject - description: '' - use_operator: false - operator: subject_op - operator_limit_selection: false - operator_list: { } - identifier: subject - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - combine: - id: combine - table: views - field: combine - relationship: none - group_type: group - admin_label: '' - plugin_id: combine - operator: contains - value: '' - group: 1 - exposed: true - expose: - operator_id: combine_op - label: 'Author Name' - description: '' - use_operator: false - operator: combine_op - operator_limit_selection: false - operator_list: { } - identifier: author_name - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - fields: - name: name - name_1: name_1 - langcode: - id: langcode - table: comment_field_data - field: langcode - relationship: none - group_type: group - admin_label: '' - entity_type: comment - entity_field: langcode - plugin_id: language - operator: in - value: { } - group: 1 - exposed: true - expose: - operator_id: langcode_op - label: Language - description: '' - use_operator: false - operator: langcode_op - operator_limit_selection: false - operator_list: { } - identifier: langcode - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - reduce: false - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } + entity_type: user + entity_field: name + plugin_id: field filter_groups: operator: AND groups: 1: AND - defaults: - fields: false - filters: false - filter_groups: false - display_description: 'The unapproved comments listing.' - display_extenders: { } - path: admin/content/comment/approval - menu: - type: tab - title: 'Unapproved comments' - description: 'Comments unapproved' - weight: 1 - menu_name: admin - parent: '' - context: '0' cache_metadata: - max-age: 0 contexts: - 'languages:language_content' - 'languages:language_interface' - url - url.query_args - user.permissions - tags: { } cacheable: false - _core: - default_config_hash: WFURZFZFHS9S7tEJJqOd6ucYexi84JiyQxE5suLP7D8 + max-age: 0 + tags: { } - collection: '' name: views.view.comments_recent @@ -1757,25 +1706,62 @@ items: tag: default base_table: comment_field_data base_field: cid + core: 8.x display: default: - id: default - display_title: Default display_plugin: default + id: default + display_title: Master position: 0 display_options: - title: 'Recent comments' + access: + type: perm + options: + perm: 'access comments' + cache: + type: tag + query: + type: views_query + exposed_form: + type: basic + pager: + type: some + options: + items_per_page: 10 + offset: 0 + style: + type: html_list + options: + grouping: { } + row_class: '' + default_row_class: true + type: ul + wrapper_class: item-list + class: '' + row: + type: fields + options: + default_field_elements: true + hide_empty: false + relationships: + node: + field: node + id: node + table: comment_field_data + required: true + plugin_id: standard fields: subject: id: subject table: comment_field_data field: subject relationship: none + type: string + settings: + link_to_entity: true + plugin_id: field group_type: group admin_label: '' - entity_type: comment - entity_field: subject - plugin_id: field label: '' exclude: false alter: @@ -1817,19 +1803,16 @@ items: hide_empty: false empty_zero: false hide_alter_empty: true - type: string - settings: - link_to_entity: true + entity_type: comment + entity_field: subject changed: id: changed table: comment_field_data field: changed relationship: none + plugin_id: field group_type: group admin_label: '' - entity_type: comment - entity_field: changed - plugin_id: field label: '' exclude: false alter: @@ -1876,32 +1859,32 @@ items: future_format: '@interval hence' past_format: '@interval ago' granularity: 2 - pager: - type: some - options: - offset: 0 - items_per_page: 10 - exposed_form: - type: basic - access: - type: perm - options: - perm: 'access comments' - cache: - type: tag - empty: - area_text_custom: - id: area_text_custom - table: views - field: area_text_custom - relationship: none - group_type: group - admin_label: '' - plugin_id: text_custom - label: '' - empty: true - content: 'No comments available.' - tokenize: false + entity_type: comment + entity_field: changed + filters: + status: + value: '1' + table: comment_field_data + field: status + id: status + plugin_id: boolean + expose: + operator: '' + group: 1 + entity_type: comment + entity_field: status + status_node: + value: '1' + table: node_field_data + field: status + relationship: node + id: status_node + plugin_id: boolean + expose: + operator: '' + group: 1 + entity_type: node + entity_field: status sorts: created: id: created @@ -1910,14 +1893,13 @@ items: relationship: none group_type: group admin_label: '' - entity_type: comment - entity_field: created - plugin_id: date order: DESC + exposed: false expose: label: '' - field_identifier: created - exposed: false + plugin_id: date + entity_type: comment + entity_field: created cid: id: cid table: comment_field_data @@ -1925,90 +1907,48 @@ items: relationship: none group_type: group admin_label: '' + order: DESC + exposed: false + plugin_id: field entity_type: comment entity_field: cid - plugin_id: field - order: DESC - expose: - label: '' - field_identifier: cid - exposed: false - filters: - status: - id: status - table: comment_field_data - field: status - entity_type: comment - entity_field: status - plugin_id: boolean - value: '1' - group: 1 - expose: - operator: '' - operator_limit_selection: false - operator_list: { } - status_node: - id: status_node - table: node_field_data - field: status - relationship: node - entity_type: node - entity_field: status - plugin_id: boolean - value: '1' - group: 1 - expose: - operator: '' - operator_limit_selection: false - operator_list: { } - style: - type: html_list - options: - grouping: { } - row_class: '' - default_row_class: true - type: ul - wrapper_class: item-list - class: '' - row: - type: fields - options: - default_field_elements: true - hide_empty: false - query: - type: views_query - relationships: - node: - id: node - table: comment_field_data - field: node - plugin_id: standard - required: true + title: 'Recent comments' + empty: + area_text_custom: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: '' + label: '' + empty: true + content: 'No comments available.' + tokenize: false + plugin_id: text_custom display_extenders: { } cache_metadata: - max-age: -1 contexts: - 'languages:language_content' - 'languages:language_interface' - user.permissions + max-age: -1 tags: { } block_1: + display_plugin: block id: block_1 display_title: Block - display_plugin: block position: 1 display_options: - display_extenders: { } block_description: 'Recent comments' block_category: 'Lists (Views)' allow: items_per_page: true + display_extenders: { } cache_metadata: - max-age: -1 contexts: - 'languages:language_content' - 'languages:language_interface' - user.permissions + max-age: -1 tags: { } - _core: - default_config_hash: S_NN2ubd_NovTfgzbHVlZMmIJJQS-3h9h3inzbaFUMY diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.comment_notify.yml b/config/sync/config_snapshot.snapshot.config_sync.module.comment_notify.yml deleted file mode 100644 index d948b3e..0000000 --- a/config/sync/config_snapshot.snapshot.config_sync.module.comment_notify.yml +++ /dev/null @@ -1,72 +0,0 @@ -uuid: e68916b8-97c0-4f81-841c-dac5cf05141a -langcode: en -status: true -dependencies: - module: - - comment_notify -id: config_sync.module.comment_notify -snapshotSet: config_sync -extensionType: module -extensionName: comment_notify -items: - - - collection: '' - name: comment_notify.settings - data: - bundle_types: - - node--article--comment - available_alerts: - 1: true - 2: true - enable_default: - watcher: none - entity_author: false - mail_templates: - watcher: - node: - subject: '[site:name] :: new comment on [node:title]' - body: | - Hi [comment-subscribed:author], - - [comment:author] has commented on: "[node:title]" - - ---- - [comment:title] - [comment:body] - ---- - - You can view the comment at the following url - [comment:url] - - You can stop receiving emails when someone replies to this post, - by going to [comment-subscribed:unsubscribe-url] - - You can set up auto-following feature for all future posts - by creating your own user with a few clicks here [site:login-url] - - -- [site:name] team - [site:url] - entity_author: - node: - subject: '[site:name] :: new comment for your post' - body: | - Hi [node:author], - - You have received a comment on: "[node:title]" - - ---- - [comment:title] - [comment:body] - ---- - - You can view the comment at the following url - [comment:url] - - You will receive emails like this for all replies to your posts. You can - disable this by logging in and changing the settings on your user account at - [node:author:edit-url]. - - -- [site:name] team - [site:url] - _core: - default_config_hash: y7oCzsZ-B0R-nyeSFO1f2h9BEChUQGSZT-3cqXd-sLE diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.config_perms.yml b/config/sync/config_snapshot.snapshot.config_sync.module.config_perms.yml index c35ef43..8d6751d 100644 --- a/config/sync/config_snapshot.snapshot.config_sync.module.config_perms.yml +++ b/config/sync/config_snapshot.snapshot.config_sync.module.config_perms.yml @@ -19,8 +19,6 @@ items: id: administer_account_settings label: 'Administer account settings' route: entity.user.admin_form - _core: - default_config_hash: G3RasgGpLT7MiDfwt1phJQ229-nSxEF7TVbk-QrirXU - collection: '' name: config_perms.custom_perms_entity.administer_date_time @@ -31,8 +29,6 @@ items: id: administer_date_time label: 'Administer date-time' route: entity.date_format.collection - _core: - default_config_hash: 3Ay9YI_ngS7P7x3VPJDbmjrsZ8GT_S-Zkfgx2g4tGeY - collection: '' name: config_perms.custom_perms_entity.administer_error_logs @@ -43,8 +39,6 @@ items: id: administer_error_logs label: 'Administer error logs' route: dblog.overview - _core: - default_config_hash: 2q2utr64_esqpIf4zs8AQlwD4Qx4E7zlyq3vx64o6u8 - collection: '' name: config_perms.custom_perms_entity.administer_file_system @@ -55,5 +49,3 @@ items: id: administer_file_system label: 'Administer file system' route: system.file_system_settings - _core: - default_config_hash: L7Fm9s3OFts1EqoEZeMwKxAa7FRxN6H418WDwfav3QI diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.contact.yml b/config/sync/config_snapshot.snapshot.config_sync.module.contact.yml index 4d5ddcd..34fc622 100644 --- a/config/sync/config_snapshot.snapshot.config_sync.module.contact.yml +++ b/config/sync/config_snapshot.snapshot.config_sync.module.contact.yml @@ -23,8 +23,6 @@ items: weight: 0 message: 'Your message has been sent.' redirect: '' - _core: - default_config_hash: jonvgt3CkUM2eMLTFwWfHileWWDC4YtXCuIlCahTk_I - collection: '' name: contact.settings @@ -34,5 +32,3 @@ items: limit: 5 interval: 3600 user_default_enabled: true - _core: - default_config_hash: U69DBeuvXuNVOC15rVNaBjDPK2fWFbo9v4takdYSSO8 diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.content_moderation.yml b/config/sync/config_snapshot.snapshot.config_sync.module.content_moderation.yml deleted file mode 100644 index 1db4e01..0000000 --- a/config/sync/config_snapshot.snapshot.config_sync.module.content_moderation.yml +++ /dev/null @@ -1,856 +0,0 @@ -uuid: bc1d1be8-46fd-4a35-89cc-5ea77d5f3c68 -langcode: en -status: true -dependencies: - module: - - content_moderation -id: config_sync.module.content_moderation -snapshotSet: config_sync -extensionType: module -extensionName: content_moderation -items: - - - collection: '' - name: views.view.moderated_content - data: - langcode: en - status: true - dependencies: - module: - - node - - user - enforced: - module: - - content_moderation - id: moderated_content - label: 'Moderated content' - module: views - description: 'Find and moderate content.' - tag: '' - base_table: node_field_revision - base_field: vid - display: - default: - id: default - display_title: Default - display_plugin: default - position: 0 - display_options: - title: 'Moderated content' - fields: - title: - id: title - table: node_field_revision - field: title - relationship: none - group_type: group - admin_label: '' - entity_type: node - entity_field: title - plugin_id: field - label: Title - 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: false - ellipsis: false - 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 - click_sort_column: value - type: string - settings: - link_to_entity: true - group_column: value - group_columns: { } - group_rows: true - delta_limit: 0 - delta_offset: 0 - delta_reversed: false - delta_first_last: false - multi_type: separator - separator: ', ' - field_api_classes: false - type: - id: type - table: node_field_data - field: type - relationship: nid - group_type: group - admin_label: '' - entity_type: node - entity_field: type - plugin_id: field - label: 'Content type' - 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 - click_sort_column: target_id - type: entity_reference_label - settings: - link: false - group_column: target_id - group_columns: { } - group_rows: true - delta_limit: 0 - delta_offset: 0 - delta_reversed: false - delta_first_last: false - multi_type: separator - separator: ', ' - field_api_classes: false - name: - id: name - table: users_field_data - field: name - relationship: uid - group_type: group - admin_label: '' - entity_type: user - entity_field: name - plugin_id: field - label: Author - 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 - click_sort_column: value - type: user_name - settings: - link_to_entity: true - group_column: value - group_columns: { } - group_rows: true - delta_limit: 0 - delta_offset: 0 - delta_reversed: false - delta_first_last: false - multi_type: separator - separator: ', ' - field_api_classes: false - moderation_state: - id: moderation_state - table: node_field_revision - field: moderation_state - relationship: none - group_type: group - admin_label: '' - entity_type: node - plugin_id: field - label: 'Moderation state' - 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 - click_sort_column: value - type: content_moderation_state - settings: { } - group_column: value - group_columns: { } - group_rows: true - delta_limit: 0 - delta_offset: 0 - delta_reversed: false - delta_first_last: false - multi_type: separator - separator: ', ' - field_api_classes: false - changed: - id: changed - table: node_field_revision - field: changed - relationship: none - group_type: group - admin_label: '' - entity_type: node - entity_field: changed - plugin_id: field - label: Updated - 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: false - ellipsis: false - 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 - click_sort_column: value - type: timestamp - settings: - date_format: short - custom_date_format: '' - timezone: '' - tooltip: - date_format: long - custom_date_format: '' - time_diff: - enabled: false - future_format: '@interval hence' - past_format: '@interval ago' - granularity: 2 - refresh: 60 - group_column: value - group_columns: { } - group_rows: true - delta_limit: 0 - delta_offset: 0 - delta_reversed: false - delta_first_last: false - multi_type: separator - separator: ', ' - field_api_classes: false - operations: - id: operations - table: node_revision - field: operations - relationship: none - group_type: group - admin_label: '' - entity_type: node - plugin_id: entity_operations - label: Operations - 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 - destination: true - pager: - type: full - options: - offset: 0 - items_per_page: 50 - total_pages: null - id: 0 - tags: - next: 'Next ›' - previous: '‹ 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 - exposed_form: - type: basic - options: - submit_button: Filter - reset_button: true - reset_button_label: Reset - exposed_sorts_label: 'Sort by' - expose_sort_order: true - sort_asc_label: Asc - sort_desc_label: Desc - access: - type: perm - options: - perm: 'view any unpublished content' - cache: - type: tag - options: { } - empty: - area_text_custom: - id: area_text_custom - table: views - field: area_text_custom - relationship: none - group_type: group - admin_label: '' - plugin_id: text_custom - empty: true - content: 'No moderated content available. Only pending versions of content, such as drafts, are listed here.' - tokenize: false - sorts: { } - arguments: { } - filters: - latest_translation_affected_revision: - id: latest_translation_affected_revision - table: node_revision - field: latest_translation_affected_revision - relationship: none - group_type: group - admin_label: '' - entity_type: node - plugin_id: latest_translation_affected_revision - operator: '=' - value: '' - 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: { } - title: - id: title - table: node_field_revision - field: title - relationship: none - group_type: group - admin_label: '' - entity_type: node - entity_field: title - plugin_id: string - operator: contains - value: '' - group: 1 - exposed: true - expose: - operator_id: title_op - label: Title - description: '' - use_operator: false - operator: title_op - operator_limit_selection: false - operator_list: { } - identifier: title - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - type: - id: type - table: node_field_data - field: type - relationship: nid - group_type: group - admin_label: '' - entity_type: node - entity_field: type - plugin_id: bundle - operator: in - value: { } - group: 1 - exposed: true - expose: - operator_id: type_op - label: 'Content type' - description: '' - use_operator: false - operator: type_op - operator_limit_selection: false - operator_list: { } - identifier: type - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - reduce: false - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - moderation_state: - id: moderation_state - table: node_field_revision - field: moderation_state - relationship: none - group_type: group - admin_label: '' - entity_type: node - plugin_id: moderation_state_filter - operator: in - value: - editorial-draft: editorial-draft - editorial-archived: editorial-archived - group: 1 - exposed: true - expose: - operator_id: moderation_state_op - label: 'Moderation state' - description: '' - use_operator: false - operator: moderation_state_op - operator_limit_selection: false - operator_list: { } - identifier: moderation_state - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - reduce: true - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - langcode: - id: langcode - table: node_field_revision - field: langcode - relationship: none - group_type: group - admin_label: '' - entity_type: node - entity_field: langcode - plugin_id: language - operator: in - value: { } - group: 1 - exposed: true - expose: - operator_id: langcode_op - label: Language - description: '' - use_operator: false - operator: langcode_op - operator_limit_selection: false - operator_list: { } - identifier: langcode - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - reduce: false - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - moderation_state_1: - id: moderation_state_1 - table: node_field_revision - field: moderation_state - relationship: none - group_type: group - admin_label: '' - entity_type: node - plugin_id: moderation_state_filter - operator: 'not in' - value: - editorial-published: editorial-published - 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 - reduce: false - 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 - style: - type: table - options: - grouping: { } - row_class: '' - default_row_class: true - columns: - title: title - type: type - name: name - moderation_state: moderation_state - changed: changed - default: changed - info: - title: - sortable: true - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - type: - sortable: true - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - name: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - moderation_state: - sortable: true - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - changed: - sortable: true - default_sort_order: desc - align: '' - separator: '' - empty_column: false - responsive: '' - override: true - sticky: true - summary: '' - empty_table: true - caption: '' - description: '' - row: - type: fields - query: - type: views_query - options: - query_comment: '' - disable_sql_rewrite: false - distinct: false - replica: false - query_tags: { } - relationships: - nid: - id: nid - table: node_field_revision - field: nid - relationship: none - group_type: group - admin_label: 'Get the actual content from a content revision.' - entity_type: node - entity_field: nid - plugin_id: standard - required: false - uid: - id: uid - table: node_field_revision - field: uid - relationship: none - group_type: group - admin_label: User - entity_type: node - entity_field: uid - plugin_id: standard - required: false - header: { } - footer: { } - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_content' - - 'languages:language_interface' - - url - - url.query_args - - 'user.node_grants:view' - - user.permissions - tags: { } - moderated_content: - id: moderated_content - display_title: 'Moderated content' - display_plugin: page - position: 1 - display_options: - display_description: '' - display_extenders: { } - path: admin/content/moderated - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_content' - - 'languages:language_interface' - - url - - url.query_args - - 'user.node_grants:view' - - user.permissions - tags: { } - _core: - default_config_hash: 7olvKOaJNf15B-Bj4eD1wJyaz4BR7CNA9cEjWBssa2Y diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.convert_bundles.yml b/config/sync/config_snapshot.snapshot.config_sync.module.convert_bundles.yml deleted file mode 100644 index 3189b34..0000000 --- a/config/sync/config_snapshot.snapshot.config_sync.module.convert_bundles.yml +++ /dev/null @@ -1,11 +0,0 @@ -uuid: 3b31921c-0eab-4fca-9c87-1ad637dea3b6 -langcode: en -status: true -dependencies: - module: - - convert_bundles -id: config_sync.module.convert_bundles -snapshotSet: config_sync -extensionType: module -extensionName: convert_bundles -items: { } diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.crop.yml b/config/sync/config_snapshot.snapshot.config_sync.module.crop.yml index add2446..437f37f 100644 --- a/config/sync/config_snapshot.snapshot.config_sync.module.crop.yml +++ b/config/sync/config_snapshot.snapshot.config_sync.module.crop.yml @@ -14,5 +14,3 @@ items: name: crop.settings data: flush_derivative_images: true - _core: - default_config_hash: 7eGOTSG7bRv_AAqu-Ls8CSnob7zPF1ez-lD2OLZgBHs diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.dblog.yml b/config/sync/config_snapshot.snapshot.config_sync.module.dblog.yml index 6e96f93..082ba9c 100644 --- a/config/sync/config_snapshot.snapshot.config_sync.module.dblog.yml +++ b/config/sync/config_snapshot.snapshot.config_sync.module.dblog.yml @@ -14,8 +14,6 @@ items: name: dblog.settings data: row_limit: 1000 - _core: - default_config_hash: e883aGsrt1wFrsydlYU584PZONCSfRy0DtkZ9KzHb58 - collection: '' name: views.view.watchdog @@ -33,14 +31,136 @@ items: tag: '' base_table: watchdog base_field: wid + core: 8.x display: default: - id: default - display_title: Default display_plugin: default + id: default + display_title: Master position: 0 display_options: - title: 'Recent log messages' + access: + type: perm + options: + perm: 'access site reports' + cache: + type: none + options: { } + query: + type: views_query + options: + disable_sql_rewrite: false + distinct: false + replica: false + query_comment: '' + query_tags: { } + exposed_form: + type: basic + options: + submit_button: Filter + reset_button: true + reset_button_label: Reset + exposed_sorts_label: 'Sort by' + expose_sort_order: false + sort_asc_label: Asc + sort_desc_label: Desc + pager: + type: mini + options: + items_per_page: 50 + offset: 0 + id: 0 + total_pages: null + 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 + tags: + previous: ‹‹ + next: ›› + style: + type: table + options: + grouping: { } + row_class: '{{ type }} {{ severity }}' + default_row_class: true + override: true + sticky: false + caption: '' + summary: '' + description: '' + columns: + nothing: nothing + wid: wid + severity: severity + type: type + timestamp: timestamp + message: message + name: name + link: link + info: + nothing: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: priority-medium + wid: + sortable: false + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: priority-low + severity: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: priority-low + type: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: priority-medium + timestamp: + sortable: true + default_sort_order: desc + align: '' + separator: '' + empty_column: false + responsive: priority-low + message: + sortable: false + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: '' + name: + sortable: true + default_sort_order: asc + align: '' + separator: '' + empty_column: false + responsive: priority-medium + link: + align: '' + separator: '' + empty_column: false + responsive: priority-low + default: wid + empty_table: false + row: + type: fields fields: nothing: id: nothing @@ -49,7 +169,6 @@ items: relationship: none group_type: group admin_label: Icon - plugin_id: custom label: '' exclude: false alter: @@ -91,6 +210,7 @@ items: hide_empty: false empty_zero: false hide_alter_empty: false + plugin_id: custom wid: id: wid table: watchdog @@ -98,7 +218,6 @@ items: relationship: none group_type: group admin_label: '' - plugin_id: standard label: WID exclude: true alter: @@ -140,6 +259,7 @@ items: hide_empty: false empty_zero: false hide_alter_empty: true + plugin_id: standard severity: id: severity table: watchdog @@ -147,7 +267,6 @@ items: relationship: none group_type: group admin_label: '' - plugin_id: machine_name label: Severity exclude: true alter: @@ -190,6 +309,7 @@ items: empty_zero: false hide_alter_empty: true machine_name: false + plugin_id: machine_name type: id: type table: watchdog @@ -197,7 +317,6 @@ items: relationship: none group_type: group admin_label: '' - plugin_id: standard label: Type exclude: false alter: @@ -239,6 +358,7 @@ items: hide_empty: false empty_zero: false hide_alter_empty: true + plugin_id: standard timestamp: id: timestamp table: watchdog @@ -246,7 +366,6 @@ items: relationship: none group_type: group admin_label: '' - plugin_id: date label: Date exclude: false alter: @@ -291,6 +410,7 @@ items: date_format: short custom_date_format: '' timezone: '' + plugin_id: date message: id: message table: watchdog @@ -298,7 +418,6 @@ items: relationship: none group_type: group admin_label: '' - plugin_id: dblog_message label: Message exclude: false alter: @@ -341,6 +460,7 @@ items: empty_zero: false hide_alter_empty: true replace_variables: true + plugin_id: dblog_message name: id: name table: users_field_data @@ -348,9 +468,6 @@ items: relationship: uid group_type: group admin_label: '' - entity_type: user - entity_field: name - plugin_id: field label: User exclude: false alter: @@ -406,6 +523,9 @@ items: multi_type: separator separator: ', ' field_api_classes: false + entity_type: user + entity_field: name + plugin_id: field link: id: link table: watchdog @@ -413,7 +533,6 @@ items: relationship: none group_type: group admin_label: '' - plugin_id: dblog_operations label: Operations exclude: false alter: @@ -455,68 +574,7 @@ items: hide_empty: false empty_zero: false hide_alter_empty: true - pager: - type: mini - options: - offset: 0 - items_per_page: 50 - 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: Filter - reset_button: true - reset_button_label: Reset - exposed_sorts_label: 'Sort by' - expose_sort_order: false - sort_asc_label: Asc - sort_desc_label: Desc - access: - type: perm - options: - perm: 'access site reports' - cache: - type: none - options: { } - empty: - area: - id: area_text_custom - table: views - field: area_text_custom - relationship: none - group_type: group - admin_label: 'No log messages available.' - plugin_id: text_custom - empty: true - content: 'No log messages available.' - tokenize: false - sorts: - wid: - id: wid - table: watchdog - field: wid - relationship: none - group_type: group - admin_label: '' - plugin_id: standard - order: DESC - expose: - label: '' - field_identifier: wid - exposed: false - arguments: { } + plugin_id: dblog_operations filters: type: id: type @@ -525,7 +583,6 @@ items: relationship: none group_type: group admin_label: '' - plugin_id: dblog_types operator: in value: { } group: 1 @@ -536,8 +593,6 @@ items: description: '' use_operator: false operator: type_op - operator_limit_selection: false - operator_list: { } identifier: type required: false remember: false @@ -559,6 +614,7 @@ items: default_group: All default_group_multiple: { } group_items: { } + plugin_id: dblog_types severity: id: severity table: watchdog @@ -566,7 +622,6 @@ items: relationship: none group_type: group admin_label: '' - plugin_id: in_operator operator: in value: { } group: 1 @@ -577,8 +632,6 @@ items: description: '' use_operator: false operator: severity_op - operator_limit_selection: false - operator_list: { } identifier: severity required: false remember: false @@ -600,95 +653,35 @@ items: default_group: All default_group_multiple: { } group_items: { } - filter_groups: - operator: AND - groups: - 1: AND - style: - type: table - options: - grouping: { } - row_class: '{{ type }} {{ severity }}' - default_row_class: true - columns: - nothing: nothing - wid: wid - severity: severity - type: type - timestamp: timestamp - message: message - name: name - link: link - default: wid - info: - nothing: - align: '' - separator: '' - empty_column: false - responsive: priority-medium - wid: - sortable: false - default_sort_order: desc - align: '' - separator: '' - empty_column: false - responsive: priority-low - severity: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: priority-low - type: - sortable: true - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: priority-medium - timestamp: - sortable: true - default_sort_order: desc - align: '' - separator: '' - empty_column: false - responsive: priority-low - message: - sortable: false - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: '' - name: - sortable: true - default_sort_order: asc - align: '' - separator: '' - empty_column: false - responsive: priority-medium - link: - align: '' - separator: '' - empty_column: false - responsive: priority-low - override: true - sticky: false - summary: '' - empty_table: false - caption: '' - description: '' - row: - type: fields - query: - type: views_query - options: - query_comment: '' - disable_sql_rewrite: false - distinct: false - replica: false - query_tags: { } + plugin_id: in_operator + sorts: + wid: + id: wid + table: watchdog + field: wid + relationship: none + group_type: group + admin_label: '' + order: DESC + exposed: false + expose: + label: '' + plugin_id: standard + title: 'Recent log messages' + header: { } + footer: { } + empty: + area: + id: area_text_custom + table: views + field: area_text_custom + relationship: none + group_type: group + admin_label: 'No log messages available.' + empty: true + tokenize: false + content: 'No log messages available.' + plugin_id: text_custom relationships: uid: id: uid @@ -697,14 +690,17 @@ items: relationship: none group_type: group admin_label: User - plugin_id: standard required: false - css_class: admin-dblog - header: { } - footer: { } + plugin_id: standard + arguments: { } display_extenders: { } + filter_groups: + operator: AND + groups: + 1: AND + css_class: admin-dblog cache_metadata: - max-age: -1 + max-age: 0 contexts: - 'languages:language_content' - 'languages:language_interface' @@ -713,15 +709,15 @@ items: - user.permissions tags: { } page: + display_plugin: page id: page display_title: Page - display_plugin: page position: 1 display_options: display_extenders: { } path: admin/reports/dblog cache_metadata: - max-age: -1 + max-age: 0 contexts: - 'languages:language_content' - 'languages:language_interface' @@ -729,5 +725,3 @@ items: - url.query_args - user.permissions tags: { } - _core: - default_config_hash: j0txIxY4nkJT_dscmXckM-1vanygDkJAeHPawZKfyH0 diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_article.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_article.yml index 35a0f86..263d0a9 100644 --- a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_article.yml +++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_article.yml @@ -29,8 +29,6 @@ items: context_mapping: { } uuid: 7ff8110c-3b7e-4b97-8def-4081a2590558 allow_other_conditions: false - _core: - default_config_hash: iT20tn_NJtM8wJg4u9mQZO1iFxzV1_lXjCevCgdSMOc - collection: '' name: core.entity_form_display.node.article.default @@ -45,15 +43,15 @@ items: - field.field.node.article.field_authors - field.field.node.article.field_body_paragraph - field.field.node.article.field_image - - field.field.node.article.field_media_image - field.field.node.article.field_meta_tags - field.field.node.article.field_summary - field.field.node.article.field_tags - field.field.node.article.field_topics + - image.style.thumbnail - node.type.article module: - comment - - media_library + - focal_point - metatag - paragraphs - path @@ -66,35 +64,32 @@ items: comment: type: comment_default weight: 12 - region: content settings: { } third_party_settings: { } + region: content created: type: datetime_timestamp weight: 9 - region: content settings: { } third_party_settings: { } + region: content field_article_type: - type: options_select weight: 1 - region: content settings: { } third_party_settings: { } + type: options_select + region: content field_authors: type: entity_reference_autocomplete weight: 2 region: content settings: match_operator: CONTAINS - match_limit: 10 size: 60 placeholder: '' third_party_settings: { } field_body_paragraph: - type: entity_reference_paragraphs weight: 5 - region: content settings: title: Paragraph title_plural: Paragraphs @@ -103,100 +98,93 @@ items: form_display_mode: default default_paragraph_type: text third_party_settings: { } - field_media_image: - type: media_library_widget + type: entity_reference_paragraphs + region: content + field_image: + type: image_focal_point weight: 3 - region: content settings: - media_types: { } + progress_indicator: throbber + preview_image_style: thumbnail + preview_link: true + offsets: '50,50' third_party_settings: { } + region: content field_meta_tags: - type: metatag_firehose weight: 14 - region: content - settings: - sidebar: true - use_details: true + settings: { } third_party_settings: { } - field_summary: - type: text_textarea - weight: 4 + type: metatag_firehose region: content + field_summary: + weight: 4 settings: rows: 5 placeholder: '' third_party_settings: { } + type: text_textarea + region: content field_tags: type: entity_reference_autocomplete_tags weight: 7 - region: content settings: match_operator: CONTAINS - match_limit: 10 size: 60 placeholder: '' third_party_settings: { } - field_topics: - type: options_select - weight: 6 region: content + field_topics: + weight: 6 settings: { } third_party_settings: { } + type: options_select + region: content path: type: path weight: 13 - region: content settings: { } third_party_settings: { } + region: content promote: type: boolean_checkbox - weight: 10 - region: content settings: display_label: true + weight: 10 third_party_settings: { } + region: content status: type: boolean_checkbox - weight: 15 - region: content settings: display_label: true + weight: 15 + region: content third_party_settings: { } sticky: type: boolean_checkbox - weight: 11 - region: content settings: display_label: true + weight: 11 third_party_settings: { } + region: content title: type: string_textfield weight: 0 - region: content settings: size: 60 placeholder: '' third_party_settings: { } + region: content uid: type: entity_reference_autocomplete weight: 8 - region: content settings: match_operator: CONTAINS - match_limit: 10 size: 60 placeholder: '' third_party_settings: { } - url_redirects: - weight: 50 region: content - settings: { } - third_party_settings: { } hidden: body: true - field_image: true - _core: - default_config_hash: IoPDh61dBqTARwYg-wHNrBefmZFYUDm0GkOgU9uwTzc - collection: '' name: core.entity_view_display.node.article.box @@ -212,7 +200,6 @@ items: - field.field.node.article.field_authors - field.field.node.article.field_body_paragraph - field.field.node.article.field_image - - field.field.node.article.field_media_image - field.field.node.article.field_meta_tags - field.field.node.article.field_summary - field.field.node.article.field_tags @@ -229,14 +216,14 @@ items: disable_css: false entity_classes: all_classes settings: - classes: - layout_class: { } wrappers: ds_content: div outer_wrapper: div attributes: '' link_attribute: '' link_custom: '' + classes: + layout_class: { } regions: ds_content: - node_title @@ -268,15 +255,11 @@ items: field_authors: true field_body_paragraph: true field_image: true - field_media_image: true field_meta_tags: true field_summary: true field_tags: true field_topics: true links: true - search_api_excerpt: true - _core: - default_config_hash: R9tuDrmDPfh6a1qQPTW0tPl6D4Y8_Biq_XnfVayhhfs - collection: '' name: core.entity_view_display.node.article.card @@ -292,17 +275,16 @@ items: - field.field.node.article.field_authors - field.field.node.article.field_body_paragraph - field.field.node.article.field_image - - field.field.node.article.field_media_image - field.field.node.article.field_meta_tags - field.field.node.article.field_summary - field.field.node.article.field_tags - field.field.node.article.field_topics - node.type.article - - responsive_image.styles.drutopia_card + - responsive_image.styles.narrow module: - ds - field_group - - media_responsive_thumbnail + - responsive_image - text - user third_party_settings: @@ -313,25 +295,28 @@ items: disable_css: false entity_classes: all_classes settings: - classes: - layout_class: { } wrappers: ds_content: div outer_wrapper: div attributes: '' link_attribute: '' link_custom: '' - label: '' + classes: + layout_class: { } regions: ds_content: - - field_media_image + - field_image - group_card_content - - group_card_content_bottom - node_post_date - node_title - field_summary - field_topics fields: + node_post_date: + plugin_id: node_post_date + weight: 3 + label: hidden + formatter: ds_post_date_month_day_year node_title: plugin_id: node_title weight: 4 @@ -341,96 +326,68 @@ items: link: true wrapper: h2 class: '' - node_post_date: - plugin_id: node_post_date - weight: 3 - label: hidden - formatter: ds_post_date_month_day_year field_group: group_card_content: children: - node_post_date - node_title - field_summary - label: 'Card content' + - field_topics parent_name: '' - region: ds_content weight: 1 format_type: html_element format_settings: - classes: '' id: '' + classes: '' element: div show_label: false label_element: h3 attributes: '' effect: none speed: fast - group_card_content_bottom: - children: - - field_topics - label: 'Card content bottom' - parent_name: '' - region: ds_content - weight: 2 - format_type: html_element - format_settings: - classes: '' - id: '' - element: div - show_label: false - label_element: h3 - label_element_classes: '' - attributes: '' - effect: none - speed: fast + label: 'Card content' + region: hidden id: node.article.card targetEntityType: node bundle: article mode: card content: - field_media_image: - type: media_responsive_thumbnail - label: hidden - settings: - responsive_image_style: drutopia_card - image_link: content - image_loading: - attribute: lazy - third_party_settings: { } + field_image: + type: responsive_image weight: 0 region: ds_content + label: visually_hidden + settings: + responsive_image_style: narrow + image_link: content + third_party_settings: { } field_summary: type: text_trimmed - label: hidden + weight: 5 + region: ds_content + label: visually_hidden settings: trim_length: 180 third_party_settings: { } - weight: 5 - region: ds_content field_topics: type: entity_reference_label - label: hidden + weight: 6 + region: ds_content + label: visually_hidden settings: link: true third_party_settings: ds: ds_limit: '' - weight: 6 - region: ds_content hidden: body: true comment: true field_article_type: true field_authors: true field_body_paragraph: true - field_image: true field_meta_tags: true field_tags: true links: true - search_api_excerpt: true - _core: - default_config_hash: xE6f9sE86YLSawIj-Aj-dqLPkqe8otRQMqeqB8Vt8_w - collection: '' name: core.entity_view_display.node.article.default @@ -445,80 +402,30 @@ items: - field.field.node.article.field_authors - field.field.node.article.field_body_paragraph - field.field.node.article.field_image - - field.field.node.article.field_media_image - field.field.node.article.field_meta_tags - field.field.node.article.field_summary - field.field.node.article.field_tags - field.field.node.article.field_topics - node.type.article module: - - entity_reference_revisions - user id: node.article.default targetEntityType: node bundle: article mode: default - content: - field_article_type: - type: entity_reference_label - label: above - settings: - link: true - third_party_settings: { } - weight: 1 - region: content - field_authors: - type: entity_reference_label - label: above - settings: - link: true - third_party_settings: { } - weight: 3 - region: content - field_body_paragraph: - type: entity_reference_revisions_entity_view - label: hidden - settings: - view_mode: default - link: '' - third_party_settings: { } - weight: 4 - region: content - field_media_image: - type: entity_reference_entity_view - label: hidden - settings: - view_mode: default - link: false - third_party_settings: { } - weight: 0 - region: content - field_tags: - type: entity_reference_label - label: above - settings: - link: true - third_party_settings: { } - weight: 5 - region: content - field_topics: - type: entity_reference_label - label: above - settings: - link: true - third_party_settings: { } - weight: 2 - region: content + content: { } hidden: body: true comment: true + field_article_type: true + field_authors: true + field_body_paragraph: true field_image: true field_meta_tags: true field_summary: true + field_tags: true + field_topics: true links: true - search_api_excerpt: true - _core: - default_config_hash: 36k64J9Ih_h9bjFrwcLtFqFWZwUlnObe0ZfqiG-OCgk - collection: '' name: core.entity_view_display.node.article.full @@ -535,18 +442,17 @@ items: - field.field.node.article.field_authors - field.field.node.article.field_body_paragraph - field.field.node.article.field_image - - field.field.node.article.field_media_image - field.field.node.article.field_meta_tags - field.field.node.article.field_summary - field.field.node.article.field_tags - field.field.node.article.field_topics - node.type.article - - responsive_image.styles.drutopia_main + - responsive_image.styles.wide module: - comment - ds - entity_reference_revisions - - media_responsive_thumbnail + - responsive_image - user third_party_settings: ds: @@ -556,8 +462,6 @@ items: disable_css: true entity_classes: all_classes settings: - classes: - layout_class: { } wrappers: header: div left: div @@ -568,10 +472,11 @@ items: attributes: '' link_attribute: '' link_custom: '' - label: '' + classes: + layout_class: { } regions: header: - - field_media_image + - field_image left: - node_post_date - field_authors @@ -594,81 +499,75 @@ items: mode: full content: comment: - type: comment_default label: above - settings: - view_mode: default - pager_id: 0 - third_party_settings: { } + type: comment_default weight: 7 + settings: + pager_id: 0 + view_mode: default + third_party_settings: { } region: middle field_article_type: - type: entity_reference_label - label: hidden + weight: 4 + label: visually_hidden settings: link: true third_party_settings: { } - weight: 4 + type: entity_reference_label region: middle field_authors: type: entity_reference_label - label: hidden + weight: 2 + region: left + label: visually_hidden settings: link: true third_party_settings: ds: ds_limit: '' - weight: 2 - region: left field_body_paragraph: - type: entity_reference_revisions_entity_view - label: hidden + weight: 3 + label: visually_hidden settings: view_mode: default link: '' third_party_settings: { } - weight: 3 + type: entity_reference_revisions_entity_view region: middle - field_media_image: - type: media_responsive_thumbnail - label: hidden - settings: - responsive_image_style: drutopia_main - image_link: '' - image_loading: - attribute: lazy - third_party_settings: { } + field_image: + type: responsive_image weight: 0 + settings: + responsive_image_style: wide + image_link: '' + third_party_settings: { } + label: visually_hidden region: header field_tags: type: entity_reference_label + weight: 6 label: hidden settings: link: true third_party_settings: { } - weight: 6 region: middle field_topics: type: entity_reference_label - label: hidden + weight: 5 + region: middle + label: visually_hidden settings: link: true third_party_settings: { } - weight: 5 - region: middle links: - settings: { } - third_party_settings: { } weight: 8 region: middle + settings: { } + third_party_settings: { } hidden: body: true - field_image: true field_meta_tags: true field_summary: true - search_api_excerpt: true - _core: - default_config_hash: RT_7MhkI9uUn9cu6UzAX5JL1XbXUyu_e4l7gvc5aID8 - collection: '' name: core.entity_view_display.node.article.media @@ -684,17 +583,16 @@ items: - field.field.node.article.field_authors - field.field.node.article.field_body_paragraph - field.field.node.article.field_image - - field.field.node.article.field_media_image - field.field.node.article.field_meta_tags - field.field.node.article.field_summary - field.field.node.article.field_tags - field.field.node.article.field_topics - - image.style.medium + - image.style.square_thumbnail - node.type.article module: - ds - field_group - - media + - image - user third_party_settings: ds: @@ -704,19 +602,18 @@ items: disable_css: false entity_classes: all_classes settings: - classes: - layout_class: { } wrappers: ds_content: div outer_wrapper: div attributes: '' link_attribute: '' link_custom: '' - label: '' + classes: + layout_class: { } regions: ds_content: - group_media_left - - field_media_image + - field_image - group_media_content - node_title - field_topics @@ -735,75 +632,69 @@ items: children: - node_title - field_topics - label: 'Media content' parent_name: '' - region: ds_content weight: 1 format_type: html_element format_settings: - classes: '' id: '' + classes: '' element: div show_label: false label_element: h3 attributes: '' effect: none speed: fast + label: 'Media content' + region: hidden group_media_left: children: - - field_media_image - label: 'Media left' + - field_image parent_name: '' - region: ds_content weight: 0 format_type: html_element format_settings: - classes: '' id: '' + classes: '' element: div show_label: false label_element: h3 attributes: '' effect: none speed: fast + label: 'Media left' + region: hidden id: node.article.media targetEntityType: node bundle: article mode: media content: - field_media_image: - type: media_thumbnail - label: hidden - settings: - image_link: content - image_style: medium - image_loading: - attribute: lazy - third_party_settings: { } + field_image: + type: image weight: 0 region: ds_content + label: visually_hidden + settings: + image_style: square_thumbnail + image_link: content + third_party_settings: { } field_topics: type: entity_reference_label - label: hidden + weight: 3 + region: ds_content + label: visually_hidden settings: link: true third_party_settings: { } - weight: 3 - region: ds_content hidden: body: true comment: true field_article_type: true field_authors: true field_body_paragraph: true - field_image: true field_meta_tags: true field_summary: true field_tags: true links: true - search_api_excerpt: true - _core: - default_config_hash: 4x38cJIClkq6DqpaPCgbmNJDykQNH8427FiUXCYH9Gc - collection: '' name: core.entity_view_display.node.article.rss @@ -819,14 +710,15 @@ items: - field.field.node.article.field_authors - field.field.node.article.field_body_paragraph - field.field.node.article.field_image - - field.field.node.article.field_media_image - field.field.node.article.field_meta_tags - field.field.node.article.field_summary - field.field.node.article.field_tags - field.field.node.article.field_topics + - image.style.small_square - node.type.article module: - ds + - image - taxonomy - text - user @@ -838,17 +730,17 @@ items: disable_css: false entity_classes: all_classes settings: - classes: - layout_class: { } wrappers: ds_content: div outer_wrapper: div attributes: '' link_attribute: '' link_custom: '' - label: '' + classes: + layout_class: { } regions: ds_content: + - field_image - node_title - field_summary - field_topics @@ -868,38 +760,42 @@ items: bundle: article mode: rss content: + field_image: + type: image + weight: 0 + label: hidden + settings: + image_style: small_square + image_link: '' + third_party_settings: { } + region: ds_content field_summary: type: text_default + weight: 2 label: hidden settings: { } third_party_settings: { } - weight: 2 region: ds_content field_topics: type: entity_reference_rss_category + weight: 3 + region: ds_content label: inline settings: { } third_party_settings: { } - weight: 3 - region: ds_content links: - settings: { } - third_party_settings: { } weight: 4 region: ds_content + settings: { } + third_party_settings: { } hidden: body: true comment: true field_article_type: true field_authors: true field_body_paragraph: true - field_image: true - field_media_image: true field_meta_tags: true field_tags: true - search_api_excerpt: true - _core: - default_config_hash: Kwog5A7LRf57Az8kON5ZaEKeeRi8x1ieEksSX8lGZJM - collection: '' name: core.entity_view_display.node.article.search_index @@ -915,90 +811,100 @@ items: - field.field.node.article.field_authors - field.field.node.article.field_body_paragraph - field.field.node.article.field_image - - field.field.node.article.field_media_image - field.field.node.article.field_meta_tags - field.field.node.article.field_summary - field.field.node.article.field_tags - field.field.node.article.field_topics - node.type.article module: + - ds - entity_reference_revisions - - media - - text + - responsive_image - user + third_party_settings: + ds: + layout: + id: ds_1col + library: null + disable_css: false + entity_classes: all_classes + settings: + wrappers: + ds_content: div + outer_wrapper: div + attributes: '' + link_attribute: '' + link_custom: '' + classes: + layout_class: { } + regions: + ds_content: + - field_image + - field_authors + - node_post_date + - field_body_paragraph + - field_topics + - field_tags + fields: + node_post_date: + plugin_id: node_post_date + weight: 2 + label: hidden + formatter: ds_post_date_month_day_year id: node.article.search_index targetEntityType: node bundle: article mode: search_index content: - field_article_type: - type: entity_reference_label - label: hidden - settings: - link: true - third_party_settings: { } - weight: 7 - region: content field_authors: type: entity_reference_label + weight: 1 + region: ds_content label: hidden settings: link: true third_party_settings: { } - weight: 2 - region: content field_body_paragraph: type: entity_reference_revisions_entity_view + weight: 3 + region: ds_content label: hidden settings: view_mode: default link: '' third_party_settings: { } - weight: 4 - region: content - field_media_image: - type: media_thumbnail + field_image: + type: responsive_image + weight: 0 + region: ds_content label: hidden settings: + responsive_image_style: '' image_link: '' - image_style: '' - image_loading: - attribute: lazy third_party_settings: { } - weight: 1 - region: content - field_summary: - type: text_default - label: hidden - settings: { } - third_party_settings: { } - weight: 0 - region: content field_tags: type: entity_reference_label + weight: 5 + region: ds_content label: hidden settings: link: true third_party_settings: { } - weight: 6 - region: content field_topics: type: entity_reference_label + weight: 4 + region: ds_content label: hidden settings: link: true third_party_settings: { } - weight: 5 - region: content hidden: body: true comment: true - field_image: true + field_article_type: true field_meta_tags: true + field_summary: true links: true - search_api_excerpt: true - _core: - default_config_hash: dToWFUVSfEOoDvE9B6ydW6UwI9bTe4VepVMxeYlHlt8 - collection: '' name: core.entity_view_display.node.article.simple_card @@ -1014,17 +920,16 @@ items: - field.field.node.article.field_authors - field.field.node.article.field_body_paragraph - field.field.node.article.field_image - - field.field.node.article.field_media_image - field.field.node.article.field_meta_tags - field.field.node.article.field_summary - field.field.node.article.field_tags - field.field.node.article.field_topics - node.type.article - - responsive_image.styles.drutopia_card + - responsive_image.styles.narrow module: - ds - field_group - - media_responsive_thumbnail + - responsive_image - user third_party_settings: ds: @@ -1034,22 +939,26 @@ items: disable_css: false entity_classes: all_classes settings: - classes: - layout_class: { } wrappers: ds_content: div outer_wrapper: div attributes: '' link_attribute: '' link_custom: '' - label: '' + classes: + layout_class: { } regions: ds_content: - - field_media_image + - field_image - 'bundle_field:node' - group_card_content - node_title fields: + 'bundle_field:node': + plugin_id: 'bundle_field:node' + weight: 0 + label: hidden + formatter: default node_title: plugin_id: node_title weight: 1 @@ -1060,61 +969,50 @@ items: wrapper: h2 class: '' exclude_node_title: '1' - 'bundle_field:node': - plugin_id: 'bundle_field:node' - weight: 0 - label: hidden - formatter: default field_group: group_card_content: children: - 'bundle_field:node' - node_title - label: 'Card content' parent_name: '' - region: ds_content weight: 1 format_type: html_element format_settings: - classes: '' id: '' + classes: '' element: div show_label: false label_element: h3 attributes: '' effect: none speed: fast + label: 'Card content' + region: hidden id: node.article.simple_card targetEntityType: node bundle: article mode: simple_card content: - field_media_image: - type: media_responsive_thumbnail - label: hidden - settings: - responsive_image_style: drutopia_card - image_link: content - image_loading: - attribute: lazy - third_party_settings: { } + field_image: + type: responsive_image weight: 0 region: ds_content + label: visually_hidden + settings: + responsive_image_style: narrow + image_link: content + third_party_settings: { } hidden: body: true comment: true field_article_type: true field_authors: true field_body_paragraph: true - field_image: true field_meta_tags: true field_summary: true field_tags: true field_topics: true links: true - search_api_excerpt: true - _core: - default_config_hash: pFMSJiKIepy570vXhXY-pMgof9DL1jHz0oe_DNL7e0o - collection: '' name: core.entity_view_display.node.article.teaser @@ -1130,7 +1028,6 @@ items: - field.field.node.article.field_authors - field.field.node.article.field_body_paragraph - field.field.node.article.field_image - - field.field.node.article.field_media_image - field.field.node.article.field_meta_tags - field.field.node.article.field_summary - field.field.node.article.field_tags @@ -1139,7 +1036,7 @@ items: - responsive_image.styles.narrow module: - ds - - media_responsive_thumbnail + - responsive_image - text - user third_party_settings: @@ -1150,8 +1047,6 @@ items: disable_css: true entity_classes: all_classes settings: - classes: - layout_class: { } wrappers: left: div right: div @@ -1159,10 +1054,11 @@ items: attributes: '' link_attribute: '' link_custom: '' - label: '' + classes: + layout_class: { } regions: left: - - field_media_image + - field_image right: - node_post_date - node_title @@ -1191,50 +1087,44 @@ items: content: field_authors: type: entity_reference_label - label: hidden + weight: 3 + region: right + label: visually_hidden settings: link: true third_party_settings: { } - weight: 3 - region: right - field_media_image: - type: media_responsive_thumbnail - label: hidden + field_image: + type: responsive_image + weight: 0 settings: responsive_image_style: narrow image_link: content - image_loading: - attribute: lazy third_party_settings: { } - weight: 0 + label: visually_hidden region: left field_summary: type: text_default - label: hidden + weight: 4 + label: visually_hidden settings: { } third_party_settings: { } - weight: 4 region: right field_topics: type: entity_reference_label - label: hidden + weight: 5 + region: right + label: visually_hidden settings: link: true third_party_settings: { } - weight: 5 - region: right hidden: body: true comment: true field_article_type: true field_body_paragraph: true - field_image: true field_meta_tags: true field_tags: true links: true - search_api_excerpt: true - _core: - default_config_hash: LdbKdOo5xzgO6lxARJTOA025DYLPHpqZQvTEZ65kNpE - collection: '' name: facets.facet.article_topics @@ -1252,8 +1142,6 @@ items: url_alias: article_topics weight: 0 min_count: 1 - missing: false - missing_label: others show_only_one_result: false field_identifier: field_topics facet_source_id: 'search_api:views_page__article__page_listing' @@ -1267,10 +1155,6 @@ items: show_more_label: 'Show more' query_operator: or use_hierarchy: false - keep_hierarchy_parents_active: false - hierarchy: - type: taxonomy - config: { } expand_hierarchy: false enable_parent_when_child_gets_disabled: true hard_limit: 0 @@ -1297,8 +1181,6 @@ items: empty_behavior: behavior: none show_title: null - _core: - default_config_hash: aMbJzy29DPwTSRFIu_1WcaynVEivGMmHQ973ONIAzmc - collection: '' name: facets.facet.article_type @@ -1316,8 +1198,6 @@ items: url_alias: article_type weight: 0 min_count: 1 - missing: false - missing_label: others show_only_one_result: false field_identifier: field_article_type facet_source_id: 'search_api:views_page__article__page_listing' @@ -1331,10 +1211,6 @@ items: show_more_label: 'Show more' query_operator: or use_hierarchy: false - keep_hierarchy_parents_active: false - hierarchy: - type: taxonomy - config: { } expand_hierarchy: false enable_parent_when_child_gets_disabled: true hard_limit: 0 @@ -1361,8 +1237,6 @@ items: empty_behavior: behavior: none show_title: null - _core: - default_config_hash: l5mPOMnF5ocmUOvIpRCfUFwBjq7StjVgPkG3jO27eAs - collection: '' name: field.field.node.article.body @@ -1387,11 +1261,7 @@ items: default_value_callback: '' settings: display_summary: true - required_summary: false - allowed_formats: { } field_type: text_with_summary - _core: - default_config_hash: 4Wxs1LseZ8JsNwD9uJVIbzZqG35yQXN8Eo1Hub6NMuI - collection: '' name: field.field.node.article.comment @@ -1428,8 +1298,6 @@ items: form_location: false preview: 1 field_type: comment - _core: - default_config_hash: r5hRugc6YdPtshnRHWTHfXqV-H4ayy4RUmYrjwtee_Q - collection: '' name: field.field.node.article.field_article_type @@ -1461,8 +1329,6 @@ items: auto_create: false auto_create_bundle: '' field_type: entity_reference - _core: - default_config_hash: sgfDlNErzrtqSZmOFogMgSbCrnNGqi9qI7n1nkU4Miw - collection: '' name: field.field.node.article.field_authors @@ -1495,8 +1361,6 @@ items: auto_create: false auto_create_bundle: '' field_type: entity_reference - _core: - default_config_hash: R0g08RdnWFjIcG24yv8h_an5OKMBYUqd31XpTgAN-xU - collection: '' name: field.field.node.article.field_body_paragraph @@ -1557,8 +1421,6 @@ items: weight: -9 enabled: false field_type: entity_reference_revisions - _core: - default_config_hash: zmbXArDMaD7OI9uW7TPK5-yqjX542fQ1zyARsCDKR58 - collection: '' name: field.field.node.article.field_image @@ -1575,69 +1437,31 @@ items: field_name: field_image entity_type: node bundle: article - label: 'Image (deprecated)' - description: 'Use Media image instead.' - required: false - translatable: true - default_value: { } - default_value_callback: '' - settings: - handler: 'default:file' - handler_settings: { } - file_directory: '[date:custom:Y]-[date:custom:m]' - file_extensions: 'png gif jpg jpeg' - max_filesize: '' - max_resolution: '' - min_resolution: '' - alt_field: true - alt_field_required: true - title_field: false - title_field_required: false - default_image: - uuid: '' - alt: '' - title: '' - width: null - height: null - field_type: image - _core: - default_config_hash: _g6OvaJp-SmDwkd7ksSnoeNscNYVpaeiK2e2V-DexWk - - - collection: '' - name: field.field.node.article.field_media_image - data: - langcode: en - status: true - dependencies: - config: - - field.storage.node.field_media_image - - media.type.image - - node.type.article - module: - - media_library_media_modify - id: node.article.field_media_image - field_name: field_media_image - entity_type: node - bundle: article - label: 'Media image' + label: Image description: '' required: false translatable: true default_value: { } default_value_callback: '' settings: - handler: 'default:media' - handler_settings: - target_bundles: - image: image - sort: - field: _none - direction: ASC - auto_create: false - auto_create_bundle: '' - field_type: entity_reference_entity_modify - _core: - default_config_hash: Qcn3JCSgkRcHCI7MD1-K4XLJ_GtzanMfIOL3Qnqx3n4 + file_directory: '[date:custom:Y]-[date:custom:m]' + file_extensions: 'png gif jpg jpeg' + max_filesize: '' + max_resolution: '' + min_resolution: '' + alt_field: true + title_field: false + alt_field_required: true + title_field_required: false + default_image: + uuid: null + alt: '' + title: '' + width: null + height: null + handler: 'default:file' + handler_settings: { } + field_type: image - collection: '' name: field.field.node.article.field_meta_tags @@ -1664,8 +1488,6 @@ items: default_value_callback: '' settings: { } field_type: metatag - _core: - default_config_hash: gtsKaCJiVxHYhlaPmNdE3yTfOfo_QGaoVNC0NhXk0T4 - collection: '' name: field.field.node.article.field_summary @@ -1688,11 +1510,8 @@ items: translatable: true default_value: { } default_value_callback: '' - settings: - allowed_formats: { } + settings: { } field_type: text_long - _core: - default_config_hash: zFJNsKnw3lHQY-FIP2W518KwFHDbdoIujDVJ7ALsiLY - collection: '' name: field.field.node.article.field_tags @@ -1723,8 +1542,6 @@ items: field: _none auto_create: true field_type: entity_reference - _core: - default_config_hash: QdUgf_beeoaPiyKorFv0q1fcJpWH_uZTqe_xoVJacrw - collection: '' name: field.field.node.article.field_topics @@ -1757,8 +1574,6 @@ items: auto_create: false auto_create_bundle: '' field_type: entity_reference - _core: - default_config_hash: s7YTdMGSG08vB0dJzeaYsUpxqfAOtRna6ptjOzUcUpo - collection: '' name: field.storage.node.field_article_type @@ -1782,8 +1597,6 @@ items: indexes: { } persist_with_no_fields: false custom_storage: false - _core: - default_config_hash: OXKi1lOkzdvllQeaPeFGNCH7pyjNUdXsiHsc2-w5_sI - collection: '' name: node.type.article @@ -1798,8 +1611,6 @@ items: new_revision: true preview_mode: 1 display_submitted: true - _core: - default_config_hash: AeW1SEDgb1OTQACAWGhzvMknMYAJlcZu0jljfeU3oso - collection: '' name: pathauto.pattern.article_type @@ -1808,6 +1619,7 @@ items: status: true dependencies: module: + - ctools - taxonomy id: article_type label: 'Article type' @@ -1825,8 +1637,6 @@ items: selection_logic: and weight: -5 relationships: { } - _core: - default_config_hash: Rcg9h-VqkNegI45Jc7z1yAFDLPCCUQf6PVBm2XtPFu4 - collection: '' name: pathauto.pattern.node_article @@ -1842,7 +1652,7 @@ items: pattern: 'articles/[node:title]' selection_criteria: 03faf328-473f-4ba7-bafe-72df857287d9: - id: 'entity_bundle:node' + id: node_type bundles: article: article negate: false @@ -1852,8 +1662,6 @@ items: selection_logic: and weight: -5 relationships: { } - _core: - default_config_hash: ccAZpESv4ZfBcJ6yMGWzpUboQCvuhFkwH_CB6e4rIHw - collection: '' name: rdf.mapping.node.article @@ -1907,8 +1715,6 @@ items: field_tags: properties: - 'schema:about' - _core: - default_config_hash: IdobJe379eDudt7-bXFfJjF7pDqFl-kYxVFtpWrgkro - collection: '' name: search_api.index.article @@ -1955,7 +1761,7 @@ items: datasource_id: 'entity:node' property_path: title type: text - boost: 8.0 + boost: !!float 8 field_tags: label: Tags datasource_id: 'entity:node' @@ -2154,10 +1960,7 @@ items: options: index_directly: true cron_limit: 50 - track_changes_in_references: true server: database - _core: - default_config_hash: mS4DxDqwZoIgBPzHPrV8CmozPYyECJGh1f0bgN4rlzs - collection: '' name: taxonomy.vocabulary.article_type @@ -2169,8 +1972,6 @@ items: vid: article_type description: 'For categorizing articles.' weight: 0 - _core: - default_config_hash: Uik12fWp9O8FJNPyHcdC9_pvMgRFD5puSLiuquIxo0A - collection: '' name: views.view.article @@ -2191,6 +1992,7 @@ items: tag: '' base_table: search_api_index_article base_field: search_api_id + core: 8.x display: default: display_plugin: default @@ -2206,7 +2008,7 @@ items: type: none options: { } query: - type: search_api_query + type: views_query options: bypass_access: false skip_access: false @@ -2401,5 +2203,3 @@ items: - url.query_args - user.permissions tags: { } - _core: - default_config_hash: kdPpKbJz_zBnqJQMI6Q8Dr6ltKOVTRh2GvOgMZKZb-E diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_blog.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_blog.yml index cfbb98f..594e1b8 100644 --- a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_blog.yml +++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_blog.yml @@ -29,8 +29,6 @@ items: context_mapping: { } uuid: b3c1bb42-5349-4f54-abe9-590277c82bcc allow_other_conditions: false - _core: - default_config_hash: BY6B0phBkxMBePbxKu_qCUSqBpFoQ8n_A4Vw4anEqZk - collection: '' name: core.entity_form_display.node.blog.default @@ -44,15 +42,15 @@ items: - 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_summary - field.field.node.blog.field_tags - field.field.node.blog.field_topics + - image.style.thumbnail - node.type.blog module: - comment - - media_library_media_modify + - focal_point - metatag - paragraphs - path @@ -63,31 +61,28 @@ items: mode: default content: comment: - type: comment_default weight: 12 - region: content settings: { } third_party_settings: { } + type: comment_default + region: content created: type: datetime_timestamp weight: 8 - region: content settings: { } third_party_settings: { } - field_authors: - type: entity_reference_autocomplete - weight: 1 region: content + field_authors: + weight: 1 settings: match_operator: CONTAINS - match_limit: 10 size: 60 placeholder: '' third_party_settings: { } - field_body_paragraph: - type: entity_reference_paragraphs - weight: 3 + type: entity_reference_autocomplete region: content + field_body_paragraph: + weight: 4 settings: title: Paragraph title_plural: Paragraphs @@ -96,105 +91,93 @@ items: form_display_mode: default default_paragraph_type: text third_party_settings: { } - field_media_image: - type: media_library_media_modify_widget - weight: 4 + type: entity_reference_paragraphs region: content - settings: - media_types: { } - form_mode: main - check_selected: false - replace_checkbox_by_order_indicator: false - multi_edit_on_create: false - no_edit_on_create: false - third_party_settings: { } - field_meta_tags: - type: metatag_firehose - weight: 13 - region: content - settings: - sidebar: true - use_details: true - third_party_settings: { } - field_summary: - type: text_textarea + field_image: weight: 2 + settings: + progress_indicator: throbber + preview_image_style: thumbnail + preview_link: true + offsets: '50,50' + third_party_settings: { } + type: image_focal_point region: content + field_meta_tags: + weight: 13 + settings: { } + third_party_settings: { } + type: metatag_firehose + region: content + field_summary: + weight: 3 settings: rows: 5 placeholder: '' third_party_settings: { } - field_tags: - type: entity_reference_autocomplete_tags - weight: 6 + type: text_textarea region: content + field_tags: + weight: 6 settings: match_operator: CONTAINS - match_limit: 10 size: 60 placeholder: '' third_party_settings: { } - field_topics: - type: options_select - weight: 5 + type: entity_reference_autocomplete_tags region: content + field_topics: + weight: 5 settings: { } third_party_settings: { } + type: options_select + region: content path: type: path weight: 11 - region: content settings: { } third_party_settings: { } + region: content promote: type: boolean_checkbox - weight: 9 - region: content settings: display_label: true + weight: 9 third_party_settings: { } + region: content status: type: boolean_checkbox - weight: 14 - region: content settings: display_label: true + weight: 14 + region: content third_party_settings: { } sticky: type: boolean_checkbox - weight: 10 - region: content settings: display_label: true + weight: 10 third_party_settings: { } + region: content title: type: string_textfield weight: 0 - region: content settings: size: 60 placeholder: '' third_party_settings: { } + region: content uid: type: entity_reference_autocomplete weight: 7 - region: content settings: match_operator: CONTAINS - match_limit: 10 size: 60 placeholder: '' third_party_settings: { } - url_redirects: - weight: 15 region: content - settings: { } - third_party_settings: { } hidden: body: true - field_image: true - _core: - default_config_hash: gJYbXNSqzl7m-yUYyd36nfdOepKpvJut_hStwXo5oGI - collection: '' name: core.entity_view_display.node.blog.card @@ -209,17 +192,16 @@ items: - 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_summary - field.field.node.blog.field_tags - field.field.node.blog.field_topics - node.type.blog - - responsive_image.styles.drutopia_card + - responsive_image.styles.narrow module: - ds - field_group - - media_responsive_thumbnail + - responsive_image - text - user third_party_settings: @@ -230,20 +212,18 @@ items: disable_css: false entity_classes: all_classes settings: - classes: - layout_class: { } wrappers: ds_content: div outer_wrapper: div attributes: '' link_attribute: '' link_custom: '' - label: '' + classes: + layout_class: { } regions: ds_content: - - field_media_image + - field_image - group_card_content - - group_card_content_bottom - node_title - field_authors - field_summary @@ -264,38 +244,21 @@ items: - node_title - field_authors - field_summary - label: 'Card content' + - field_topics parent_name: '' - region: ds_content weight: 1 format_type: html_element format_settings: - classes: '' id: '' + classes: '' element: div show_label: false label_element: h3 attributes: '' effect: none speed: fast - group_card_content_bottom: - children: - - field_topics - label: 'Card content bottom' - parent_name: '' - region: ds_content - weight: 2 - format_type: html_element - format_settings: - classes: '' - id: '' - element: div - show_label: false - label_element: h3 - label_element_classes: '' - attributes: '' - effect: none - speed: fast + label: 'Card content' + region: hidden id: node.blog.card targetEntityType: node bundle: blog @@ -303,49 +266,43 @@ items: content: field_authors: type: entity_reference_label - label: hidden - settings: - link: true - third_party_settings: { } weight: 4 region: ds_content - field_media_image: - type: media_responsive_thumbnail - label: hidden - settings: - responsive_image_style: drutopia_card - image_link: '' - image_loading: - attribute: lazy - third_party_settings: { } - weight: 0 - region: ds_content - field_summary: - type: text_default - label: hidden - settings: { } - third_party_settings: { } - weight: 5 - region: ds_content - field_topics: - type: entity_reference_label - label: hidden + label: visually_hidden settings: link: true third_party_settings: { } + field_image: + type: responsive_image + weight: 0 + region: ds_content + label: visually_hidden + settings: + responsive_image_style: narrow + image_link: content + third_party_settings: { } + field_summary: + type: text_default + weight: 5 + region: ds_content + label: visually_hidden + settings: { } + third_party_settings: { } + field_topics: + type: entity_reference_label weight: 6 region: ds_content + label: visually_hidden + settings: + link: true + third_party_settings: { } hidden: body: true comment: true field_body_paragraph: true - field_image: true field_meta_tags: true field_tags: true links: true - search_api_excerpt: true - _core: - default_config_hash: fZbsOhcT17ToWwSr5WZR9efC6kPfSZDT0Lyfrw4AW7g - collection: '' name: core.entity_view_display.node.blog.default @@ -359,7 +316,6 @@ items: - 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_summary - field.field.node.blog.field_tags @@ -376,32 +332,20 @@ items: disable_css: false entity_classes: all_classes settings: - classes: - layout_class: { } wrappers: ds_content: div outer_wrapper: div attributes: '' link_attribute: '' link_custom: '' - label: '' - regions: - ds_content: - - field_media_image + classes: + layout_class: { } + regions: { } id: node.blog.default targetEntityType: node bundle: blog mode: default - content: - field_media_image: - type: entity_reference_entity_view - label: hidden - settings: - view_mode: default - link: false - third_party_settings: { } - weight: 1 - region: ds_content + content: { } hidden: body: true comment: true @@ -413,9 +357,6 @@ items: field_tags: true field_topics: true links: true - search_api_excerpt: true - _core: - default_config_hash: ImTK-3oAc-aqtw5x2OslU4EkaRdc5oYWo_XevaTPHbY - collection: '' name: core.entity_view_display.node.blog.full @@ -431,18 +372,17 @@ items: - 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_summary - field.field.node.blog.field_tags - field.field.node.blog.field_topics - node.type.blog - - responsive_image.styles.drutopia_main + - responsive_image.styles.wide module: - comment - ds - entity_reference_revisions - - media_responsive_thumbnail + - responsive_image - user third_party_settings: ds: @@ -452,8 +392,6 @@ items: disable_css: true entity_classes: all_classes settings: - classes: - layout_class: { } wrappers: header: div left: div @@ -464,10 +402,11 @@ items: attributes: '' link_attribute: '' link_custom: '' - label: '' + classes: + layout_class: { } regions: header: - - field_media_image + - field_image left: - field_authors middle: @@ -478,85 +417,79 @@ items: - node_links - comment fields: - node_links: - plugin_id: node_links - weight: 6 - label: hidden - formatter: default node_post_date: plugin_id: node_post_date weight: 2 label: hidden formatter: ds_post_date_month_day_year + node_links: + plugin_id: node_links + weight: 6 + label: hidden + formatter: default id: node.blog.full targetEntityType: node bundle: blog mode: full content: comment: - type: comment_default + weight: 7 label: above settings: - view_mode: default pager_id: 0 + view_mode: default third_party_settings: { } - weight: 7 + type: comment_default region: middle field_authors: type: entity_reference_label - label: hidden + weight: 1 + region: left + label: visually_hidden settings: link: true third_party_settings: ds: ds_limit: '' - weight: 1 - region: left field_body_paragraph: - type: entity_reference_revisions_entity_view - label: hidden + weight: 3 + label: visually_hidden settings: view_mode: default link: '' third_party_settings: { } - weight: 3 + type: entity_reference_revisions_entity_view region: middle - field_media_image: - type: media_responsive_thumbnail - label: hidden - settings: - responsive_image_style: drutopia_main - image_link: '' - image_loading: - attribute: lazy - third_party_settings: { } + field_image: weight: 0 + label: visually_hidden + settings: + responsive_image_style: wide + image_link: '' + third_party_settings: { } + type: responsive_image region: header field_tags: - type: entity_reference_label - label: hidden + weight: 5 + label: visually_hidden settings: link: true third_party_settings: { } - weight: 5 + type: entity_reference_label region: middle field_topics: type: entity_reference_label - label: hidden + weight: 4 + region: middle + label: visually_hidden settings: link: true third_party_settings: { } - weight: 4 - region: middle hidden: body: true - field_image: true field_meta_tags: true field_summary: true links: true - search_api_excerpt: true - _core: - default_config_hash: 4ZfS_Z10S3CoO0d96Fj5X_zPHWrGJx0abq31G1ZO1TU - collection: '' name: core.entity_view_display.node.blog.media @@ -571,17 +504,16 @@ items: - 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_summary - field.field.node.blog.field_tags - field.field.node.blog.field_topics - - image.style.media_library + - image.style.square_thumbnail - node.type.blog module: - ds - field_group - - media + - image - user third_party_settings: ds: @@ -591,20 +523,19 @@ items: disable_css: false entity_classes: all_classes settings: - classes: - layout_class: { } wrappers: ds_content: div outer_wrapper: div attributes: '' link_attribute: '' link_custom: '' - label: '' + classes: + layout_class: { } regions: ds_content: - group_media_left - - field_media_image - group_media_content + - field_image - node_title - field_topics fields: @@ -620,76 +551,71 @@ items: field_group: group_media_left: children: - - field_media_image - label: 'Media left' + - field_image parent_name: '' - region: ds_content weight: 0 format_type: html_element format_settings: - classes: '' id: '' + classes: '' element: div show_label: false label_element: h3 attributes: '' effect: none speed: fast + label: 'Media left' + region: hidden group_media_content: children: - node_title - field_topics - label: 'Media content' parent_name: '' - region: ds_content weight: 1 format_type: html_element format_settings: - classes: '' - id: '' + label: 'Media content' element: div show_label: false label_element: h3 attributes: '' effect: none speed: fast + id: '' + classes: '' + label: 'Media content' + region: hidden id: node.blog.media targetEntityType: node bundle: blog mode: media content: - field_media_image: - type: media_thumbnail - label: hidden - settings: - image_link: '' - image_style: media_library - image_loading: - attribute: lazy - third_party_settings: { } - weight: 0 + field_image: + type: image + weight: 2 region: ds_content + label: visually_hidden + settings: + image_style: square_thumbnail + image_link: content + third_party_settings: { } field_topics: type: entity_reference_label - label: hidden + weight: 3 + region: ds_content + label: visually_hidden settings: link: true third_party_settings: { } - weight: 3 - region: ds_content hidden: body: true comment: true field_authors: true field_body_paragraph: true - field_image: true field_meta_tags: true field_summary: true field_tags: true links: true - search_api_excerpt: true - _core: - default_config_hash: tyJ0i9SWeKAdXCELGSOKNiqPVRxs7rZC_4NPXlFzgw4 - collection: '' name: core.entity_view_display.node.blog.search_index @@ -704,7 +630,6 @@ items: - 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_summary - field.field.node.blog.field_tags @@ -713,7 +638,7 @@ items: module: - ds - entity_reference_revisions - - media + - responsive_image - user third_party_settings: ds: @@ -723,18 +648,17 @@ items: disable_css: false entity_classes: all_classes settings: - classes: - layout_class: { } wrappers: ds_content: div outer_wrapper: div attributes: '' link_attribute: '' link_custom: '' - label: '' + classes: + layout_class: { } regions: ds_content: - - field_media_image + - field_image - field_authors - node_post_date - field_body_paragraph @@ -753,62 +677,56 @@ items: content: field_authors: type: entity_reference_label + weight: 1 + region: ds_content label: hidden settings: link: true third_party_settings: ds: ds_limit: '' - weight: 1 - region: ds_content field_body_paragraph: type: entity_reference_revisions_entity_view + weight: 3 + region: ds_content label: hidden settings: view_mode: default link: '' third_party_settings: { } - weight: 3 - region: ds_content - field_media_image: - type: media_thumbnail - label: hidden - settings: - image_link: '' - image_style: '' - image_loading: - attribute: lazy - third_party_settings: { } + field_image: + type: responsive_image weight: 0 region: ds_content + label: hidden + settings: + responsive_image_style: '' + image_link: '' + third_party_settings: { } field_tags: type: entity_reference_label + weight: 5 + region: ds_content label: hidden settings: link: true third_party_settings: ds: ds_limit: '' - weight: 5 - region: ds_content field_topics: type: entity_reference_label + weight: 4 + region: ds_content label: hidden settings: link: true third_party_settings: { } - weight: 4 - region: ds_content hidden: body: true comment: true - field_image: true field_meta_tags: true field_summary: true links: true - search_api_excerpt: true - _core: - default_config_hash: is6wdcdUBUrn4zwiKcd9isfY9VbMOAuOoOAms-OfEaw - collection: '' name: core.entity_view_display.node.blog.simple_card @@ -823,17 +741,16 @@ items: - 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_summary - field.field.node.blog.field_tags - field.field.node.blog.field_topics - node.type.blog - - responsive_image.styles.drutopia_card + - responsive_image.styles.narrow module: - ds - field_group - - media_responsive_thumbnail + - responsive_image - user third_party_settings: ds: @@ -843,22 +760,26 @@ items: disable_css: false entity_classes: all_classes settings: - classes: - layout_class: { } wrappers: ds_content: div outer_wrapper: div attributes: '' link_attribute: '' link_custom: '' - label: '' + classes: + layout_class: { } regions: ds_content: - - field_media_image + - field_image - group_card_content - 'bundle_field:node' - node_title fields: + 'bundle_field:node': + plugin_id: 'bundle_field:node' + weight: 2 + label: hidden + formatter: default node_title: plugin_id: node_title weight: 3 @@ -869,60 +790,49 @@ items: wrapper: h2 class: '' exclude_node_title: '1' - 'bundle_field:node': - plugin_id: 'bundle_field:node' - weight: 2 - label: hidden - formatter: default field_group: group_card_content: children: - 'bundle_field:node' - node_title - label: 'Card content' parent_name: '' - region: ds_content weight: 1 format_type: html_element format_settings: - classes: '' id: '' + classes: '' element: div show_label: false label_element: h3 attributes: '' effect: none speed: fast + label: 'Card content' + region: hidden id: node.blog.simple_card targetEntityType: node bundle: blog mode: simple_card content: - field_media_image: - type: media_responsive_thumbnail - label: hidden - settings: - responsive_image_style: drutopia_card - image_link: '' - image_loading: - attribute: lazy - third_party_settings: { } + field_image: + type: responsive_image weight: 0 region: ds_content + label: visually_hidden + settings: + responsive_image_style: narrow + image_link: content + third_party_settings: { } hidden: body: true comment: true field_authors: true field_body_paragraph: true - field_image: true field_meta_tags: true field_summary: true field_tags: true field_topics: true links: true - search_api_excerpt: true - _core: - default_config_hash: B4wGOCyu2sefG5yxbONx-U0xIsYU-8mhC3o2EoqccCw - collection: '' name: core.entity_view_display.node.blog.teaser @@ -937,16 +847,15 @@ items: - 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_summary - field.field.node.blog.field_tags - field.field.node.blog.field_topics - node.type.blog - - responsive_image.styles.drutopia_card + - responsive_image.styles.narrow module: - ds - - media_responsive_thumbnail + - responsive_image - text - user third_party_settings: @@ -957,8 +866,6 @@ items: disable_css: true entity_classes: all_classes settings: - classes: - layout_class: { } wrappers: left: div right: div @@ -966,10 +873,11 @@ items: attributes: '' link_attribute: '' link_custom: '' - label: '' + classes: + layout_class: { } regions: left: - - field_media_image + - field_image right: - node_post_date - node_title @@ -977,6 +885,11 @@ items: - field_summary - field_topics fields: + node_post_date: + plugin_id: node_post_date + weight: 1 + label: hidden + formatter: ds_post_date_month_day_year node_title: plugin_id: node_title weight: 2 @@ -986,11 +899,6 @@ items: link: true wrapper: h2 class: '' - node_post_date: - plugin_id: node_post_date - weight: 1 - label: hidden - formatter: ds_post_date_month_day_year id: node.blog.teaser targetEntityType: node bundle: blog @@ -998,49 +906,43 @@ items: content: field_authors: type: entity_reference_label - label: hidden + weight: 3 + region: right + label: visually_hidden settings: link: true third_party_settings: { } - weight: 3 - region: right - field_media_image: - type: media_responsive_thumbnail - label: hidden - settings: - responsive_image_style: drutopia_card - image_link: '' - image_loading: - attribute: lazy - third_party_settings: { } + field_image: + type: responsive_image weight: 0 + label: visually_hidden + settings: + responsive_image_style: narrow + image_link: content + third_party_settings: { } region: left field_summary: type: text_default - label: hidden + weight: 4 + label: visually_hidden settings: { } third_party_settings: { } - weight: 4 region: right field_topics: type: entity_reference_label - label: hidden + weight: 5 + region: right + label: visually_hidden settings: link: true third_party_settings: { } - weight: 5 - region: right hidden: body: true comment: true field_body_paragraph: true - field_image: true field_meta_tags: true field_tags: true links: true - search_api_excerpt: true - _core: - default_config_hash: eMJT1H3QrF7bnxGsMPL4uZQ_UbsBwtkiYCsvBABIVCE - collection: '' name: facets.facet.blog_topics @@ -1058,8 +960,6 @@ items: url_alias: blog_topics weight: 0 min_count: 1 - missing: false - missing_label: others show_only_one_result: false field_identifier: field_topics facet_source_id: 'search_api:views_page__blog__page_listing' @@ -1073,10 +973,6 @@ items: show_more_label: 'Show more' query_operator: or use_hierarchy: false - keep_hierarchy_parents_active: false - hierarchy: - type: taxonomy - config: { } expand_hierarchy: false enable_parent_when_child_gets_disabled: true hard_limit: 0 @@ -1109,8 +1005,6 @@ items: empty_behavior: behavior: none show_title: null - _core: - default_config_hash: FCCrzUdSW6PQvRmBb-14tGvWstB3WGVn__X_FZXuyfU - collection: '' name: field.field.node.blog.body @@ -1135,11 +1029,7 @@ items: default_value_callback: '' settings: display_summary: true - required_summary: false - allowed_formats: { } field_type: text_with_summary - _core: - default_config_hash: pAztVcOiuynLqh1ehRwqRDvFSXnGUNahnBkzXwYnoHk - collection: '' name: field.field.node.blog.comment @@ -1176,8 +1066,6 @@ items: form_location: false preview: 1 field_type: comment - _core: - default_config_hash: 2u1516pRLPEEjj2VR3MThKwKK3RmbjpI2CnKvwUJG_w - collection: '' name: field.field.node.blog.field_authors @@ -1210,8 +1098,6 @@ items: auto_create: false auto_create_bundle: '' field_type: entity_reference - _core: - default_config_hash: RLR-cg4JkgDP52sJp856cLP0btRGIdldE04Zph2UIk8 - collection: '' name: field.field.node.blog.field_body_paragraph @@ -1249,8 +1135,6 @@ items: weight: -7 enabled: false field_type: entity_reference_revisions - _core: - default_config_hash: FLtvcFPffBH3zBV90mr2s-PH9FMXSrPlUOTAWEdf8SA - collection: '' name: field.field.node.blog.field_image @@ -1267,15 +1151,13 @@ items: field_name: field_image entity_type: node bundle: blog - label: 'Image (DEPRECATED)' + label: Image description: '' required: false translatable: true default_value: { } default_value_callback: '' settings: - handler: 'default:file' - handler_settings: { } file_directory: '[date:custom:Y]-[date:custom:m]' file_extensions: 'png gif jpg jpeg' max_filesize: '' @@ -1291,45 +1173,9 @@ items: title: '' width: null height: null + handler: 'default:file' + handler_settings: { } field_type: image - _core: - default_config_hash: bgBvF28MNkkDTcAUmn21EQapStkUW4CD9Mtd9Ha9hOg - - - collection: '' - name: field.field.node.blog.field_media_image - data: - langcode: en - status: true - dependencies: - config: - - field.storage.node.field_media_image - - media.type.image - - node.type.blog - module: - - media_library_media_modify - id: node.blog.field_media_image - field_name: field_media_image - entity_type: node - bundle: blog - label: 'Media image' - description: '' - required: false - translatable: false - default_value: { } - default_value_callback: '' - settings: - handler: 'default:media' - handler_settings: - target_bundles: - image: image - sort: - field: _none - direction: ASC - auto_create: false - auto_create_bundle: '' - field_type: entity_reference_entity_modify - _core: - default_config_hash: f46zn4uaJdean3NGK8lZ8_kt8kf1D2vh-JeBOF2xydI - collection: '' name: field.field.node.blog.field_meta_tags @@ -1356,8 +1202,6 @@ items: default_value_callback: '' settings: { } field_type: metatag - _core: - default_config_hash: 43SnkPqaaVhhp2JBx3vtRkUmdLNswdhBMP4VKjxI_gc - collection: '' name: field.field.node.blog.field_summary @@ -1380,11 +1224,8 @@ items: translatable: true default_value: { } default_value_callback: '' - settings: - allowed_formats: { } + settings: { } field_type: text_long - _core: - default_config_hash: _d0Wpv5JicuiVOtdyeU3s6lHlMQR-iC4YkBLMDyDBWE - collection: '' name: field.field.node.blog.field_tags @@ -1415,8 +1256,6 @@ items: field: _none auto_create: true field_type: entity_reference - _core: - default_config_hash: quGdfscmU2kZSXdGqeqxHMXJ8XqPjq3cuQuN8BYBllw - collection: '' name: field.field.node.blog.field_topics @@ -1449,8 +1288,6 @@ items: auto_create: false auto_create_bundle: '' field_type: entity_reference - _core: - default_config_hash: qJeUuy3m8P3cWrbXno5irZyYFFMKRget3ObasudltjM - collection: '' name: node.type.blog @@ -1472,8 +1309,6 @@ items: new_revision: false preview_mode: 1 display_submitted: true - _core: - default_config_hash: 2tOuWCHTBNQL6qHpVU0Fp4sBGevWZAkXhAaPBu3HyN8 - collection: '' name: pathauto.pattern.node_blog @@ -1489,7 +1324,7 @@ items: pattern: 'blog/[node:title]' selection_criteria: cbbc8b23-30be-44a8-969b-ef9c72e952ab: - id: 'entity_bundle:node' + id: node_type bundles: blog: blog negate: false @@ -1499,8 +1334,6 @@ items: selection_logic: and weight: -5 relationships: { } - _core: - default_config_hash: bP415sOfXkCNV1dEP0bCav-jTQIqTk-blXVNZFmcy5g - collection: '' name: search_api.index.blog @@ -1545,7 +1378,7 @@ items: datasource_id: 'entity:node' property_path: title type: text - boost: 8.0 + boost: !!float 8 field_tags: label: Tags datasource_id: 'entity:node' @@ -1728,10 +1561,7 @@ items: options: index_directly: true cron_limit: 50 - track_changes_in_references: true server: database - _core: - default_config_hash: 2bH1R-hnrKLJJDI4FUZBg4Nq-pgqOuv3a_Afvx_xo6Q - collection: '' name: views.view.blog @@ -1752,6 +1582,7 @@ items: tag: '' base_table: search_api_index_blog base_field: search_api_id + core: 8.x display: default: display_plugin: default @@ -1767,7 +1598,7 @@ items: type: none options: { } query: - type: search_api_query + type: views_query options: bypass_access: false skip_access: false @@ -1942,8 +1773,6 @@ items: multiple: false remember_roles: authenticated: authenticated - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -2001,5 +1830,3 @@ items: - url.query_args - user.permissions tags: { } - _core: - default_config_hash: W9W8F8YHcJHXY3T4csMAbUGw6zKUv-A03dYNs7Qa73s diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_collection.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_collection.yml index 21d9c4a..f0419fd 100644 --- a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_collection.yml +++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_collection.yml @@ -19,7 +19,6 @@ items: config: - field.field.node.collection.body - field.field.node.collection.field_authors - - field.field.node.collection.field_body_paragraph - field.field.node.collection.field_collection_items - field.field.node.collection.field_collection_type - field.field.node.collection.field_image @@ -32,7 +31,6 @@ items: module: - image - metatag - - paragraphs - path - text id: node.collection.default @@ -42,12 +40,12 @@ items: content: created: type: datetime_timestamp - weight: 13 + weight: 10 region: content settings: { } third_party_settings: { } field_authors: - weight: 2 + weight: 4 settings: match_operator: CONTAINS size: 60 @@ -55,18 +53,6 @@ items: third_party_settings: { } type: entity_reference_autocomplete region: content - field_body_paragraph: - type: entity_reference_paragraphs - weight: 6 - region: content - settings: - title: Paragraph - title_plural: Paragraphs - edit_mode: open - add_mode: dropdown - form_display_mode: default - default_paragraph_type: _none - third_party_settings: { } field_collection_items: weight: 5 settings: @@ -91,13 +77,13 @@ items: type: image_image region: content field_meta_tags: - weight: 10 + weight: 7 settings: { } third_party_settings: { } type: metatag_firehose region: content field_summary: - weight: 4 + weight: 2 settings: rows: 5 placeholder: '' @@ -105,7 +91,7 @@ items: type: text_textarea region: content field_tags: - weight: 8 + weight: 15 settings: match_operator: CONTAINS size: 60 @@ -114,7 +100,7 @@ items: type: entity_reference_autocomplete region: content field_topics: - weight: 7 + weight: 14 settings: match_operator: CONTAINS size: 60 @@ -124,7 +110,7 @@ items: region: content path: type: path - weight: 11 + weight: 8 region: content settings: { } third_party_settings: { } @@ -132,21 +118,21 @@ items: type: boolean_checkbox settings: display_label: true - weight: 15 + weight: 12 region: content third_party_settings: { } status: type: boolean_checkbox settings: display_label: true - weight: 16 + weight: 13 region: content third_party_settings: { } sticky: type: boolean_checkbox settings: display_label: true - weight: 14 + weight: 11 region: content third_party_settings: { } title: @@ -159,7 +145,7 @@ items: third_party_settings: { } uid: type: entity_reference_autocomplete - weight: 9 + weight: 6 settings: match_operator: CONTAINS size: 60 @@ -167,43 +153,12 @@ items: region: content third_party_settings: { } url_redirects: - weight: 12 + weight: 9 region: content settings: { } third_party_settings: { } hidden: body: true - _core: - default_config_hash: nQ_UEFVKl51O_tJ1AN9LAH0VhuJTgpKOszmSUZjYygc - - - collection: '' - name: core.entity_form_display.paragraph.drutopia_collection.default - data: - langcode: en - status: true - dependencies: - config: - - field.field.paragraph.drutopia_collection.field_items - - paragraphs.paragraphs_type.drutopia_collection - id: paragraph.drutopia_collection.default - targetEntityType: paragraph - bundle: drutopia_collection - mode: default - content: - field_items: - weight: 0 - settings: - match_operator: CONTAINS - size: 60 - placeholder: '' - third_party_settings: { } - type: entity_reference_autocomplete - region: content - hidden: - created: true - status: true - _core: - default_config_hash: _1hZ95TGb11kRSt9dhg0nFE2VsiWz58W7YnNBRFKIO8 - collection: '' name: core.entity_view_display.node.collection.default @@ -214,7 +169,6 @@ items: config: - field.field.node.collection.body - field.field.node.collection.field_authors - - field.field.node.collection.field_body_paragraph - field.field.node.collection.field_collection_items - field.field.node.collection.field_collection_type - field.field.node.collection.field_image @@ -313,10 +267,7 @@ items: settings: { } third_party_settings: { } hidden: - field_body_paragraph: true search_api_excerpt: true - _core: - default_config_hash: wVi9ZiHfMvJ_gpdc2gUELVYpZVl3lVvKT9vS_3R9MVk - collection: '' name: core.entity_view_display.node.collection.full @@ -328,7 +279,6 @@ items: - core.entity_view_mode.node.full - field.field.node.collection.body - field.field.node.collection.field_authors - - field.field.node.collection.field_body_paragraph - field.field.node.collection.field_collection_items - field.field.node.collection.field_collection_type - field.field.node.collection.field_image @@ -340,7 +290,6 @@ items: module: - ds - image - - paragraphs - text - user third_party_settings: @@ -369,7 +318,6 @@ items: - node_post_date - field_authors - field_collection_type - - field_body_paragraph - field_topics - field_tags right: @@ -394,15 +342,8 @@ items: third_party_settings: { } type: entity_reference_label region: left - field_body_paragraph: - type: paragraph_summary - weight: 4 - region: left - label: hidden - settings: { } - third_party_settings: { } field_collection_items: - weight: 8 + weight: 7 label: hidden settings: view_mode: teaser @@ -416,7 +357,7 @@ items: type: entity_reference_label weight: 3 region: left - label: hidden + label: visually_hidden settings: link: false third_party_settings: { } @@ -430,7 +371,7 @@ items: type: image region: header field_summary: - weight: 7 + weight: 6 label: hidden settings: { } third_party_settings: { } @@ -438,7 +379,7 @@ items: region: right field_tags: type: entity_reference_label - weight: 6 + weight: 5 region: left label: hidden settings: @@ -446,9 +387,9 @@ items: third_party_settings: { } field_topics: type: entity_reference_label - weight: 5 + weight: 4 region: left - label: hidden + label: visually_hidden settings: link: true third_party_settings: { } @@ -457,8 +398,6 @@ items: field_meta_tags: true links: true search_api_excerpt: true - _core: - default_config_hash: u9hFi5GI6LLnFCyw2M7JDw0SSDmlT2tpCHBVDYoBO7g - collection: '' name: core.entity_view_display.node.collection.teaser @@ -469,15 +408,6 @@ items: config: - core.entity_view_mode.node.teaser - field.field.node.collection.body - - field.field.node.collection.field_authors - - field.field.node.collection.field_body_paragraph - - field.field.node.collection.field_collection_items - - field.field.node.collection.field_collection_type - - field.field.node.collection.field_image - - field.field.node.collection.field_meta_tags - - field.field.node.collection.field_summary - - field.field.node.collection.field_tags - - field.field.node.collection.field_topics - node.type.collection module: - text @@ -501,45 +431,7 @@ items: third_party_settings: { } region: content hidden: - field_authors: true - field_body_paragraph: true - field_collection_items: true - field_collection_type: true - field_image: true - field_meta_tags: true - field_summary: true - field_tags: true - field_topics: true search_api_excerpt: true - _core: - default_config_hash: UOzCi2kjYaqcRKtMRkEhE6_Asdw7kUZCrcbT6o2frwU - - - collection: '' - name: core.entity_view_display.paragraph.drutopia_collection.default - data: - langcode: en - status: true - dependencies: - config: - - field.field.paragraph.drutopia_collection.field_items - - paragraphs.paragraphs_type.drutopia_collection - id: paragraph.drutopia_collection.default - targetEntityType: paragraph - bundle: drutopia_collection - mode: default - content: - field_items: - weight: 0 - label: above - settings: - link: true - third_party_settings: { } - type: entity_reference_label - region: content - hidden: - search_api_excerpt: true - _core: - default_config_hash: 3EjlY1iURckfqQFhAWC_mtd1guLuILhh2IlwrzRhzYI - collection: '' name: field.field.node.collection.body @@ -565,8 +457,6 @@ items: settings: display_summary: true field_type: text_with_summary - _core: - default_config_hash: WqgDhaPELkw6JGhrh7TfT43wKws4fg45OgEkunye7ss - collection: '' name: field.field.node.collection.field_authors @@ -599,69 +489,6 @@ items: auto_create: false auto_create_bundle: '' field_type: entity_reference - _core: - default_config_hash: OrTTW4_ECRhwCEGANjteWeZi18YWtx-oqSJtjtsnQfM - - - collection: '' - name: field.field.node.collection.field_body_paragraph - data: - langcode: en - status: true - dependencies: - config: - - field.storage.node.field_body_paragraph - - node.type.collection - - paragraphs.paragraphs_type.drutopia_collection - - paragraphs.paragraphs_type.image - - paragraphs.paragraphs_type.text - module: - - entity_reference_revisions - id: node.collection.field_body_paragraph - field_name: field_body_paragraph - entity_type: node - bundle: collection - label: 'Body paragraph' - description: '' - required: false - translatable: true - default_value: { } - default_value_callback: '' - settings: - handler: 'default:paragraph' - handler_settings: - negate: 0 - target_bundles: - drutopia_collection: drutopia_collection - image: image - text: text - target_bundles_drag_drop: - drutopia_collection: - enabled: true - weight: 9 - faq: - weight: 10 - enabled: false - file: - weight: 11 - enabled: false - image: - enabled: true - weight: 12 - slide: - weight: 13 - enabled: false - text: - enabled: true - weight: 14 - update: - weight: 15 - enabled: false - video: - weight: 16 - enabled: false - field_type: entity_reference_revisions - _core: - default_config_hash: gfZqYddYFY8po0Ek3xn59IJhLaQq9iVMUXKRzrhYMOU - collection: '' name: field.field.node.collection.field_collection_items @@ -690,8 +517,6 @@ items: display_name: entity_reference arguments: { } field_type: entity_reference - _core: - default_config_hash: 6X5yj9boH7NtcRbeF2H7cXLeNdjCfZY9ReiufRdXuXc - collection: '' name: field.field.node.collection.field_collection_type @@ -724,8 +549,6 @@ items: auto_create: false auto_create_bundle: '' field_type: entity_reference - _core: - default_config_hash: kC3_rOUozrdfvnh-qzpCz7MoI8HoyP1J6OM8cOKdKec - collection: '' name: field.field.node.collection.field_image @@ -767,8 +590,6 @@ items: handler: 'default:file' handler_settings: { } field_type: image - _core: - default_config_hash: zBDVKqvoMMh7BWNgskjQQbHyTDLFE8r96x1qWGUX7Zw - collection: '' name: field.field.node.collection.field_meta_tags @@ -793,8 +614,6 @@ items: default_value_callback: '' settings: { } field_type: metatag - _core: - default_config_hash: s5m_9i4ysGOa4EWQLPM8uXAthSHK1wub2Fvl69J6H88 - collection: '' name: field.field.node.collection.field_summary @@ -819,8 +638,6 @@ items: default_value_callback: '' settings: { } field_type: text_long - _core: - default_config_hash: 4VgNv6j__Zkf6FRVk20T510x6SpcboFHU5NtFipdQyc - collection: '' name: field.field.node.collection.field_tags @@ -853,8 +670,6 @@ items: auto_create: true auto_create_bundle: '' field_type: entity_reference - _core: - default_config_hash: rXf2ywn1NcjYQ8T6KyCPzRJ6Ajvk8fNa7BwM4uDdg1I - collection: '' name: field.field.node.collection.field_topics @@ -887,46 +702,6 @@ items: auto_create: false auto_create_bundle: '' field_type: entity_reference - _core: - default_config_hash: Pg-JRInG6Nx2HfzJT2lKOaq4x1Y4ZFE5SZM9dFzeGlg - - - collection: '' - name: field.field.paragraph.drutopia_collection.field_items - data: - langcode: en - status: true - dependencies: - config: - - field.storage.paragraph.field_items - - node.type.article - - node.type.blog - - node.type.people - - paragraphs.paragraphs_type.drutopia_collection - id: paragraph.drutopia_collection.field_items - field_name: field_items - entity_type: paragraph - bundle: drutopia_collection - label: Items - description: 'Select any other content on the site to display as a list of teasers by typing words from the title and looking for the autocompletion of the content you want in the collection. You can change the order after adding each item.' - required: true - translatable: false - default_value: { } - default_value_callback: '' - settings: - handler: 'default:node' - handler_settings: - target_bundles: - article: article - blog: blog - people: people - sort: - field: changed - direction: DESC - auto_create: false - auto_create_bundle: article - field_type: entity_reference - _core: - default_config_hash: 7DUUXZdsPh4mDm9mhYlDJz3claVAxXookJakBJhDocs - collection: '' name: field.storage.node.field_collection_items @@ -949,8 +724,6 @@ items: indexes: { } persist_with_no_fields: false custom_storage: false - _core: - default_config_hash: psnh1gqgVQvkgOeMy2UPZCmTlRAkEBYuBOi6jZGOvUc - collection: '' name: field.storage.node.field_collection_type @@ -974,33 +747,6 @@ items: indexes: { } persist_with_no_fields: false custom_storage: false - _core: - default_config_hash: RLkCTg6QDZQdy0j5eduNhF5sSLCi-dqmfp8o_JZAkA0 - - - collection: '' - name: field.storage.paragraph.field_items - data: - langcode: en - status: true - dependencies: - module: - - node - - paragraphs - id: paragraph.field_items - field_name: field_items - entity_type: paragraph - type: entity_reference - settings: - target_type: node - module: core - locked: false - cardinality: -1 - translatable: true - indexes: { } - persist_with_no_fields: false - custom_storage: false - _core: - default_config_hash: VnnPidg22ez5r9ylXvzs766yDC5mVWjS__wyXmq1yvU - collection: '' name: node.type.collection @@ -1022,239 +768,6 @@ items: new_revision: true preview_mode: 1 display_submitted: false - _core: - default_config_hash: stQdgWbQWDAjVwOeuvG1Ye8uI8OiGwWQ4sinbQPW2lI - - - collection: '' - name: paragraphs.paragraphs_type.drutopia_collection - data: - langcode: en - status: true - dependencies: { } - id: drutopia_collection - label: Collection - icon_uuid: null - description: 'Allows grouping referenced content together. For instance, an Issue collection could use collection paragraphs to group articles into three themes within that issue.' - behavior_plugins: { } - _core: - default_config_hash: xJxbh5L6gM8EZzAr1kp2OBNKKhv_5OE9anEo_btj2cA - - - collection: '' - name: pathauto.pattern.collection_type - data: - langcode: en - status: true - dependencies: - module: - - ctools - - taxonomy - id: collection_type - label: 'Collection type' - type: 'canonical_entities:taxonomy_term' - pattern: '[term:vocabulary]/[term:name]' - selection_criteria: - 4706378a-3a02-48d7-8672-d8313e9c20f3: - id: 'entity_bundle:taxonomy_term' - bundles: - article_type: collection_type - negate: false - context_mapping: - taxonomy_term: taxonomy_term - uuid: 4706378a-3a02-48d7-8672-d8313e9c20f3 - selection_logic: and - weight: -5 - relationships: { } - _core: - default_config_hash: 8ybgXD47lBYtq3zDwOhbr_pdGHwEQdDfLeUvvnBam5A - - - collection: '' - name: pathauto.pattern.node_collection - data: - langcode: en - status: true - dependencies: - module: - - node - id: node_collection - label: 'Node collection' - type: 'canonical_entities:node' - pattern: 'collections/[node:title]' - selection_criteria: - 7e8d81ea-6e4f-4fee-a1ad-6f1621656038: - id: 'entity_bundle:node' - bundles: - article: collection - negate: false - context_mapping: - node: node - uuid: 7e8d81ea-6e4f-4fee-a1ad-6f1621656038 - selection_logic: and - weight: -5 - relationships: { } - _core: - default_config_hash: ofYqGwKW2yCiN6Z7YvvlFH4XrjfWFRTzDLmpKsnyoF4 - - - collection: '' - name: search_api.index.collection - data: - langcode: en - status: true - dependencies: - module: - - node - - user - - search_api - config: - - field.storage.node.field_authors - - field.storage.node.field_collection_type - - field.storage.node.field_summary - - field.storage.node.field_tags - - field.storage.node.field_topics - - search_api.server.database - - core.entity_view_mode.node.search_index - id: collection - name: Collection - description: 'An index for the collection content type.' - read_only: false - field_settings: - changed: - label: Changed - datasource_id: 'entity:node' - property_path: changed - type: date - dependencies: - module: - - node - created: - label: 'Authored on' - datasource_id: 'entity:node' - property_path: created - type: date - dependencies: - module: - - node - field_authors: - label: Authors - datasource_id: 'entity:node' - property_path: field_authors - type: integer - dependencies: - config: - - field.storage.node.field_authors - field_collection_type: - label: 'Collection type' - datasource_id: 'entity:node' - property_path: field_collection_type - type: integer - dependencies: - config: - - field.storage.node.field_collection_type - field_summary: - label: Summary - datasource_id: 'entity:node' - property_path: field_summary - type: text - dependencies: - config: - - field.storage.node.field_summary - field_tags: - label: Tags - datasource_id: 'entity:node' - property_path: field_tags - type: integer - dependencies: - config: - - field.storage.node.field_tags - field_topics: - label: Topics - datasource_id: 'entity:node' - property_path: field_topics - type: integer - dependencies: - config: - - field.storage.node.field_topics - name: - label: 'Authored by » User » Name' - datasource_id: 'entity:node' - property_path: 'uid:entity:name' - type: string - dependencies: - module: - - node - - user - - user - promote: - label: 'Promoted to front page' - datasource_id: 'entity:node' - property_path: promote - type: boolean - dependencies: - module: - - node - rendered_item: - label: 'Rendered HTML output' - property_path: rendered_item - type: text - configuration: - roles: - anonymous: anonymous - view_mode: - 'entity:node': - collection: search_index - status: - label: Published - datasource_id: 'entity:node' - property_path: status - type: boolean - dependencies: - module: - - node - sticky: - label: 'Sticky at top of lists' - datasource_id: 'entity:node' - property_path: sticky - type: boolean - dependencies: - module: - - node - title: - label: Title - datasource_id: 'entity:node' - property_path: title - type: string - dependencies: - module: - - node - uid: - label: 'Authored by' - datasource_id: 'entity:node' - property_path: uid - type: integer - dependencies: - module: - - node - datasource_settings: - 'entity:node': - bundles: - default: false - selected: - - collection - languages: - default: true - selected: { } - processor_settings: - add_url: { } - aggregated_field: { } - rendered_item: { } - tracker_settings: - default: - indexing_order: fifo - options: - index_directly: true - cron_limit: 50 - server: database - _core: - default_config_hash: _QVCLp7W8HxV52MEnKkYc2bX5i3NFf4ejVOfuTApG9g - collection: '' name: taxonomy.vocabulary.collection_type @@ -1266,241 +779,6 @@ items: vid: collection_type description: 'For categorizing collections on aspects unique to collections.' weight: 0 - _core: - default_config_hash: NRvgGmvJBASvwlaRtyOhK0ur-e-b02hS5hSe89iTTrc - - - collection: '' - name: views.view.collection - data: - langcode: en - status: true - dependencies: - config: - - search_api.index.collection - - system.menu.main - module: - - search_api - - user - id: collection - label: Collection - module: views - description: 'Various displays for the collection content type.' - tag: '' - base_table: search_api_index_collection - base_field: search_api_id - core: 8.x - display: - default: - display_plugin: default - id: default - display_title: Master - position: 0 - display_options: - access: - type: perm - options: - perm: 'access content' - cache: - type: none - options: { } - query: - type: views_query - options: - bypass_access: false - skip_access: false - 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 - pager: - type: mini - options: - items_per_page: 12 - offset: 0 - id: 0 - total_pages: null - 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 - tags: - previous: ‹‹ - next: ›› - style: - type: default - options: - row_class: '' - default_row_class: false - uses_fields: false - row: - type: search_api - options: - view_modes: - 'entity:node': - collection: card - fields: - rendered_item: - table: search_api_index_collection - field: rendered_item - id: rendered_item - entity_type: null - entity_field: null - plugin_id: search_api - relationship: none - group_type: group - admin_label: '' - label: '' - 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 - link_to_item: false - use_highlighting: false - multi_type: separator - multi_separator: ', ' - filters: { } - sorts: - sticky: - id: sticky - table: search_api_index_collection - field: sticky - relationship: none - group_type: group - admin_label: '' - order: DESC - exposed: false - expose: - label: '' - plugin_id: search_api - created: - id: created - table: search_api_index_collection - field: created - relationship: none - group_type: group - admin_label: '' - order: DESC - exposed: false - expose: - label: '' - plugin_id: search_api - title: Collections - header: { } - footer: { } - empty: { } - relationships: { } - arguments: { } - display_extenders: { } - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - - user.permissions - tags: { } - block_promoted: - display_plugin: block - id: block_promoted - display_title: 'Block Promoted' - position: 2 - display_options: - display_extenders: { } - title: Latest - defaults: - title: false - style: true - row: true - pager: false - link_display: false - link_url: false - pager: - type: some - options: - items_per_page: 4 - offset: 0 - display_description: '' - block_description: 'Promoted collections' - link_display: page_1 - link_url: '' - block_hide_empty: true - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - user.permissions - tags: { } - page_listing: - display_plugin: page - id: page_listing - display_title: Page - position: 1 - display_options: - display_extenders: { } - path: collections - menu: - type: normal - title: News - description: 'Keep up to date.' - expanded: false - parent: 'menu_link_content:3f594be0-bb0f-4b30-923e-e7984983a0fd' - weight: 0 - context: '0' - menu_name: main - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url.query_args - - user.permissions - tags: { } - _core: - default_config_hash: f8uoIe_CmLkBA5LAlknvx3pT4QCs26VgjFam0s8Wz68 - collection: '' name: views.view.collection_select_content @@ -1911,5 +1189,3 @@ items: - user.permissions tags: - 'config:field.storage.node.field_summary' - _core: - default_config_hash: v-S3QqIVn35UujN6yge8GibCgD3sPt76Ef-IyBL6zDU diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_comment.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_comment.yml index 990ca1f..5061550 100644 --- a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_comment.yml +++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_comment.yml @@ -20,8 +20,6 @@ items: label: 'Default comments' target_entity_type_id: node description: 'Allows commenting on content' - _core: - default_config_hash: bqZsN31T2n0UjcbyCpOPi9D2iO0sAOHR7FnEs9qMvaA - collection: '' name: core.entity_form_display.comment.comment.default @@ -59,8 +57,6 @@ items: third_party_settings: { } region: content hidden: { } - _core: - default_config_hash: i9gg03KbztdQ0LmR6WLr5smEj5TBKU12U2X8ZlSpKJA - collection: '' name: core.entity_view_display.comment.comment.default @@ -88,10 +84,7 @@ items: links: weight: 100 region: content - hidden: - search_api_excerpt: true - _core: - default_config_hash: f0x0ePQCmvxjco4g7XRIUYd8t7rq3uUvhvzJqtnyStg + hidden: { } - collection: '' name: field.field.comment.comment.comment_body @@ -116,8 +109,6 @@ items: default_value_callback: '' settings: { } field_type: text_long - _core: - default_config_hash: TmAKjNrJ7RR60YpqvJq_QqEewYe_S8Kd23n8VRCqiWs - collection: '' name: field.storage.node.comment @@ -141,8 +132,6 @@ items: indexes: { } persist_with_no_fields: false custom_storage: false - _core: - default_config_hash: ktCna9xmWvYZIUfOCUyDQvedn5RtnS4CRmEIwNmvYjc - collection: '' name: rdf.mapping.comment.comment @@ -180,5 +169,3 @@ items: properties: - 'schema:author' mapping_type: rel - _core: - default_config_hash: uETe6XupRGKDForx2MpY0pMOEu6CzGgdCAZZOKkbgmk diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_core.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_core.yml index c9d8513..5387580 100644 --- a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_core.yml +++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_core.yml @@ -19,8 +19,6 @@ items: id: administer_site_information label: 'Administer site information' route: system.site_information_settings - _core: - default_config_hash: 4SOCGLTpCWgga4_Ohxap04eJSop6vQL-h2XC4VbDIPs - collection: '' name: config_perms.custom_perms_entity.edit_contact_form @@ -31,8 +29,6 @@ items: id: edit_contact_form label: 'Edit contact form' route: "entity.contact_form.collection\r\nentity.contact_form.edit_form" - _core: - default_config_hash: eJWhGhpRfmEhpk2aZAe8424DHGi6A4onjpxfouE4eWk - collection: '' name: core.date_format.month_day_year @@ -44,495 +40,6 @@ items: label: 'Month day year' locked: false pattern: 'F j, Y' - _core: - default_config_hash: GgGjm7gBYI1AY61q7R4O3PkFlAGcgMUBwG4jKZQKtLc - - - collection: '' - name: core.entity_form_display.media.audio.default - data: - langcode: en - status: true - dependencies: - config: - - field.field.media.audio.field_media_audio_file - - media.type.audio - module: - - file - - path - id: media.audio.default - targetEntityType: media - bundle: audio - mode: default - content: - created: - type: datetime_timestamp - weight: 10 - region: content - settings: { } - third_party_settings: { } - field_media_audio_file: - type: file_generic - weight: 0 - region: content - settings: - progress_indicator: throbber - third_party_settings: { } - path: - type: path - weight: 30 - region: content - settings: { } - third_party_settings: { } - status: - type: boolean_checkbox - weight: 100 - region: content - settings: - display_label: true - third_party_settings: { } - uid: - type: entity_reference_autocomplete - weight: 5 - region: content - settings: - match_operator: CONTAINS - match_limit: 10 - size: 60 - placeholder: '' - third_party_settings: { } - hidden: - name: true - _core: - default_config_hash: G2_SKH3jmI9FQeXSUxo3KgQqiyF1hPDEkc7-3-rCSbc - - - collection: '' - name: core.entity_form_display.media.audio.media_library - data: - langcode: en - status: true - dependencies: - config: - - core.entity_form_mode.media.media_library - - field.field.media.audio.field_media_audio_file - - media.type.audio - id: media.audio.media_library - targetEntityType: media - bundle: audio - mode: media_library - content: { } - hidden: - created: true - field_media_audio_file: true - name: true - path: true - status: true - uid: true - _core: - default_config_hash: 28vwMIYtvyjPcD4RyciZXIztxtZgmuWRCNgYemr_SZE - - - collection: '' - name: core.entity_form_display.media.document.default - data: - langcode: en - status: true - dependencies: - config: - - field.field.media.document.field_media_document - - media.type.document - module: - - file - - path - id: media.document.default - targetEntityType: media - bundle: document - mode: default - content: - created: - type: datetime_timestamp - weight: 10 - region: content - settings: { } - third_party_settings: { } - field_media_document: - type: file_generic - weight: 0 - region: content - settings: - progress_indicator: throbber - third_party_settings: { } - path: - type: path - weight: 30 - region: content - settings: { } - third_party_settings: { } - status: - type: boolean_checkbox - weight: 100 - region: content - settings: - display_label: true - third_party_settings: { } - uid: - type: entity_reference_autocomplete - weight: 5 - region: content - settings: - match_operator: CONTAINS - match_limit: 10 - size: 60 - placeholder: '' - third_party_settings: { } - hidden: - name: true - _core: - default_config_hash: j3PwHXJrIDYYTMBtwbGTChh6m3fzbh9KJyHZ4wJdb1U - - - collection: '' - name: core.entity_form_display.media.document.media_library - data: - langcode: en - status: true - dependencies: - config: - - core.entity_form_mode.media.media_library - - field.field.media.document.field_media_document - - media.type.document - id: media.document.media_library - targetEntityType: media - bundle: document - mode: media_library - content: { } - hidden: - created: true - field_media_document: true - name: true - path: true - status: true - uid: true - _core: - default_config_hash: dcpfpqyLXOSGpulacMAJW3H-G34_LeNsjdfxd1_oCfY - - - collection: '' - name: core.entity_form_display.media.image.default - data: - langcode: en - status: true - dependencies: - config: - - field.field.media.image.field_media_image - - image.style.media_library - - media.type.image - module: - - image_widget_crop - - path - id: media.image.default - targetEntityType: media - bundle: image - mode: default - content: - created: - type: datetime_timestamp - weight: 10 - region: content - settings: { } - third_party_settings: { } - field_media_image: - type: image_widget_crop - weight: 0 - region: content - settings: - progress_indicator: throbber - preview_image_style: media_library - crop_preview_image_style: crop_thumbnail - crop_list: - - extra_wide_rectangle - - wide_rectangle - crop_types_required: { } - warn_multiple_usages: true - show_crop_area: false - show_default_crop: true - third_party_settings: { } - path: - type: path - weight: 30 - region: content - settings: { } - third_party_settings: { } - status: - type: boolean_checkbox - weight: 100 - region: content - settings: - display_label: true - third_party_settings: { } - uid: - type: entity_reference_autocomplete - weight: 5 - region: content - settings: - match_operator: CONTAINS - match_limit: 10 - size: 60 - placeholder: '' - third_party_settings: { } - hidden: - name: true - _core: - default_config_hash: v5qWuH4sE0OlCxD1-nK7_3VpLAN3Doi1y05Hvl-7Zwk - - - collection: '' - name: core.entity_form_display.media.image.main - data: - langcode: en - status: true - dependencies: - config: - - core.entity_form_mode.media.main - - field.field.media.image.field_media_image - - image.style.media_library - - media.type.image - module: - - image_widget_crop - id: media.image.main - targetEntityType: media - bundle: image - mode: main - content: - field_media_image: - type: image_widget_crop - weight: 0 - region: content - settings: - progress_indicator: throbber - preview_image_style: media_library - crop_preview_image_style: crop_thumbnail - crop_list: - - extra_wide_rectangle - - wide_rectangle - crop_types_required: { } - warn_multiple_usages: true - show_crop_area: false - show_default_crop: true - third_party_settings: { } - hidden: - created: true - name: true - path: true - status: true - uid: true - _core: - default_config_hash: 3U-oqNeYCjMf0Ut-MGSnlAVCChG9hh-CcFHBjll6rco - - - collection: '' - name: core.entity_form_display.media.image.media_library - data: - langcode: en - status: true - dependencies: - config: - - core.entity_form_mode.media.media_library - - field.field.media.image.field_media_image - - image.style.media_library - - media.type.image - module: - - image_widget_crop - id: media.image.media_library - targetEntityType: media - bundle: image - mode: media_library - content: - field_media_image: - type: image_widget_crop - weight: 1 - region: content - settings: - progress_indicator: throbber - preview_image_style: media_library - crop_preview_image_style: crop_thumbnail - crop_list: - - extra_wide_rectangle - - wide_rectangle - crop_types_required: { } - warn_multiple_usages: true - show_crop_area: false - show_default_crop: true - third_party_settings: { } - hidden: - created: true - name: true - path: true - status: true - uid: true - _core: - default_config_hash: wIK8DFl2IN-h0ibfi0dIjMcjCErV1qHMOTfENAHs7qw - - - collection: '' - name: core.entity_form_display.media.remote_video.default - data: - langcode: en - status: true - dependencies: - config: - - field.field.media.remote_video.field_media_oembed_video - - media.type.remote_video - module: - - media - - path - id: media.remote_video.default - targetEntityType: media - bundle: remote_video - mode: default - content: - created: - type: datetime_timestamp - weight: 10 - region: content - settings: { } - third_party_settings: { } - field_media_oembed_video: - type: oembed_textfield - weight: 0 - region: content - settings: - size: 60 - placeholder: '' - third_party_settings: { } - path: - type: path - weight: 30 - region: content - settings: { } - third_party_settings: { } - status: - type: boolean_checkbox - weight: 100 - region: content - settings: - display_label: true - third_party_settings: { } - uid: - type: entity_reference_autocomplete - weight: 5 - region: content - settings: - match_operator: CONTAINS - match_limit: 10 - size: 60 - placeholder: '' - third_party_settings: { } - hidden: - name: true - _core: - default_config_hash: pM8mGlwfpvfG_y5tZn0lGAXFLXz2_yKkL7MvWZsRqdA - - - collection: '' - name: core.entity_form_display.media.remote_video.media_library - data: - langcode: en - status: true - dependencies: - config: - - core.entity_form_mode.media.media_library - - field.field.media.remote_video.field_media_oembed_video - - media.type.remote_video - id: media.remote_video.media_library - targetEntityType: media - bundle: remote_video - mode: media_library - content: { } - hidden: - created: true - field_media_oembed_video: true - name: true - path: true - status: true - uid: true - _core: - default_config_hash: TBgPW-uaXRaICBwLaVc16rXpRiLSknDIdF9q0XL7qso - - - collection: '' - name: core.entity_form_display.media.video.default - data: - langcode: en - status: true - dependencies: - config: - - field.field.media.video.field_media_video_file - - media.type.video - module: - - file - - path - id: media.video.default - targetEntityType: media - bundle: video - mode: default - content: - created: - type: datetime_timestamp - weight: 10 - region: content - settings: { } - third_party_settings: { } - field_media_video_file: - type: file_generic - weight: 0 - region: content - settings: - progress_indicator: throbber - third_party_settings: { } - path: - type: path - weight: 30 - region: content - settings: { } - third_party_settings: { } - status: - type: boolean_checkbox - weight: 100 - region: content - settings: - display_label: true - third_party_settings: { } - uid: - type: entity_reference_autocomplete - weight: 5 - region: content - settings: - match_operator: CONTAINS - match_limit: 10 - size: 60 - placeholder: '' - third_party_settings: { } - hidden: - name: true - _core: - default_config_hash: 0kIIaDTt6dixXy8TZkat2MNGZJ6vkRG8TaBWTy3E1bM - - - collection: '' - name: core.entity_form_display.media.video.media_library - data: - langcode: en - status: true - dependencies: - config: - - core.entity_form_mode.media.media_library - - field.field.media.video.field_media_video_file - - media.type.video - id: media.video.media_library - targetEntityType: media - bundle: video - mode: media_library - content: { } - hidden: - created: true - field_media_video_file: true - name: true - path: true - status: true - uid: true - _core: - default_config_hash: kGv8YsopqHvzTzb7QTINWcv0fnNa5ZDQyZxpOQR2vro - collection: '' name: core.entity_form_display.paragraph.faq.default @@ -568,8 +75,6 @@ items: created: true status: true uid: true - _core: - default_config_hash: UR3bECoQY6FKRLCCFWjqe5mQ_ZF5wYv8l8dFkrmWYE4 - collection: '' name: core.entity_form_display.paragraph.file.default @@ -598,8 +103,6 @@ items: created: true status: true uid: true - _core: - default_config_hash: 47c_p3_AKkkCabhYVnOWmPVzSp8BmBg5ERP84VO4EM0 - collection: '' name: core.entity_form_display.paragraph.image.default @@ -609,34 +112,27 @@ items: dependencies: config: - field.field.paragraph.image.field_image - - field.field.paragraph.image.field_media_image + - image.style.thumbnail - paragraphs.paragraphs_type.image module: - - media_library_media_modify + - image id: paragraph.image.default targetEntityType: paragraph bundle: image mode: default content: - field_media_image: - type: media_library_media_modify_widget + field_image: weight: 0 - region: content settings: - media_types: { } - form_mode: default - check_selected: false - replace_checkbox_by_order_indicator: false - multi_edit_on_create: false - no_edit_on_create: false + progress_indicator: throbber + preview_image_style: thumbnail third_party_settings: { } + type: image_image + region: content hidden: created: true - field_image: true status: true uid: true - _core: - default_config_hash: mCiuLvYrXsWNGIOEjtrmrlLYbT39UBsp3wt4xoS0ycg - collection: '' name: core.entity_form_display.paragraph.slide.default @@ -647,53 +143,46 @@ items: config: - field.field.paragraph.slide.field_image - field.field.paragraph.slide.field_link - - field.field.paragraph.slide.field_media_image - field.field.paragraph.slide.field_text + - image.style.thumbnail - paragraphs.paragraphs_type.slide module: + - image - link - - media_library_media_modify - text id: paragraph.slide.default targetEntityType: paragraph bundle: slide mode: default content: - field_link: - type: link_default - weight: 1 + field_image: + weight: 5 + settings: + progress_indicator: throbber + preview_image_style: thumbnail + third_party_settings: { } + type: image_image region: content + field_link: + weight: 4 settings: placeholder_url: '' placeholder_title: '' third_party_settings: { } - field_media_image: - type: media_library_media_modify_widget - weight: 0 + type: link_default region: content - settings: - media_types: { } - form_mode: default - check_selected: false - replace_checkbox_by_order_indicator: false - multi_edit_on_create: false - no_edit_on_create: false - third_party_settings: { } field_text: - type: text_textarea - weight: 2 - region: content + weight: 6 settings: rows: 5 placeholder: '' third_party_settings: { } + type: text_textarea + region: content hidden: created: true - field_image: true status: true uid: true - _core: - default_config_hash: pZma3NRWTI-EBfju5Mh1EayjayIjqdB5jOIrZGvNfa8 - collection: '' name: core.entity_form_display.paragraph.text.default @@ -723,8 +212,6 @@ items: created: true status: true uid: true - _core: - default_config_hash: HcHUk34p8VqAF8IVnIOT1SpvhP1C7UmNlFz8jHIDwE0 - collection: '' name: core.entity_form_display.paragraph.update.default @@ -762,8 +249,6 @@ items: created: true status: true uid: true - _core: - default_config_hash: GXL-mQnJwIkuHcYPg2aEDI38w0YZMH6xFa0CJ_PGtis - collection: '' name: core.entity_form_display.paragraph.video.default @@ -791,469 +276,6 @@ items: created: true status: true uid: true - _core: - default_config_hash: 06c7Ahwb8yJby6MRemnEP6p683BbgZCUPnF6WE1ni50 - - - collection: '' - name: core.entity_form_mode.media.main - data: - langcode: en - status: true - dependencies: - module: - - media - id: media.main - label: Main - targetEntityType: media - cache: true - _core: - default_config_hash: ENk37W6NnKGWq84DwzIkfEhYQv_afN8gHHugUQi7jjs - - - collection: '' - name: core.entity_view_display.media.audio.default - data: - langcode: en - status: true - dependencies: - config: - - field.field.media.audio.field_media_audio_file - - media.type.audio - module: - - file - id: media.audio.default - targetEntityType: media - bundle: audio - mode: default - content: - field_media_audio_file: - type: file_audio - label: hidden - settings: - controls: true - autoplay: false - loop: false - multiple_file_display_type: tags - third_party_settings: { } - weight: 0 - region: content - hidden: - created: true - name: true - search_api_excerpt: true - thumbnail: true - uid: true - _core: - default_config_hash: rfAE0z_NC8oZIIWcz_BI71xUCTEXycqq7siaMS2E2M0 - - - collection: '' - name: core.entity_view_display.media.audio.media_library - data: - langcode: en - status: true - dependencies: - config: - - core.entity_view_mode.media.media_library - - field.field.media.audio.field_media_audio_file - - image.style.thumbnail - - media.type.audio - module: - - image - id: media.audio.media_library - targetEntityType: media - bundle: audio - mode: media_library - content: - thumbnail: - type: image - label: hidden - settings: - image_style: thumbnail - image_link: '' - image_loading: - attribute: lazy - third_party_settings: { } - weight: 0 - region: content - hidden: - created: true - field_media_audio_file: true - name: true - search_api_excerpt: true - uid: true - _core: - default_config_hash: 7DNpi1Sl1MWQhNyyLfTpd-yIhueyFZAcL2Snbr2sTUI - - - collection: '' - name: core.entity_view_display.media.document.default - data: - langcode: en - status: true - dependencies: - config: - - field.field.media.document.field_media_document - - media.type.document - module: - - file - id: media.document.default - targetEntityType: media - bundle: document - mode: default - content: - field_media_document: - type: file_default - label: hidden - settings: { } - third_party_settings: { } - weight: 1 - region: content - hidden: - created: true - name: true - search_api_excerpt: true - thumbnail: true - uid: true - _core: - default_config_hash: WbV90lV3EUgETbXm-h7gUppdt-ECLhXrHI5_l92Md-8 - - - collection: '' - name: core.entity_view_display.media.document.media_library - data: - langcode: en - status: true - dependencies: - config: - - core.entity_view_mode.media.media_library - - field.field.media.document.field_media_document - - image.style.thumbnail - - media.type.document - module: - - image - id: media.document.media_library - targetEntityType: media - bundle: document - mode: media_library - content: - thumbnail: - type: image - label: hidden - settings: - image_style: thumbnail - image_link: '' - image_loading: - attribute: lazy - third_party_settings: { } - weight: 0 - region: content - hidden: - created: true - field_media_document: true - name: true - search_api_excerpt: true - uid: true - _core: - default_config_hash: QElKo67rYqcbExc-UzpEXj_f14eAMPr57XAF5Pbt_iY - - - collection: '' - name: core.entity_view_display.media.image.default - data: - langcode: en - status: true - dependencies: - config: - - field.field.media.image.field_media_image - - image.style.large - - media.type.image - module: - - image - id: media.image.default - targetEntityType: media - bundle: image - mode: default - content: - field_media_image: - type: image - label: hidden - settings: - image_link: '' - image_style: large - image_loading: - attribute: lazy - third_party_settings: { } - weight: 1 - region: content - hidden: - created: true - name: true - search_api_excerpt: true - thumbnail: true - uid: true - _core: - default_config_hash: O6cONwdUd3G9aEefXjJt9-jzCgj-UeIbUVr70hc8L7Y - - - collection: '' - name: core.entity_view_display.media.image.media_library - data: - langcode: en - status: true - dependencies: - config: - - core.entity_view_mode.media.media_library - - field.field.media.image.field_media_image - - image.style.medium - - media.type.image - module: - - image - id: media.image.media_library - targetEntityType: media - bundle: image - mode: media_library - content: - thumbnail: - type: image - label: hidden - settings: - image_style: medium - image_link: '' - image_loading: - attribute: lazy - third_party_settings: { } - weight: 0 - region: content - hidden: - created: true - field_media_image: true - name: true - search_api_excerpt: true - uid: true - _core: - default_config_hash: YMZYbnh33BQJRLbrQ3jWBetF1pUdG9gOA7dGUBoiDeg - - - collection: '' - name: core.entity_view_display.media.image.narrow - data: - langcode: en - status: true - dependencies: - config: - - core.entity_view_mode.media.narrow - - field.field.media.image.field_media_image - - media.type.image - - responsive_image.styles.narrow - module: - - responsive_image - id: media.image.narrow - targetEntityType: media - bundle: image - mode: narrow - content: - field_media_image: - type: responsive_image - label: hidden - settings: - responsive_image_style: narrow - image_link: '' - image_loading: - attribute: lazy - third_party_settings: { } - weight: 1 - region: content - hidden: - created: true - name: true - search_api_excerpt: true - thumbnail: true - uid: true - _core: - default_config_hash: jqdouSPdlMuhGbF2hOxwtaBMZy190ZRvQOIYFGk-P9I - - - collection: '' - name: core.entity_view_display.media.image.wide - data: - langcode: en - status: true - dependencies: - config: - - core.entity_view_mode.media.wide - - field.field.media.image.field_media_image - - media.type.image - - responsive_image.styles.drutopia_main - module: - - responsive_image - id: media.image.wide - targetEntityType: media - bundle: image - mode: wide - content: - field_media_image: - type: responsive_image - label: hidden - settings: - responsive_image_style: drutopia_extra_wide - image_link: '' - image_loading: - attribute: eager - third_party_settings: { } - weight: 1 - region: content - hidden: - created: true - name: true - search_api_excerpt: true - thumbnail: true - uid: true - _core: - default_config_hash: L-tvHNhWMxmlrY5QcpYWXhODjMwypFqXoEXNSroi5j8 - - - collection: '' - name: core.entity_view_display.media.remote_video.default - data: - langcode: en - status: true - dependencies: - config: - - field.field.media.remote_video.field_media_oembed_video - - media.type.remote_video - module: - - media - id: media.remote_video.default - targetEntityType: media - bundle: remote_video - mode: default - content: - field_media_oembed_video: - type: oembed - label: hidden - settings: - max_width: 0 - max_height: 0 - loading: - attribute: lazy - third_party_settings: { } - weight: 0 - region: content - hidden: - created: true - name: true - search_api_excerpt: true - thumbnail: true - uid: true - _core: - default_config_hash: z8VkL4rSXlcRRvvZGTQYRJ8CVzOKwsK4z-2LusSkO5Q - - - collection: '' - name: core.entity_view_display.media.remote_video.media_library - data: - langcode: en - status: true - dependencies: - config: - - core.entity_view_mode.media.media_library - - field.field.media.remote_video.field_media_oembed_video - - image.style.medium - - media.type.remote_video - module: - - image - id: media.remote_video.media_library - targetEntityType: media - bundle: remote_video - mode: media_library - content: - thumbnail: - type: image - label: hidden - settings: - image_style: medium - image_link: '' - image_loading: - attribute: lazy - third_party_settings: { } - weight: 0 - region: content - hidden: - created: true - field_media_oembed_video: true - name: true - search_api_excerpt: true - uid: true - _core: - default_config_hash: V6aNSetHlDgDfn65BhxM6lScmnrnL0aBxkTU9va5GgU - - - collection: '' - name: core.entity_view_display.media.video.default - data: - langcode: en - status: true - dependencies: - config: - - field.field.media.video.field_media_video_file - - media.type.video - module: - - file - id: media.video.default - targetEntityType: media - bundle: video - mode: default - content: - field_media_video_file: - type: file_video - label: hidden - settings: - controls: true - autoplay: false - loop: false - multiple_file_display_type: tags - muted: false - width: 640 - height: 480 - third_party_settings: { } - weight: 0 - region: content - hidden: - created: true - name: true - search_api_excerpt: true - thumbnail: true - uid: true - _core: - default_config_hash: j4MJgDdEXztLGlE1HOfShdrBXLbbJRWHxayzF0V9R4A - - - collection: '' - name: core.entity_view_display.media.video.media_library - data: - langcode: en - status: true - dependencies: - config: - - core.entity_view_mode.media.media_library - - field.field.media.video.field_media_video_file - - image.style.thumbnail - - media.type.video - module: - - image - id: media.video.media_library - targetEntityType: media - bundle: video - mode: media_library - content: - thumbnail: - type: image - label: hidden - settings: - image_style: thumbnail - image_link: '' - image_loading: - attribute: lazy - third_party_settings: { } - weight: 0 - region: content - hidden: - created: true - field_media_video_file: true - name: true - search_api_excerpt: true - uid: true - _core: - default_config_hash: ra9pCZSNfC2E0v0rxibirEcUAgp79s6oke7osDjpst0 - collection: '' name: core.entity_view_display.paragraph.faq.default @@ -1274,7 +296,7 @@ items: content: field_faq: weight: 0 - label: hidden + label: visually_hidden settings: active: null heightStyle: auto @@ -1288,10 +310,7 @@ items: ds_limit: '' type: faqfield_accordion region: content - hidden: - search_api_excerpt: true - _core: - default_config_hash: OjvNYYHOUtgOHQRicWbzhlQmBYeQgpmFXmi-wGpCBO4 + hidden: { } - collection: '' name: core.entity_view_display.paragraph.file.default @@ -1316,10 +335,7 @@ items: third_party_settings: { } type: file_default region: content - hidden: - search_api_excerpt: true - _core: - default_config_hash: 7APNi5gpaAg2_8CMsnLPZDur8I52PYdXwRHzYO3SLbg + hidden: { } - collection: '' name: core.entity_view_display.paragraph.image.default @@ -1329,32 +345,25 @@ items: dependencies: config: - field.field.paragraph.image.field_image - - field.field.paragraph.image.field_media_image - image.style.large - paragraphs.paragraphs_type.image module: - - media + - image id: paragraph.image.default targetEntityType: paragraph bundle: image mode: default content: - field_media_image: - type: media_thumbnail + field_image: + weight: 0 label: hidden settings: - image_link: '' image_style: large - image_loading: - attribute: lazy + image_link: '' third_party_settings: { } - weight: 0 + type: image region: content - hidden: - field_image: true - search_api_excerpt: true - _core: - default_config_hash: EZcpSrf0LkFkRJ6caGJtQaQJB7fbzzVNOjOBrjV2QW0 + hidden: { } - collection: '' name: core.entity_view_display.paragraph.slide.columnar @@ -1366,21 +375,30 @@ items: - core.entity_view_mode.paragraph.columnar - field.field.paragraph.slide.field_image - field.field.paragraph.slide.field_link - - field.field.paragraph.slide.field_media_image - field.field.paragraph.slide.field_text - paragraphs.paragraphs_type.slide + - responsive_image.styles.narrow module: - link - - media_responsive_thumbnail + - responsive_image - text id: paragraph.slide.columnar targetEntityType: paragraph bundle: slide mode: columnar content: + field_image: + weight: 0 + label: visually_hidden + settings: + responsive_image_style: narrow + image_link: '' + third_party_settings: { } + type: responsive_image + region: content field_link: - type: link - label: hidden + weight: 1 + label: visually_hidden settings: trim_length: 80 url_only: false @@ -1388,31 +406,16 @@ items: rel: '' target: '' third_party_settings: { } - weight: 1 - region: content - field_media_image: - type: media_responsive_thumbnail - label: hidden - settings: - responsive_image_style: '' - image_link: '' - image_loading: - attribute: lazy - third_party_settings: { } - weight: 0 + type: link region: content field_text: - type: text_default - label: hidden + weight: 2 + label: visually_hidden settings: { } third_party_settings: { } - weight: 2 + type: text_default region: content - hidden: - field_image: true - search_api_excerpt: true - _core: - default_config_hash: 3DuBaTqp1Siiz3TRwDjaqP9OEA1aRgFjQzPVAPf5WSM + hidden: { } - collection: '' name: core.entity_view_display.paragraph.slide.default @@ -1423,22 +426,29 @@ items: config: - field.field.paragraph.slide.field_image - field.field.paragraph.slide.field_link - - field.field.paragraph.slide.field_media_image - field.field.paragraph.slide.field_text + - image.style.focal_point_2600x1300 - paragraphs.paragraphs_type.slide - - responsive_image.styles.drutopia_main module: + - image - link - - media_responsive_thumbnail - text id: paragraph.slide.default targetEntityType: paragraph bundle: slide mode: default content: + field_image: + weight: 0 + label: visually_hidden + settings: + image_style: focal_point_2600x1300 + third_party_settings: { } + type: image_url + region: content field_link: - type: link - label: hidden + weight: 2 + label: visually_hidden settings: trim_length: 80 url_only: false @@ -1446,31 +456,16 @@ items: rel: '' target: '' third_party_settings: { } - weight: 2 - region: content - field_media_image: - type: media_responsive_thumbnail - label: hidden - settings: - responsive_image_style: drutopia_main - image_link: '' - image_loading: - attribute: lazy - third_party_settings: { } - weight: 0 + type: link region: content field_text: - type: text_default - label: hidden + weight: 1 + label: visually_hidden settings: { } third_party_settings: { } - weight: 1 + type: text_default region: content - hidden: - field_image: true - search_api_excerpt: true - _core: - default_config_hash: ohH3LV4HCmywa9RKlBnqXM7-CltOakwn08h2XRzlE5A + hidden: { } - collection: '' name: core.entity_view_display.paragraph.text.default @@ -1495,10 +490,7 @@ items: third_party_settings: { } type: text_default region: content - hidden: - search_api_excerpt: true - _core: - default_config_hash: UqJ8MrV9NzsI3Y7YOmxgPliS0FlCUFjBiUNdxx8CZ9g + hidden: { } - collection: '' name: core.entity_view_display.paragraph.update.default @@ -1557,10 +549,7 @@ items: third_party_settings: { } type: datetime_default region: left - hidden: - search_api_excerpt: true - _core: - default_config_hash: qDNGlVh5FS_YT6M5ZIb3A2fCPt6vUmXfKXlTJxcL1QM + hidden: { } - collection: '' name: core.entity_view_display.paragraph.video.default @@ -1580,7 +569,7 @@ items: content: field_video_embed: weight: 0 - label: hidden + label: visually_hidden settings: responsive: true width: 854 @@ -1589,10 +578,7 @@ items: third_party_settings: { } type: video_embed_field_video region: content - hidden: - search_api_excerpt: true - _core: - default_config_hash: 7N7ip2NAorA5LEffe4X0RaQB3n3Nh9af-V2A7DH-YGo + hidden: { } - collection: '' name: core.entity_view_mode.block_content.columnar @@ -1606,38 +592,6 @@ items: label: Columnar targetEntityType: block_content cache: true - _core: - default_config_hash: QqgQqXTAzP3BZhl5XLw2R5EE1BsJTCwptXnMkjY8xZw - - - collection: '' - name: core.entity_view_mode.media.narrow - data: - langcode: en - status: true - dependencies: - module: - - media - id: media.narrow - label: Narrow - targetEntityType: media - cache: true - _core: - default_config_hash: FNlRm8KB_uxHKVIuv4uEA3sQbmGiBKQ_r9BbgH61Bp8 - - - collection: '' - name: core.entity_view_mode.media.wide - data: - langcode: en - status: true - dependencies: - module: - - media - id: media.wide - label: Wide - targetEntityType: media - cache: true - _core: - default_config_hash: kYbmr_oacOcMdwBxezolZwPMWVT7saq972LWg92nKZk - collection: '' name: core.entity_view_mode.node.box @@ -1651,8 +605,6 @@ items: label: Box targetEntityType: node cache: true - _core: - default_config_hash: 72C_fCp3_JLorvt4YLz5w9UeUuor4vY465KrhUFEBxM - collection: '' name: core.entity_view_mode.node.card @@ -1666,8 +618,6 @@ items: label: Card targetEntityType: node cache: true - _core: - default_config_hash: z6QSG0XSjPK_V4notuY8MaeIAO_QnwfvuH825TyLiHg - collection: '' name: core.entity_view_mode.node.media @@ -1681,8 +631,6 @@ items: label: 'Media object' targetEntityType: node cache: true - _core: - default_config_hash: zCJHOoAhXJBG7URAzV10-MNcnU7eNX9VTz4LvWS625I - collection: '' name: core.entity_view_mode.node.micro @@ -1696,8 +644,6 @@ items: label: Micro targetEntityType: node cache: true - _core: - default_config_hash: REKLyEtFZOM1LgQ-KVSwvqkcwNlS7EvkWbdV12zinFw - collection: '' name: core.entity_view_mode.node.simple_card @@ -1711,8 +657,6 @@ items: label: 'Simple card' targetEntityType: node cache: true - _core: - default_config_hash: Crt6i6j8yM0YLdbxgS7BCzDtadVne43fhOy0WVkoB1o - collection: '' name: core.entity_view_mode.node.small_card @@ -1726,8 +670,6 @@ items: label: 'Small card' targetEntityType: node cache: true - _core: - default_config_hash: I68oVlHUQbsqRH-WCvFJRANAwaYqU1nl3ZHVstUkWkg - collection: '' name: core.entity_view_mode.node.tile @@ -1741,8 +683,6 @@ items: label: Tile targetEntityType: node cache: true - _core: - default_config_hash: nfevs6UIIvKBEKDLqjESVCx8H-owjCTzCHcyb398q3w - collection: '' name: core.entity_view_mode.paragraph.columnar @@ -1756,228 +696,6 @@ items: label: Columnar targetEntityType: paragraph cache: true - _core: - default_config_hash: hFG3sm7kkwkMu9ruyw2Ys51J421IyluY9DhnSsT6tMM - - - collection: '' - name: crop.type.extra_wide_rectangle - data: - langcode: en - status: true - dependencies: { } - id: extra_wide_rectangle - label: 'Extra-wide rectangle' - description: 'Ten units wide to five units tall.' - aspect_ratio: '2:1' - soft_limit_width: 600 - soft_limit_height: 300 - hard_limit_width: 200 - hard_limit_height: 100 - _core: - default_config_hash: '-gaXv1-FB193LGMSMf1VVMvjs_aPtJgC9W9k3TsyMos' - - - collection: '' - name: crop.type.square - data: - langcode: en - status: true - dependencies: { } - label: Square - id: square - description: '' - aspect_ratio: '1:1' - soft_limit_width: 300 - soft_limit_height: 300 - hard_limit_width: 100 - hard_limit_height: 100 - _core: - default_config_hash: tDFmNCLELYpI263QvSxywmus0IGl_7APIIuRwTJrSJE - - - collection: '' - name: crop.type.wide_rectangle - data: - langcode: en - status: true - dependencies: { } - id: wide_rectangle - label: 'Wide rectangle' - description: 'Ten units wide to six units tall.' - aspect_ratio: '5:3' - soft_limit_width: 1000 - soft_limit_height: 600 - hard_limit_width: 500 - hard_limit_height: 300 - _core: - default_config_hash: dL4rMqEd9txKq-rSlwyG8SC45WD7TLoAlsYsQe75B_4 - - - collection: '' - name: field.field.media.audio.field_media_audio_file - data: - langcode: en - status: true - dependencies: - config: - - field.storage.media.field_media_audio_file - - media.type.audio - module: - - file - id: media.audio.field_media_audio_file - field_name: field_media_audio_file - entity_type: media - bundle: audio - label: 'Audio file' - description: '' - required: true - translatable: true - default_value: { } - default_value_callback: '' - settings: - handler: 'default:file' - handler_settings: { } - file_directory: '[date:custom:Y]-[date:custom:m]' - file_extensions: 'mp3 wav aac' - max_filesize: '' - description_field: false - field_type: file - _core: - default_config_hash: UlZPIbHcLyNqGY5bvydCTijGcKDmwn4Fo8oYZT85wlk - - - collection: '' - name: field.field.media.document.field_media_document - data: - langcode: en - status: true - dependencies: - config: - - field.storage.media.field_media_document - - media.type.document - module: - - file - enforced: - module: - - media - id: media.document.field_media_document - field_name: field_media_document - entity_type: media - bundle: document - label: Document - description: '' - required: true - translatable: true - default_value: { } - default_value_callback: '' - settings: - handler: 'default:file' - handler_settings: { } - file_directory: '[date:custom:Y]-[date:custom:m]' - file_extensions: 'txt rtf doc docx ppt pptx xls xlsx pdf odf odg odp ods odt fodt fods fodp fodg key numbers pages' - max_filesize: '' - description_field: false - field_type: file - _core: - default_config_hash: DY5HtJTxUjFRGU_PaY6ifo2nhR-nAZ0y0s6kLmUbv5g - - - collection: '' - name: field.field.media.image.field_media_image - data: - langcode: en - status: true - dependencies: - config: - - field.storage.media.field_media_image - - media.type.image - module: - - image - enforced: - module: - - media - id: media.image.field_media_image - field_name: field_media_image - entity_type: media - bundle: image - label: Image - description: '' - required: true - translatable: true - default_value: { } - default_value_callback: '' - settings: - handler: 'default:file' - handler_settings: { } - file_directory: '[date:custom:Y]-[date:custom:m]' - file_extensions: 'png gif jpg jpeg webp' - max_filesize: '' - max_resolution: '' - min_resolution: '' - alt_field: true - alt_field_required: true - title_field: false - title_field_required: false - default_image: - uuid: '' - alt: '' - title: '' - width: null - height: null - field_type: image - _core: - default_config_hash: G50TJOA95bCLfsZZR93jMEuPCFNOxeEklwM_co0wqdU - - - collection: '' - name: field.field.media.remote_video.field_media_oembed_video - data: - langcode: en - status: true - dependencies: - config: - - field.storage.media.field_media_oembed_video - - media.type.remote_video - id: media.remote_video.field_media_oembed_video - field_name: field_media_oembed_video - entity_type: media - bundle: remote_video - label: 'Video URL' - description: '' - required: true - translatable: true - default_value: { } - default_value_callback: '' - settings: { } - field_type: string - _core: - default_config_hash: Eo4HHenV5iZat_kEWgr_wydD3TgwURMCzwt-7qIEyoM - - - collection: '' - name: field.field.media.video.field_media_video_file - data: - langcode: en - status: true - dependencies: - config: - - field.storage.media.field_media_video_file - - media.type.video - module: - - file - id: media.video.field_media_video_file - field_name: field_media_video_file - entity_type: media - bundle: video - label: 'Video file' - description: '' - required: true - translatable: true - default_value: { } - default_value_callback: '' - settings: - handler: 'default:file' - handler_settings: { } - file_directory: '[date:custom:Y]-[date:custom:m]' - file_extensions: mp4 - max_filesize: '' - description_field: false - field_type: file - _core: - default_config_hash: 6kMMjmk2r_csGQ52qI9BUaO8r_oAzNLbxlclaj-JlDQ - collection: '' name: field.field.paragraph.faq.field_faq @@ -2003,8 +721,6 @@ items: settings: default_format: basic_html field_type: faqfield - _core: - default_config_hash: HhZz537H5gJ7zksj2I2dU3yg8L0OnjPwibq-57NpPl8 - collection: '' name: field.field.paragraph.file.field_file @@ -2035,8 +751,6 @@ items: handler: 'default:file' handler_settings: { } field_type: file - _core: - default_config_hash: i0b97odFJz3_v7ctsvVTJCH3HXJVTjnrcfuONJU0J_o - collection: '' name: field.field.paragraph.image.field_image @@ -2053,15 +767,13 @@ items: field_name: field_image entity_type: paragraph bundle: image - label: 'Image (deprecated)' + label: Image description: '' required: false translatable: false default_value: { } default_value_callback: '' settings: - handler: 'default:file' - handler_settings: { } file_directory: '[date:custom:Y]-[date:custom:m]' file_extensions: 'png gif jpg jpeg' max_filesize: '' @@ -2077,45 +789,9 @@ items: title: '' width: null height: null + handler: 'default:file' + handler_settings: { } field_type: image - _core: - default_config_hash: fKswwNfm7A_JZRKaPI9D4jCj9XuH1XkJw_tu5G7HqII - - - collection: '' - name: field.field.paragraph.image.field_media_image - data: - langcode: en - status: true - dependencies: - config: - - field.storage.paragraph.field_media_image - - media.type.image - - paragraphs.paragraphs_type.image - module: - - media_library_media_modify - id: paragraph.image.field_media_image - field_name: field_media_image - entity_type: paragraph - bundle: image - label: 'Media image' - description: '' - required: false - translatable: false - default_value: { } - default_value_callback: '' - settings: - handler: 'default:media' - handler_settings: - target_bundles: - image: image - sort: - field: _none - direction: ASC - auto_create: false - auto_create_bundle: '' - field_type: entity_reference_entity_modify - _core: - default_config_hash: 68hqAsoHkTnQEbmJR8h5NyCZtNhgS6VoiwU2rSIRJ1M - collection: '' name: field.field.paragraph.slide.field_image @@ -2132,15 +808,13 @@ items: field_name: field_image entity_type: paragraph bundle: slide - label: 'Image (DEPRECATED)' + label: Image description: '' required: false translatable: true default_value: { } default_value_callback: '' settings: - handler: 'default:file' - handler_settings: { } file_directory: '[date:custom:Y]-[date:custom:m]' file_extensions: 'png gif jpg jpeg' max_filesize: '' @@ -2156,9 +830,9 @@ items: title: '' width: null height: null + handler: 'default:file' + handler_settings: { } field_type: image - _core: - default_config_hash: 90ikg0ITXrEXTkygUKQ3Lrh0WndunNnHBUfezA-8Tcs - collection: '' name: field.field.paragraph.slide.field_link @@ -2185,44 +859,6 @@ items: link_type: 17 title: 1 field_type: link - _core: - default_config_hash: 3SQrcvd8PXzK2VjPW70QylqO9ngUJgi5IWFMCgn-z_4 - - - collection: '' - name: field.field.paragraph.slide.field_media_image - data: - langcode: en - status: true - dependencies: - config: - - field.storage.paragraph.field_media_image - - media.type.image - - paragraphs.paragraphs_type.slide - module: - - media_library_media_modify - id: paragraph.slide.field_media_image - field_name: field_media_image - entity_type: paragraph - bundle: slide - label: 'Media image' - description: '' - required: false - translatable: false - default_value: { } - default_value_callback: '' - settings: - handler: 'default:media' - handler_settings: - target_bundles: - image: image - sort: - field: _none - direction: ASC - auto_create: false - auto_create_bundle: '' - field_type: entity_reference_entity_modify - _core: - default_config_hash: Y1AH7iGXAPYpIo1CWJxk0aVTKSNGq0mFrkSh6KmYVn8 - collection: '' name: field.field.paragraph.slide.field_text @@ -2245,11 +881,8 @@ items: translatable: true default_value: { } default_value_callback: '' - settings: - allowed_formats: { } + settings: { } field_type: text_long - _core: - default_config_hash: aGheEFevpljRn84GcfwTuh_hfNL7BuAoE6LHfr9sPvM - collection: '' name: field.field.paragraph.text.field_text @@ -2272,11 +905,8 @@ items: translatable: false default_value: { } default_value_callback: '' - settings: - allowed_formats: { } + settings: { } field_type: text_long - _core: - default_config_hash: WiG8dWcaC4ohSz2wUvsXJa_knYBY-8XBkXTLo4Grr4I - collection: '' name: field.field.paragraph.update.field_text @@ -2299,11 +929,8 @@ items: translatable: true default_value: { } default_value_callback: '' - settings: - allowed_formats: { } + settings: { } field_type: text_long - _core: - default_config_hash: CKDEwRBG2PB0gfdtmfr5OEgYoHP4EDVoeySFoW5rums - collection: '' name: field.field.paragraph.update.field_update_date @@ -2331,8 +958,6 @@ items: default_value_callback: '' settings: { } field_type: datetime - _core: - default_config_hash: yagpX5FEGlwqGGzCIQtfIfP_rj9gDApFUEL3UTNzMSg - collection: '' name: field.field.paragraph.video.field_video_embed @@ -2361,8 +986,6 @@ items: youtube: '0' youtube_playlist: '0' field_type: video_embed_field - _core: - default_config_hash: Yrm-bWfkd2hARu0QJI5GATWCD4Sf6COaEHduLWg21M0 - collection: '' name: field.storage.block_content.field_slide @@ -2387,159 +1010,6 @@ items: indexes: { } persist_with_no_fields: false custom_storage: false - _core: - default_config_hash: AxkDEkx9vK76lF4X6JBx0k4oWSPR6RhfYLRM6QWiIbw - - - collection: '' - name: field.storage.media.field_media_audio_file - data: - langcode: en - status: true - dependencies: - module: - - file - - media - id: media.field_media_audio_file - field_name: field_media_audio_file - entity_type: media - type: file - settings: - target_type: file - display_field: false - display_default: false - uri_scheme: public - module: file - locked: false - cardinality: 1 - translatable: true - indexes: { } - persist_with_no_fields: false - custom_storage: false - _core: - default_config_hash: JCHoh95CpUeBx9ch24Tmi6ru0nwmNz8xWVH4Qs7RnTg - - - collection: '' - name: field.storage.media.field_media_document - data: - langcode: en - status: true - dependencies: - module: - - file - - media - enforced: - module: - - media - id: media.field_media_document - field_name: field_media_document - entity_type: media - type: file - settings: - target_type: file - display_field: false - display_default: false - uri_scheme: public - module: file - locked: false - cardinality: 1 - translatable: true - indexes: { } - persist_with_no_fields: false - custom_storage: false - _core: - default_config_hash: BdkTx7IL59MCw5a_fOZprPTOGM_wcjz-Fm8g7HV3vFk - - - collection: '' - name: field.storage.media.field_media_image - data: - langcode: en - status: true - dependencies: - module: - - file - - image - - media - enforced: - module: - - media - id: media.field_media_image - field_name: field_media_image - entity_type: media - type: image - settings: - target_type: file - display_field: false - display_default: false - uri_scheme: public - default_image: - uuid: null - alt: '' - title: '' - width: null - height: null - module: image - locked: false - cardinality: 1 - translatable: true - indexes: { } - persist_with_no_fields: false - custom_storage: false - _core: - default_config_hash: 0N0KSFk57p6qsq3qM4lYVGSuROvzXK-tSsdwByqUh3g - - - collection: '' - name: field.storage.media.field_media_oembed_video - data: - langcode: en - status: true - dependencies: - module: - - media - id: media.field_media_oembed_video - field_name: field_media_oembed_video - entity_type: media - type: string - settings: - max_length: 255 - case_sensitive: false - is_ascii: false - module: core - locked: false - cardinality: 1 - translatable: true - indexes: { } - persist_with_no_fields: false - custom_storage: false - _core: - default_config_hash: cNf_852Dq-fNnSaMI4LxL-J6N7bLkHuDbD9EUqOn4_U - - - collection: '' - name: field.storage.media.field_media_video_file - data: - langcode: en - status: true - dependencies: - module: - - file - - media - id: media.field_media_video_file - field_name: field_media_video_file - entity_type: media - type: file - settings: - target_type: file - display_field: false - display_default: false - uri_scheme: public - module: file - locked: false - cardinality: 1 - translatable: true - indexes: { } - persist_with_no_fields: false - custom_storage: false - _core: - default_config_hash: z5mgbn1PIVZ5TNMByBmivqo_u3Rdk58UIzpyN4ypTeM - collection: '' name: field.storage.node.field_body_paragraph @@ -2564,8 +1034,6 @@ items: indexes: { } persist_with_no_fields: true custom_storage: false - _core: - default_config_hash: apBTEXiNuvZPiGbTYCwsasekxQ4YqUOvtnEuzATjiwc - collection: '' name: field.storage.node.field_image @@ -2601,34 +1069,6 @@ items: - target_id persist_with_no_fields: true custom_storage: false - _core: - default_config_hash: xujY74EBripC-8AA-UCTh5fUytzlg3kcQBM29IH41mQ - - - collection: '' - name: field.storage.node.field_media_image - data: - langcode: en - status: true - dependencies: - module: - - media - - media_library_media_modify - - node - id: node.field_media_image - field_name: field_media_image - entity_type: node - type: entity_reference_entity_modify - settings: - target_type: media - module: media_library_media_modify - locked: false - cardinality: 1 - translatable: true - indexes: { } - persist_with_no_fields: false - custom_storage: false - _core: - default_config_hash: u1BJrs9USBwZjpS7g60ZH8u2sKaLWtoujJwVNcYIYDE - collection: '' name: field.storage.node.field_paragraph @@ -2653,8 +1093,6 @@ items: indexes: { } persist_with_no_fields: false custom_storage: false - _core: - default_config_hash: GJ3c5-oxhWRoRHwb-EAbBMWh5oJaRrwXWBE79MNqHEI - collection: '' name: field.storage.node.field_summary @@ -2677,8 +1115,6 @@ items: indexes: { } persist_with_no_fields: true custom_storage: false - _core: - default_config_hash: N5_02nQrQQDjBfs7YVGK9j_5tAg0GnCop4tHxV2fXmQ - collection: '' name: field.storage.node.field_tags @@ -2702,8 +1138,6 @@ items: indexes: { } persist_with_no_fields: true custom_storage: false - _core: - default_config_hash: IdZ8A-giJtLe4z8yyZiu1PBa_sy0uqG91XEblrIHBVs - collection: '' name: field.storage.node.field_topics @@ -2727,8 +1161,6 @@ items: indexes: { } persist_with_no_fields: false custom_storage: false - _core: - default_config_hash: 4nfCwbS1LYl0l2T7piSaWE_e5X9jKehpN0X8fUOvn8A - collection: '' name: field.storage.paragraph.field_faq @@ -2751,8 +1183,6 @@ items: indexes: { } persist_with_no_fields: false custom_storage: false - _core: - default_config_hash: asVsdD_z0Ht6Asv-BLRI6upQtFeds9ILrYpqbxmbctE - collection: '' name: field.storage.paragraph.field_file @@ -2779,8 +1209,6 @@ items: indexes: { } persist_with_no_fields: true custom_storage: false - _core: - default_config_hash: VbzWOLBtW6nflFtbjF45aMNo80tQ8kmayJvlMULfT8o - collection: '' name: field.storage.paragraph.field_image @@ -2814,8 +1242,6 @@ items: indexes: { } persist_with_no_fields: true custom_storage: false - _core: - default_config_hash: LgkUWAI6XZ77w8nYvv2A8WD1l_n6tBX3j8eSjHhzPfk - collection: '' name: field.storage.paragraph.field_link @@ -2838,34 +1264,6 @@ items: indexes: { } persist_with_no_fields: false custom_storage: false - _core: - default_config_hash: shpX7SN4SMQrtD1yinDZI59p7VHAGCVOs0P3E73LNyQ - - - collection: '' - name: field.storage.paragraph.field_media_image - data: - langcode: en - status: true - dependencies: - module: - - media - - media_library_media_modify - - paragraphs - id: paragraph.field_media_image - field_name: field_media_image - entity_type: paragraph - type: entity_reference_entity_modify - settings: - target_type: media - module: media_library_media_modify - locked: false - cardinality: 1 - translatable: true - indexes: { } - persist_with_no_fields: false - custom_storage: false - _core: - default_config_hash: ey-tX87OAJ8GQEP3qMmQZiOC0ug1m91GqqkKq5Bq6k8 - collection: '' name: field.storage.paragraph.field_text @@ -2888,8 +1286,6 @@ items: indexes: { } persist_with_no_fields: true custom_storage: false - _core: - default_config_hash: iECtyKuz0YAntb4ScZLLMyh96KH9p9IDmgJrKB0WosQ - collection: '' name: field.storage.paragraph.field_update_date @@ -2913,8 +1309,6 @@ items: indexes: { } persist_with_no_fields: true custom_storage: false - _core: - default_config_hash: yD0qQkEgcvBrVG0iaF0vQLoF0NrZAL6ZyoHAag8OpfY - collection: '' name: field.storage.paragraph.field_video_embed @@ -2937,504 +1331,6 @@ items: indexes: { } persist_with_no_fields: false custom_storage: false - _core: - default_config_hash: 7pnKv1o8OLIFTOvfreN2O4S13MgT8mqaaGDhUoC8z88 - - - collection: '' - name: image.style.drutopia_extra_wide_extra_large - data: - langcode: en - status: true - dependencies: - config: - - crop.type.extra_wide_rectangle - module: - - crop - name: drutopia_extra_wide_extra_large - label: 'Extra-wide extra-large' - effects: - d113d848-f9e6-4fd2-8c98-9b859796e840: - uuid: d113d848-f9e6-4fd2-8c98-9b859796e840 - id: crop_crop - weight: 1 - data: - crop_type: extra_wide_rectangle - automatic_crop_provider: automated_crop_default - c4263bcc-2975-4d54-99ca-296c5b6131f5: - uuid: c4263bcc-2975-4d54-99ca-296c5b6131f5 - id: image_scale - weight: 2 - data: - width: 2600 - height: null - upscale: false - _core: - default_config_hash: PXhHY3h02Ao3iBYcAQTuJ9LhQ5ckRxBL91-vvmgWA7g - - - collection: '' - name: image.style.drutopia_extra_wide_extra_small - data: - langcode: en - status: true - dependencies: - config: - - crop.type.extra_wide_rectangle - module: - - crop - name: drutopia_extra_wide_extra_small - label: 'Extra-wide extra-small' - effects: - 99a5677f-a2b4-4c3b-a6ae-ab59b5eee3e9: - uuid: 99a5677f-a2b4-4c3b-a6ae-ab59b5eee3e9 - id: crop_crop - weight: 1 - data: - crop_type: extra_wide_rectangle - automatic_crop_provider: automated_crop_default - dda19dc4-0ccc-42b1-ae8f-65df895b1075: - uuid: dda19dc4-0ccc-42b1-ae8f-65df895b1075 - id: image_scale - weight: 2 - data: - width: 270 - height: null - upscale: false - _core: - default_config_hash: c-uUWpF34rkPWBXjgYY-1shoaUQAkY8VW7PcLfVzMAs - - - collection: '' - name: image.style.drutopia_extra_wide_large - data: - langcode: en - status: true - dependencies: - config: - - crop.type.extra_wide_rectangle - module: - - crop - name: drutopia_extra_wide_large - label: 'Extra-wide large' - effects: - 534259e4-b61a-4a96-b131-50742a98770c: - uuid: 534259e4-b61a-4a96-b131-50742a98770c - id: crop_crop - weight: 1 - data: - crop_type: extra_wide_rectangle - automatic_crop_provider: automated_crop_default - da282f38-1997-4208-bfd9-a6f5bebd2930: - uuid: da282f38-1997-4208-bfd9-a6f5bebd2930 - id: image_scale - weight: 2 - data: - width: 1900 - height: null - upscale: false - _core: - default_config_hash: X9tDFMDI1F-0mmEmXTK3g_nTmdA4e0oRh2h6YA-p9so - - - collection: '' - name: image.style.drutopia_extra_wide_medium - data: - langcode: en - status: true - dependencies: - config: - - crop.type.extra_wide_rectangle - module: - - crop - name: drutopia_extra_wide_medium - label: 'Extra-wide medium' - effects: - fc5b7ebc-0309-45f4-8d0c-2adec1ea5960: - uuid: fc5b7ebc-0309-45f4-8d0c-2adec1ea5960 - id: crop_crop - weight: 1 - data: - crop_type: extra_wide_rectangle - automatic_crop_provider: automated_crop_default - a920756b-b3e1-4143-a54d-78b42bc9fcdc: - uuid: a920756b-b3e1-4143-a54d-78b42bc9fcdc - id: image_scale - weight: 2 - data: - width: 1300 - height: null - upscale: false - _core: - default_config_hash: H3KInR1AvRnzjtUcaEfaXIZHE60b4WiqZvocT0octA8 - - - collection: '' - name: image.style.drutopia_extra_wide_small - data: - langcode: en - status: true - dependencies: - config: - - crop.type.extra_wide_rectangle - module: - - crop - name: drutopia_extra_wide_small - label: 'Extra-wide small' - effects: - 84311a0a-d6a5-43ca-8fe9-15dd8bfee5c4: - uuid: 84311a0a-d6a5-43ca-8fe9-15dd8bfee5c4 - id: crop_crop - weight: 1 - data: - crop_type: extra_wide_rectangle - automatic_crop_provider: automated_crop_default - 9bd514b3-1894-4e9e-889c-8588c2c5b6b9: - uuid: 9bd514b3-1894-4e9e-889c-8588c2c5b6b9 - id: image_scale - weight: 2 - data: - width: 650 - height: null - upscale: false - _core: - default_config_hash: 5QIlla3TxySeT5paJmoeqraqs1oe6OG6nYjGpFBoNio - - - collection: '' - name: image.style.drutopia_square_extra_large - data: - langcode: en - status: true - dependencies: - config: - - crop.type.square - module: - - crop - name: drutopia_square_extra_large - label: 'Square extra-large' - effects: - 9d3d487e-7c7c-4245-b48e-10fa2d7fcde0: - uuid: 9d3d487e-7c7c-4245-b48e-10fa2d7fcde0 - id: crop_crop - weight: 1 - data: - crop_type: square - automatic_crop_provider: automated_crop_default - e7fdbc5d-7a1a-4c18-a422-7c4bc2fdc82a: - uuid: e7fdbc5d-7a1a-4c18-a422-7c4bc2fdc82a - id: image_scale - weight: 2 - data: - width: 1300 - height: null - upscale: false - _core: - default_config_hash: CGXRhZowgLgmR1CW9PTuH4_kI4yl8jmxOCyzrcXkB8s - - - collection: '' - name: image.style.drutopia_square_extra_small - data: - langcode: en - status: true - dependencies: - config: - - crop.type.square - module: - - crop - name: drutopia_square_extra_small - label: 'Square extra-small ' - effects: - 6b4924cb-48f6-43c2-b837-206e952e58b2: - uuid: 6b4924cb-48f6-43c2-b837-206e952e58b2 - id: crop_crop - weight: 1 - data: - crop_type: square - automatic_crop_provider: automated_crop_default - 0a847a91-370f-4044-965f-3ee80816925e: - uuid: 0a847a91-370f-4044-965f-3ee80816925e - id: image_scale - weight: 2 - data: - width: 135 - height: null - upscale: false - _core: - default_config_hash: a4g3N9iSVS0w4My8vKRAJVqXGFBLbBARijt_Bzxjs5o - - - collection: '' - name: image.style.drutopia_square_large - data: - langcode: en - status: true - dependencies: - config: - - crop.type.square - module: - - crop - name: drutopia_square_large - label: 'Square large' - effects: - 1a1643eb-5557-4367-a03d-5aa277f9dad0: - uuid: 1a1643eb-5557-4367-a03d-5aa277f9dad0 - id: crop_crop - weight: 1 - data: - crop_type: square - automatic_crop_provider: automated_crop_default - e5572093-6c4a-4578-bbf7-8c97649dd59f: - uuid: e5572093-6c4a-4578-bbf7-8c97649dd59f - id: image_scale - weight: 2 - data: - width: 950 - height: null - upscale: false - _core: - default_config_hash: 6qzuaSacNLzuiIi1Wl-ldYKZgfRmjLhjBXQVTRCZG-s - - - collection: '' - name: image.style.drutopia_square_medium - data: - langcode: en - status: true - dependencies: - config: - - crop.type.square - module: - - crop - name: drutopia_square_medium - label: 'Square medium' - effects: - 20ae03dc-f974-4bca-8fa0-5fd1d98b6f91: - uuid: 20ae03dc-f974-4bca-8fa0-5fd1d98b6f91 - id: crop_crop - weight: 1 - data: - crop_type: square - automatic_crop_provider: automated_crop_default - ebced429-7f52-4fd7-8f4b-8eb637fd7b56: - uuid: ebced429-7f52-4fd7-8f4b-8eb637fd7b56 - id: image_scale - weight: 2 - data: - width: 650 - height: null - upscale: false - _core: - default_config_hash: wiWS9f9KS8VAgCv0Jf1xH1QwVxqm_NJWkvlcORNCI_g - - - collection: '' - name: image.style.drutopia_square_small - data: - langcode: en - status: true - dependencies: - config: - - crop.type.square - module: - - crop - name: drutopia_square_small - label: 'Square small' - effects: - f501ba24-4feb-44a7-8a09-b29f98cd9b25: - uuid: f501ba24-4feb-44a7-8a09-b29f98cd9b25 - id: crop_crop - weight: 1 - data: - crop_type: square - automatic_crop_provider: automated_crop_default - e935798f-d97a-4f96-9cbd-20ed7ae9a358: - uuid: e935798f-d97a-4f96-9cbd-20ed7ae9a358 - id: image_scale - weight: 2 - data: - width: 325 - height: null - upscale: false - _core: - default_config_hash: toUvv7Z-gBe0OOMy_xCFIe_gAKi9l7i5_si2FPxqAqI - - - collection: '' - name: image.style.drutopia_wide - data: - langcode: en - status: true - dependencies: - config: - - crop.type.wide_rectangle - module: - - crop - name: drutopia_wide - label: 'Wide (1090)' - effects: - 09959c15-59ce-4f6d-90df-e2d7cf32bce5: - uuid: 09959c15-59ce-4f6d-90df-e2d7cf32bce5 - id: image_scale - weight: -9 - data: - width: 1090 - height: null - upscale: false - 1a353a64-72a1-44d5-b757-0288cd4fb157: - uuid: 1a353a64-72a1-44d5-b757-0288cd4fb157 - id: crop_crop - weight: -10 - data: - crop_type: wide_rectangle - automatic_crop_provider: automated_crop_default - _core: - default_config_hash: kNNDAZPw3BxoRNwagvduKCcDVVVtpuNFPNX4tj_ufig - - - collection: '' - name: image.style.drutopia_wide_extra_large - data: - langcode: en - status: true - dependencies: - config: - - crop.type.wide_rectangle - module: - - crop - name: drutopia_wide_extra_large - label: 'Wide extra-large' - effects: - ec86d675-795f-4a16-b497-3838af74d1c4: - uuid: ec86d675-795f-4a16-b497-3838af74d1c4 - id: crop_crop - weight: 1 - data: - crop_type: wide_rectangle - automatic_crop_provider: automated_crop_default - 69c087e5-402d-4849-be76-16eb22dd7fc1: - uuid: 69c087e5-402d-4849-be76-16eb22dd7fc1 - id: image_scale - weight: 2 - data: - width: 2600 - height: null - upscale: false - _core: - default_config_hash: '-IL2VFbEBYRJD_SOOmtiIS2Cv35Vfk1asab0JlGhvhA' - - - collection: '' - name: image.style.drutopia_wide_extra_small - data: - langcode: en - status: true - dependencies: - config: - - crop.type.wide_rectangle - module: - - crop - name: drutopia_wide_extra_small - label: 'Wide extra-small' - effects: - 8b4d9126-dd97-4b10-89d0-be415358d3ad: - uuid: 8b4d9126-dd97-4b10-89d0-be415358d3ad - id: crop_crop - weight: 1 - data: - crop_type: wide_rectangle - automatic_crop_provider: automated_crop_default - f33c7363-1707-457f-bd02-58058c40f5d4: - uuid: f33c7363-1707-457f-bd02-58058c40f5d4 - id: image_scale - weight: 2 - data: - width: 270 - height: null - upscale: false - _core: - default_config_hash: zR-DPkkCP0aNRxhTjNasr1aYbZG7uL5bm14tnq8voZA - - - collection: '' - name: image.style.drutopia_wide_large - data: - langcode: en - status: true - dependencies: - config: - - crop.type.wide_rectangle - module: - - crop - name: drutopia_wide_large - label: 'Wide large' - effects: - 2dc5870d-380f-4214-ab18-1f4b97f662ac: - uuid: 2dc5870d-380f-4214-ab18-1f4b97f662ac - id: crop_crop - weight: 1 - data: - crop_type: wide_rectangle - automatic_crop_provider: automated_crop_default - b4a65084-2cba-475a-8452-840d6e2eee5a: - uuid: b4a65084-2cba-475a-8452-840d6e2eee5a - id: image_scale - weight: 2 - data: - width: 1900 - height: null - upscale: false - _core: - default_config_hash: 5ES-pOsiQ5NKYhLXPVH4wo94Yk73gsZluOJZtod83dY - - - collection: '' - name: image.style.drutopia_wide_medium - data: - langcode: en - status: true - dependencies: - config: - - crop.type.wide_rectangle - module: - - crop - name: drutopia_wide_medium - label: 'Wide medium' - effects: - ebe52955-3408-4181-8cb0-26aa351e348e: - uuid: ebe52955-3408-4181-8cb0-26aa351e348e - id: crop_crop - weight: 1 - data: - crop_type: wide_rectangle - automatic_crop_provider: automated_crop_default - 6fa0acf6-4530-4488-aa0a-10342e34cd51: - uuid: 6fa0acf6-4530-4488-aa0a-10342e34cd51 - id: image_scale - weight: 2 - data: - width: 1300 - height: null - upscale: false - _core: - default_config_hash: L1IxLUShVV_NQDFMwExe3T0Ubt9f4UPZh4yhksmsnDE - - - collection: '' - name: image.style.drutopia_wide_small - data: - langcode: en - status: true - dependencies: - config: - - crop.type.wide_rectangle - module: - - crop - name: drutopia_wide_small - label: 'Wide small' - effects: - 816ee922-2f69-4770-8c87-74b09ad53a0f: - uuid: 816ee922-2f69-4770-8c87-74b09ad53a0f - id: crop_crop - weight: 1 - data: - crop_type: wide_rectangle - automatic_crop_provider: automated_crop_default - aaabf105-6aa7-4d46-80ce-9674b0c54f95: - uuid: aaabf105-6aa7-4d46-80ce-9674b0c54f95 - id: image_scale - weight: 2 - data: - width: 650 - height: null - upscale: false - _core: - default_config_hash: b07us1-9XDjdOGTsn6ZPtECcGNWEgtzF8XXTO_JHy5s - collection: '' name: image.style.focal_point_1300x650 @@ -3455,8 +1351,6 @@ items: width: 1300 height: 650 crop_type: focal_point - _core: - default_config_hash: JhakHi5Bp4GURB73dGJlxCGA5BT0Hp8UBH53VPE91OA - collection: '' name: image.style.focal_point_195x260 @@ -3477,30 +1371,6 @@ items: width: 195 height: 260 crop_type: focal_point - _core: - default_config_hash: BcDSdo--ZBYhsTxtWzQhPtO2oD6dFpgLGulG9Uq3hJI - - - collection: '' - name: image.style.focal_point_220_square - data: - langcode: en - status: true - dependencies: - module: - - focal_point - name: focal_point_220_square - label: 'Medium square (220x220) focal point' - effects: - f6232ea6-e067-4638-a052-3744ec14a073: - uuid: f6232ea6-e067-4638-a052-3744ec14a073 - id: focal_point_scale_and_crop - weight: 1 - data: - width: 220 - height: 220 - crop_type: focal_point - _core: - default_config_hash: SgOXMfUaOC0ZUeczRr3HYchXj4gUjwMcADniCYJLymc - collection: '' name: image.style.focal_point_2600x1300 @@ -3521,8 +1391,6 @@ items: width: 2600 height: 1300 crop_type: focal_point - _core: - default_config_hash: Mc09CCd6YUU46FOF_XJ_Odx0Jjo56ltgpi1EPnjq0Ks - collection: '' name: image.style.focal_point_325x195 @@ -3543,8 +1411,6 @@ items: width: 325 height: 195 crop_type: focal_point - _core: - default_config_hash: 1l_YGYrTVB3-oyvoPxSKtsQDYo_yl8IVYJZLBHVw0aw - collection: '' name: image.style.focal_point_390x520 @@ -3565,30 +1431,6 @@ items: width: 390 height: 520 crop_type: focal_point - _core: - default_config_hash: furwmdLfWJQuM0stMUMiGCAK9Bf8FFUtma5qfos2fRA - - - collection: '' - name: image.style.focal_point_480_square - data: - langcode: en - status: true - dependencies: - module: - - focal_point - name: focal_point_480_square - label: 'Large square (480×480) focal point' - effects: - 436dfbfa-0150-47e4-b412-b32f7526f872: - uuid: 436dfbfa-0150-47e4-b412-b32f7526f872 - id: focal_point_scale_and_crop - weight: 1 - data: - width: 480 - height: 480 - crop_type: focal_point - _core: - default_config_hash: 8kxkJflOy1gPVfj36En0POkNqcXVCe31GYg8BKQGnIA - collection: '' name: image.style.focal_point_650x390 @@ -3609,8 +1451,6 @@ items: width: 650 height: 390 crop_type: focal_point - _core: - default_config_hash: GXhi1QLJL-gzU50nzrkjTu91_gOPg_xJG0jywojwycg - collection: '' name: image.style.focal_point_780x1040 @@ -3631,30 +1471,24 @@ items: width: 780 height: 1040 crop_type: focal_point - _core: - default_config_hash: 1qee2igdHVzG2UwKjYE1V0Ro8NylR43Y_kSWuZTaeSE - collection: '' name: image.style.small_square data: langcode: en status: true - dependencies: - module: - - focal_point + dependencies: { } name: small_square - label: 'Small square (170x170) focal point' + label: 'Small square (170x170)' effects: - 5b1257a2-35db-4203-a97e-5d3e5e138bc5: - uuid: 5b1257a2-35db-4203-a97e-5d3e5e138bc5 - id: focal_point_scale_and_crop - weight: 2 + fa950bf3-2e2e-44b9-bf11-26bee6a3218a: + uuid: fa950bf3-2e2e-44b9-bf11-26bee6a3218a + id: image_scale_and_crop + weight: 1 data: width: 170 height: 170 - crop_type: focal_point - _core: - default_config_hash: AP-6TgQrlEF2Os--UDSAteBO1NhO2xE41ipv1mYeVMA + anchor: center-center - collection: '' name: image.style.square_thumbnail @@ -3673,107 +1507,6 @@ items: width: 100 height: 100 anchor: center-center - _core: - default_config_hash: 49qs8-_yJXtaSNo-W2WzjD9qWXxQ05omG4iB8SejKQc - - - collection: '' - name: media.type.audio - data: - langcode: en - status: true - dependencies: { } - id: audio - label: Audio - description: 'A locally hosted audio file.' - source: audio_file - queue_thumbnail_downloads: false - new_revision: true - source_configuration: - source_field: field_media_audio_file - field_map: - name: name - _core: - default_config_hash: eJw8n6Tk2tO3ZysuEeGR1gZa1yRffaZzR4t0Q7iNurs - - - collection: '' - name: media.type.document - data: - langcode: en - status: true - dependencies: { } - id: document - label: Document - description: 'An uploaded file or document, such as a PDF.' - source: file - queue_thumbnail_downloads: false - new_revision: true - source_configuration: - source_field: field_media_document - field_map: - name: name - _core: - default_config_hash: _D9q3XSnP6ik9we9UuoTvZsQKPuYNp_G9PfwVtWzgnQ - - - collection: '' - name: media.type.image - data: - langcode: en - status: true - dependencies: { } - id: image - label: Image - description: 'Use local images for reusable media.' - source: image - queue_thumbnail_downloads: false - new_revision: true - source_configuration: - source_field: field_media_image - field_map: - name: name - _core: - default_config_hash: 6Qope5wG7HUpV0tPOBMtDI_GZkHFcF1Xj4hgD9Cu_hM - - - collection: '' - name: media.type.remote_video - data: - langcode: en - status: true - dependencies: { } - id: remote_video - label: 'Remote video' - description: 'A remotely hosted video from YouTube or Vimeo.' - source: 'oembed:video' - queue_thumbnail_downloads: false - new_revision: true - source_configuration: - source_field: field_media_oembed_video - thumbnails_directory: 'public://oembed_thumbnails/[date:custom:Y-m]' - providers: - - YouTube - - Vimeo - field_map: - title: name - _core: - default_config_hash: hIBTnDGgDKnCiP6HUZm1m7600DHUEpC6FN3LQ4sUgZ4 - - - collection: '' - name: media.type.video - data: - langcode: en - status: true - dependencies: { } - id: video - label: Video - description: 'A locally hosted video file.' - source: video_file - queue_thumbnail_downloads: false - new_revision: true - source_configuration: - source_field: field_media_video_file - field_map: - name: name - _core: - default_config_hash: hzgvcRgZHltqWf8hBmttoWh95tCJoPL25lPq9YSIRsY - collection: '' name: paragraphs.paragraphs_type.faq @@ -3784,11 +1517,8 @@ items: id: faq label: FAQ icon_uuid: null - icon_default: null description: '' behavior_plugins: { } - _core: - default_config_hash: K2p0W4MCUvuBElHhE7QN_XCg9YrdswPjuV_ZvlIE_Mo - collection: '' name: paragraphs.paragraphs_type.file @@ -3799,11 +1529,8 @@ items: id: file label: File icon_uuid: null - icon_default: null description: null behavior_plugins: { } - _core: - default_config_hash: Q24y2Xn5CuJ9BqbH3W5K15MKTH1brFSCfCw-CPOyICk - collection: '' name: paragraphs.paragraphs_type.image @@ -3814,11 +1541,8 @@ items: id: image label: Image icon_uuid: null - icon_default: null description: null behavior_plugins: { } - _core: - default_config_hash: io0rtYy4rt2Jmwje9xibomS8ro9j39M2qvbOQorEN7U - collection: '' name: paragraphs.paragraphs_type.slide @@ -3829,11 +1553,8 @@ items: id: slide label: Slide icon_uuid: null - icon_default: null description: null behavior_plugins: { } - _core: - default_config_hash: WE7I6KkN7GEqUYHkwhNLMOMtit1N3A31l_n3_msd-WM - collection: '' name: paragraphs.paragraphs_type.text @@ -3844,11 +1565,8 @@ items: id: text label: Text icon_uuid: null - icon_default: null description: null behavior_plugins: { } - _core: - default_config_hash: DiWAHNz80wuBze_Xi5-N6ldgWFEVtERfuOTyS41yVa0 - collection: '' name: paragraphs.paragraphs_type.update @@ -3859,11 +1577,8 @@ items: id: update label: Update icon_uuid: null - icon_default: null description: null behavior_plugins: { } - _core: - default_config_hash: XmA4e9klQYkiFJvobPFvooyxlCliVUxeNFWn5a5fFj8 - collection: '' name: paragraphs.paragraphs_type.video @@ -3874,49 +1589,8 @@ items: id: video label: Video icon_uuid: null - icon_default: null description: 'For adding an embedded video from YouTube or Vimeo.' behavior_plugins: { } - _core: - default_config_hash: YvM1yNE63kk13pVhYUIsv6XMWVzOipnNQQARGiYfAmk - - - collection: '' - name: pathauto.pattern.generic_content - data: - langcode: en - status: true - dependencies: - module: - - node - id: generic_content - label: 'Generic content' - type: 'canonical_entities:node' - pattern: '[node:content-type]/[node:title]' - selection_criteria: { } - selection_logic: and - weight: 0 - relationships: { } - _core: - default_config_hash: HXi80aTzhUO2qnTzoUvXR-MbpO673Ud07zTY3c1iEpI - - - collection: '' - name: pathauto.pattern.generic_term - data: - langcode: en - status: true - dependencies: - module: - - taxonomy - id: generic_term - label: 'Generic term' - type: 'canonical_entities:taxonomy_term' - pattern: '[term:vocabulary]/[term:name]' - selection_criteria: { } - selection_logic: and - weight: 0 - relationships: { } - _core: - default_config_hash: yo_6TShaM6J7zPC0iPyzTbGoX55GFyWdn4a9UOH9TJc - collection: '' name: rdf.mapping.taxonomy_term.tags @@ -3940,8 +1614,6 @@ items: description: properties: - 'schema:description' - _core: - default_config_hash: o5duwyS1CTHx3tYOZhuu91kspe8VQjQsnwZjAJv9njk - collection: '' name: rdf.mapping.taxonomy_term.topics @@ -3965,121 +1637,6 @@ items: description: properties: - 'schema:description' - _core: - default_config_hash: laEV9Mm5bDiVsaTGWDxNoK9cf39u8fgRStlg7b6KFts - - - collection: '' - name: responsive_image.styles.drutopia_card - data: - langcode: en - status: true - dependencies: - config: - - image.style.drutopia_wide_extra_small - - image.style.drutopia_wide_medium - - image.style.drutopia_wide_small - module: - - drutopia_core - id: drutopia_card - label: Card - image_style_mappings: - - - image_mapping_type: image_style - image_mapping: drutopia_wide_small - breakpoint_id: drutopia_core.fullhd - multiplier: 1x - - - image_mapping_type: image_style - image_mapping: drutopia_wide_small - breakpoint_id: drutopia_core.widescreen - multiplier: 1x - - - image_mapping_type: image_style - image_mapping: drutopia_wide_extra_small - breakpoint_id: drutopia_core.desktop - multiplier: 1x - - - image_mapping_type: image_style - image_mapping: drutopia_wide_small - breakpoint_id: drutopia_core.tablet - multiplier: 1x - - - image_mapping_type: image_style - image_mapping: drutopia_wide_medium - breakpoint_id: drutopia_core.mobile - multiplier: 1x - breakpoint_group: drutopia_core - fallback_image_style: drutopia_wide_extra_small - _core: - default_config_hash: DyJYr1VGP_Okl7KSvoJ9hsLs5gakhjh7xx4eMOnBC5I - - - collection: '' - name: responsive_image.styles.drutopia_main - data: - langcode: en - status: true - dependencies: - config: - - image.style.drutopia_extra_wide_extra_large - - image.style.drutopia_extra_wide_extra_small - - image.style.drutopia_extra_wide_large - - image.style.drutopia_extra_wide_medium - - image.style.drutopia_extra_wide_small - module: - - drutopia_core - id: drutopia_main - label: Main - image_style_mappings: - - - image_mapping_type: image_style - image_mapping: drutopia_extra_wide_extra_large - breakpoint_id: drutopia_core.fullhd - multiplier: 1x - - - image_mapping_type: image_style - image_mapping: drutopia_extra_wide_large - breakpoint_id: drutopia_core.widescreen - multiplier: 1x - - - image_mapping_type: image_style - image_mapping: drutopia_extra_wide_medium - breakpoint_id: drutopia_core.desktop - multiplier: 1x - - - image_mapping_type: image_style - image_mapping: drutopia_extra_wide_small - breakpoint_id: drutopia_core.tablet - multiplier: 1x - - - image_mapping_type: image_style - image_mapping: drutopia_extra_wide_extra_small - breakpoint_id: drutopia_core.mobile - multiplier: 1x - breakpoint_group: drutopia_core - fallback_image_style: drutopia_extra_wide_extra_small - _core: - default_config_hash: iH_ZVxuN4bXJ5TwGVmTH-JQQ0NU1DpZKPda9GwMkp3w - - - collection: '' - name: responsive_image.styles.drutopia_wide - data: - langcode: en - status: true - dependencies: - config: - - image.style.drutopia_wide - id: drutopia_wide - label: Wide - image_style_mappings: - - - image_mapping_type: image_style - image_mapping: drutopia_wide - breakpoint_id: responsive_image.viewport_sizing - multiplier: 1x - breakpoint_group: responsive_image - fallback_image_style: drutopia_wide - _core: - default_config_hash: 6gGx8qIdqXjaHZtprlhfS-cZSjh7CX_tNCVfuokwYys - collection: '' name: responsive_image.styles.narrow @@ -4106,8 +1663,6 @@ items: - focal_point_650x390 breakpoint_group: responsive_image fallback_image_style: focal_point_325x195 - _core: - default_config_hash: o1xlBzV3-T8wXZvIqrg_N8yXmAzCqFb6fs9bpfroyaA - collection: '' name: responsive_image.styles.short @@ -4134,41 +1689,6 @@ items: - focal_point_780x1040 breakpoint_group: responsive_image fallback_image_style: focal_point_195x260 - _core: - default_config_hash: 0izBPJXHhozLxU5koRWYJCjEqRn5fwtfgRfLmDFhhso - - - collection: '' - name: responsive_image.styles.square - data: - uuid: 9e0dd61f-2bde-4d7a-a7a1-fd0453d9ff2b - langcode: en - status: true - dependencies: - config: - - image.style.drutopia_square_extra_large - - image.style.drutopia_square_extra_small - - image.style.drutopia_square_large - - image.style.drutopia_square_medium - - image.style.drutopia_square_small - _core: - default_config_hash: JMf-xC8fggihQjiOPJXjO4aHdh7JTRktK2GO7J9X0nQ - id: square - label: Square - image_style_mappings: - - - image_mapping_type: sizes - image_mapping: - sizes: '(min-width: 1290px) 325px, (min-width: 851px) 25vw, (min-width: 560px) 50vw, 100vw' - sizes_image_styles: - - drutopia_square_extra_large - - drutopia_square_extra_small - - drutopia_square_large - - drutopia_square_medium - - drutopia_square_small - breakpoint_id: responsive_image.viewport_sizing - multiplier: 1x - breakpoint_group: responsive_image - fallback_image_style: drutopia_square_extra_small - collection: '' name: responsive_image.styles.tall @@ -4195,8 +1715,34 @@ items: - focal_point_780x1040 breakpoint_group: responsive_image fallback_image_style: focal_point_195x260 - _core: - default_config_hash: IjrIkEw9KTR6GXbfSGdFw4BbQSQWMfN1fbgsiobcUBI + - + collection: '' + name: responsive_image.styles.wide + data: + langcode: en + status: true + dependencies: + config: + - image.style.focal_point_1300x650 + - image.style.focal_point_2600x1300 + - image.style.focal_point_325x195 + - image.style.focal_point_650x390 + id: wide + label: Wide + image_style_mappings: + - + breakpoint_id: responsive_image.viewport_sizing + multiplier: 1x + image_mapping_type: sizes + image_mapping: + sizes: '(min-width: 1290px) 1290px, 100vw' + sizes_image_styles: + - focal_point_1300x650 + - focal_point_2600x1300 + - focal_point_325x195 + - focal_point_650x390 + breakpoint_group: responsive_image + fallback_image_style: focal_point_325x195 - collection: '' name: search_api.server.database @@ -4219,8 +1765,6 @@ items: suggest_suffix: true suggest_words: true matching: words - _core: - default_config_hash: Mpbiccb26BfqxqdE7n8wu_l8L__Hj_Q5vp4corfOhrI - collection: '' name: taxonomy.vocabulary.tags @@ -4231,9 +1775,8 @@ items: name: Tags vid: tags description: 'Use tags to group content if you need categories beyond the given topics.' + hierarchy: 0 weight: 0 - _core: - default_config_hash: LGDZxL814z0e8kyjxRu-2kU4eDZ9n94wzbcB3WNGpQ0 - collection: '' name: taxonomy.vocabulary.topics @@ -4244,9 +1787,8 @@ items: name: Topics vid: topics description: 'Use topics to group content into categories.' + hierarchy: 0 weight: 0 - _core: - default_config_hash: BaPpT1TGJvkIY5lSC9Nb3-2lBeAUKChQM0yRyTAVurk - collection: '' name: user.role.administrator @@ -4258,56 +1800,24 @@ items: label: Administrator weight: 5 is_admin: true - _core: - default_config_hash: deBO6rveioT0_Xi1uj--U3HrKSa0JjKdvdHRKy0rXNo - collection: '' name: user.role.contributor data: langcode: en status: true - dependencies: - module: - - contextual - - exclude_node_title - - file - - node - - system - - taxonomy - - content_moderation - config: - - taxonomy.vocabulary.tags - - workflows.workflow.workflow_buttons_trash_publishing - - node.type.people - - node.type.article - - node.type.blog - - node.type.page + dependencies: { } id: contributor label: Contributor weight: 2 is_admin: null - _core: - default_config_hash: wx_SmNDtHorXJ90rDiwqo6EvHgyvz6_SZFsFO77cdvY permissions: - - 'access content overview' - 'access contextual links' - - 'access media overview' - - 'create media' - - 'create terms in tags' - - 'delete own files' - - 'edit terms in tags' - - 'update media' - - 'use exclude node title' - - 'view all revisions' - - 'view all media revisions' - - 'view own unpublished content' - - 'view the administration theme' - - 'use workflow_buttons_trash_publishing transition create_new_draft' - - 'use workflow_buttons_trash_publishing transition save_draft_leave_current_published' - - 'use workflow_buttons_trash_publishing transition save_unpublished' + - 'access in-place editing' - 'edit own comments' - 'skip comment approval' - 'create people content' + - 'delete own people content' - 'edit own people content' - 'create article content' - 'delete own article content' @@ -4316,6 +1826,7 @@ items: - 'delete own blog content' - 'edit own blog content' - 'create page content' + - 'delete own page content' - 'edit own page content' - collection: '' @@ -4323,174 +1834,43 @@ items: data: langcode: en status: true - dependencies: - module: - - contextual - - exclude_node_title - - file - - media - - node - - path - - system - - taxonomy - - toolbar - - tour - - redirect - - filter - - content_moderation - config: - - filter.format.restricted_html - - workflows.workflow.workflow_buttons_trash_publishing - - node.type.people - - node.type.landing_page - - node.type.page + dependencies: { } id: editor label: Editor weight: 3 is_admin: null - _core: - default_config_hash: rlOWgxSj7Nc4dVgLS2xaxjHVZNv9u9Csoy8JavNvygc permissions: - - 'access administration pages' - - 'access content overview' + - 'use text format restricted_html' - 'access contextual links' - - 'access files overview' - - 'access media overview' - - 'access site in maintenance mode' + - 'access in-place editing' - 'access toolbar' - 'access tour' - - 'access user profiles' - - 'administer nodes' - - 'administer taxonomy' - - 'administer users' - - 'create media' + - 'bypass node access' - 'create url aliases' - - 'delete all revisions' - - 'delete own files' - - 'revert all revisions' - - 'update any media' - - 'use exclude node title' - - 'view all media revisions' - - 'view all revisions' - - 'view own unpublished content' - - 'view own unpublished media' - - 'view the administration theme' - - 'administer redirects' - - 'use text format restricted_html' - - 'use workflow_buttons_trash_publishing transition delete' - - 'use workflow_buttons_trash_publishing transition publish' - - 'use workflow_buttons_trash_publishing transition restore_draft' - - 'use workflow_buttons_trash_publishing transition restore_publish' - - 'use workflow_buttons_trash_publishing transition unpublish' - - 'use workflow_buttons_trash_publishing transition update' - 'administer comments' - 'skip comment approval' - - 'create people content' - - 'edit any people content' - - 'create landing_page content' - - 'edit any landing_page content' - - 'create page content' - - 'edit any page content' - collection: '' name: user.role.manager data: langcode: en status: true - dependencies: - module: - - config_perms - - contextual - - exclude_node_title - - file - - media - - node - - path - - system - - taxonomy - - toolbar - - tour - - metatag - - redirect - - filter - - role_delegation - - block - - block_content - - content_moderation - - menu_admin_per_menu - config: - - filter.format.restricted_html - - workflows.workflow.workflow_buttons_trash_publishing - - node.type.people - - node.type.landing_page - - node.type.page + dependencies: { } id: manager label: Manager weight: 4 is_admin: null - _core: - default_config_hash: p1SmYFXVP1KLKKQI-wkTYJ2dVCvR7HgO7SL3BAKTyTE permissions: - - 'access administration pages' - - 'access content overview' + - 'use text format restricted_html' - 'access contextual links' - - 'access files overview' - - 'access media overview' - - 'access site in maintenance mode' + - 'access in-place editing' - 'access toolbar' - 'access tour' - 'access user contact forms' - - 'access user profiles' - - 'Administer account settings' - - 'Administer date-time' - - 'administer nodes' - - 'Administer site information' - - 'administer taxonomy' - 'administer url aliases' - - 'administer users' - - 'create media' + - 'administer eu cookie compliance popup' + - 'bypass node access' - 'create url aliases' - - 'delete all revisions' - - 'delete own files' - - 'revert all revisions' - - 'update any media' - - 'use exclude node title' - - 'view all media revisions' - - 'view all revisions' - - 'view own unpublished content' - - 'view own unpublished media' - - 'view the administration theme' - - 'administer meta tags' - - 'administer redirect settings' - - 'administer redirects' - - 'administer block content' - - 'administer block types' - - 'administer blocks' - - 'administer main menu items' - - 'use text format restricted_html' - - 'assign manager role' - - 'assign editor role' - - 'assign contributor role' - - 'access block library' - - 'create basic block content' - - 'create slide block content' - - 'edit any basic block content' - - 'edit any slide block content' - - 'revert any basic block content revisions' - - 'revert any slide block content revisions' - - 'use workflow_buttons_trash_publishing transition delete' - - 'use workflow_buttons_trash_publishing transition publish' - - 'use workflow_buttons_trash_publishing transition restore_draft' - - 'use workflow_buttons_trash_publishing transition restore_publish' - - 'use workflow_buttons_trash_publishing transition unpublish' - - 'use workflow_buttons_trash_publishing transition update' - - 'view any basic block content history' - - 'view any slide block content history' + - 'edit gdpr_checklist checklistapi checklist' - 'administer comments' - 'skip comment approval' - - 'create people content' - - 'edit any people content' - - 'create landing_page content' - - 'edit any landing_page content' - - 'create page content' - - 'edit any page content' diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_landing_page.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_landing_page.yml index 9feccff..42fdd32 100644 --- a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_landing_page.yml +++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_landing_page.yml @@ -34,8 +34,6 @@ items: on_label: 'On' off_label: 'Off' field_type: boolean - _core: - default_config_hash: KZ4pDrGhkRiIo7Ee-E4HGZp7YPXKS_FLR0nLeUQ3P2U - collection: '' name: core.entity_form_display.node.landing_page.default @@ -108,19 +106,11 @@ items: match_operator: CONTAINS size: 60 placeholder: '' - match_limit: 10 region: content third_party_settings: { } - url_redirects: - weight: 50 - settings: { } - third_party_settings: { } - region: content hidden: promote: true sticky: true - _core: - default_config_hash: CVRMZfgFZQ-7Fglznug8VWRO5ACmCl4KpQqjG2GNk0o - collection: '' name: core.entity_view_display.node.landing_page.default @@ -143,9 +133,6 @@ items: field_body_paragraph: true field_meta_tags: true links: true - search_api_excerpt: true - _core: - default_config_hash: vMs2OGAJMnWt1vLVre5A7Ch4SlU4gL-OTPzWjBXCAZ8 - collection: '' name: core.entity_view_display.node.landing_page.full @@ -188,7 +175,7 @@ items: content: field_body_paragraph: weight: 0 - label: hidden + label: visually_hidden settings: view_mode: default link: '' @@ -198,9 +185,6 @@ items: hidden: field_meta_tags: true links: true - search_api_excerpt: true - _core: - default_config_hash: 496HTAIE5jzDV02vjWsHBSVRzHTzT6RuZ0ZxpFD8QOY - collection: '' name: core.entity_view_display.node.landing_page.teaser @@ -224,9 +208,6 @@ items: field_body_paragraph: true field_meta_tags: true links: true - search_api_excerpt: true - _core: - default_config_hash: jCHE-D3rybQAAcV2w67fm98NDaZvTk1BBTGWRQvt__I - collection: '' name: field.field.node.landing_page.field_body_paragraph @@ -278,8 +259,6 @@ items: enabled: true weight: 8 field_type: entity_reference_revisions - _core: - default_config_hash: SY6szifQZxW4ucxM-P_RlOcopaMTOymNXiEZPLSvDec - collection: '' name: field.field.node.landing_page.field_meta_tags @@ -306,8 +285,6 @@ items: default_value_callback: '' settings: { } field_type: metatag - _core: - default_config_hash: 0TxksFlbv1taSWO5o9DKYQD7j4RPtqVhI7iV_bEGjTQ - collection: '' name: node.type.landing_page @@ -322,15 +299,13 @@ items: available_menus: - main parent: 'main:' - name: 'Landing page (DEPRECATED)' + name: 'Landing page' type: landing_page - description: 'Use Page instead. (Landing pages can be used for custom pages such as the home page.)' + description: 'Landing pages can be used for custom pages such as the home page.' help: '' new_revision: true preview_mode: 1 display_submitted: false - _core: - default_config_hash: Ghp4m6xuyfm3HxwelseF-cvCwlzIk6DMQLQqkDy_Jsk - collection: '' name: pathauto.pattern.node_landing_page @@ -346,7 +321,7 @@ items: pattern: '[node:title]' selection_criteria: e3e7a232-e1e0-455e-8b69-c99b582dc4f0: - id: 'entity_bundle:node' + id: node_type bundles: landing_page: landing_page negate: false @@ -356,5 +331,3 @@ items: selection_logic: and weight: -5 relationships: { } - _core: - default_config_hash: vBkdZgjK3wVtoRA2ztmoGyr7IyCGmjkC1xiODFYqp_A diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_page.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_page.yml index 0f085b8..ec5d9fa 100644 --- a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_page.yml +++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_page.yml @@ -34,8 +34,6 @@ items: on_label: 'On' off_label: 'Off' field_type: boolean - _core: - default_config_hash: fPUEnm4T5zfZRr3ttDUqq7yCDd2uW3clWD-pvos4tlQ - collection: '' name: core.entity_form_display.node.page.default @@ -119,20 +117,12 @@ items: match_operator: CONTAINS size: 60 placeholder: '' - match_limit: 10 - third_party_settings: { } - region: content - url_redirects: - weight: 50 - settings: { } third_party_settings: { } region: content hidden: body: true promote: true sticky: true - _core: - default_config_hash: wAhpJRljOWQclUjA76cSgdVfWaKkYjrwCnvblTo9dJU - collection: '' name: core.entity_view_display.node.page.default @@ -177,9 +167,6 @@ items: field_meta_tags: true field_summary: true links: true - search_api_excerpt: true - _core: - default_config_hash: IJqwajtBIucTAaMgGd7kE-hw_HVZOxJuku1ohZjxVUU - collection: '' name: core.entity_view_display.node.page.full @@ -242,9 +229,6 @@ items: body: true field_meta_tags: true field_summary: true - search_api_excerpt: true - _core: - default_config_hash: GWD2zN3yeaHHDWEwl0eHfRw1NBwOIZZBWlgaPWHfDk8 - collection: '' name: core.entity_view_display.node.page.teaser @@ -310,9 +294,6 @@ items: field_body_paragraph: true field_meta_tags: true links: true - search_api_excerpt: true - _core: - default_config_hash: 0t_mvsiSfXpVDeIsN_YEaJrW-nvZpZgnWZZXQ3HCttI - collection: '' name: field.field.node.page.body @@ -337,10 +318,7 @@ items: default_value_callback: '' settings: display_summary: true - required_summary: false field_type: text_with_summary - _core: - default_config_hash: KgVkxLl_K3E3lvN6CEoWQIDT0V8J4Mv-fVYrAIc7-FE - collection: '' name: field.field.node.page.field_body_paragraph @@ -364,7 +342,7 @@ items: field_name: field_body_paragraph entity_type: node bundle: page - label: Description + label: 'Body paragraph' description: '' required: false translatable: true @@ -405,8 +383,6 @@ items: enabled: true weight: -9 field_type: entity_reference_revisions - _core: - default_config_hash: IZb3avpMcvY5tiws_RxDuZ-maGL9HNzmMeeCsP6u74k - collection: '' name: field.field.node.page.field_meta_tags @@ -433,8 +409,6 @@ items: default_value_callback: '' settings: { } field_type: metatag - _core: - default_config_hash: n2TFzOb_KtFLLjQrHXe-YhLMnwPwXTqsBVkr0aTK_EA - collection: '' name: field.field.node.page.field_summary @@ -452,15 +426,13 @@ items: entity_type: node bundle: page label: Summary - description: 'Enter a short description of what this page is about. The summary is visible in search results.' + description: 'Enter a short description of what this page is about. The summary is visible in certain displays.' required: true translatable: true default_value: { } default_value_callback: '' settings: { } field_type: text_long - _core: - default_config_hash: 3fRsavd-D5Yd1aEOmpsLBDtqsve6MU4iQ71v5i26aPk - collection: '' name: node.type.page @@ -476,15 +448,13 @@ items: - footer - main parent: 'main:' - name: Page + name: 'Basic page' type: page - description: "Use pages for your static content, such as an 'About us' page." + description: 'Use basic pages for your static content, such as an ''About us'' page.' help: '' new_revision: true preview_mode: 1 display_submitted: false - _core: - default_config_hash: W-6WEzqubJ1pK5rQ6ffOA2sSmmaICuTkPHn4sMyTYdY - collection: '' name: pathauto.pattern.node_page @@ -500,7 +470,7 @@ items: pattern: '[node:title]' selection_criteria: 2e17ea21-8c33-444d-981e-2a2df6651647: - id: 'entity_bundle:node' + id: node_type bundles: page: page negate: false @@ -510,8 +480,6 @@ items: selection_logic: and weight: -5 relationships: { } - _core: - default_config_hash: Yj5YMfGaGLJFZKIyrOXa62nFXYbfI_5MplyMv78eh38 - collection: '' name: rdf.mapping.node.page @@ -556,5 +524,3 @@ items: callable: 'Drupal\rdf\SchemaOrgDataConverter::interactionCount' arguments: interaction_type: UserComments - _core: - default_config_hash: 32LxRnl4Wesvzqyfp7HnD0-U9-wxrLBn76pqY5XGNAE diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_people.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_people.yml index 899906c..0679c4c 100644 --- a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_people.yml +++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_people.yml @@ -34,8 +34,6 @@ items: on_label: 'On' off_label: 'Off' field_type: boolean - _core: - default_config_hash: vjAdEwFkNHAmhmslEPv5BP-dYKY6Wi_YlmsU55nVVbk - collection: '' name: core.base_field_override.node.people.title @@ -57,8 +55,6 @@ items: default_value_callback: '' settings: { } field_type: string - _core: - default_config_hash: MqZid1EqJeqdHcR7HbHVZKvtTA8LBlBAm5LVV10RuJo - collection: '' name: core.entity_form_display.node.people.default @@ -69,15 +65,15 @@ items: config: - field.field.node.people.body - field.field.node.people.field_body_paragraph - - field.field.node.people.field_media_image + - field.field.node.people.field_image - field.field.node.people.field_meta_tags - field.field.node.people.field_people_position - field.field.node.people.field_people_type - field.field.node.people.field_summary - - field.field.node.people.field_topics + - image.style.thumbnail - node.type.people module: - - media_library_media_modify + - focal_point - metatag - paragraphs - path @@ -90,13 +86,11 @@ items: created: type: datetime_timestamp weight: 7 - region: content settings: { } third_party_settings: { } - field_body_paragraph: - type: entity_reference_paragraphs - weight: 5 region: content + field_body_paragraph: + weight: 5 settings: title: Paragraph title_plural: Paragraphs @@ -105,162 +99,92 @@ items: form_display_mode: default default_paragraph_type: text third_party_settings: { } - field_media_image: - type: media_library_media_modify_widget - weight: 4 + type: entity_reference_paragraphs region: content + field_image: + weight: 3 settings: - media_types: { } - form_mode: main - check_selected: false - replace_checkbox_by_order_indicator: false - multi_edit_on_create: false - no_edit_on_create: false + progress_indicator: throbber + preview_image_style: thumbnail + preview_link: true + offsets: '50,50' third_party_settings: { } + type: image_focal_point + region: content field_meta_tags: - type: metatag_firehose weight: 26 - region: content - settings: - sidebar: true - use_details: true + settings: { } third_party_settings: { } - field_people_position: - type: string_textfield - weight: 1 + type: metatag_firehose region: content + field_people_position: + weight: 1 settings: size: 60 placeholder: '' third_party_settings: { } - field_people_type: - type: options_select - weight: 2 + type: string_textfield region: content + field_people_type: + weight: 2 settings: { } third_party_settings: { } - field_summary: - type: text_textarea - weight: 4 + type: options_select region: content + field_summary: + weight: 4 settings: rows: 5 placeholder: '' third_party_settings: { } - field_topics: - type: options_select - weight: 2 + type: text_textarea region: content - settings: { } - third_party_settings: { } path: type: path weight: 10 - region: content settings: { } third_party_settings: { } + region: content promote: type: boolean_checkbox - weight: 8 - region: content settings: display_label: true + weight: 8 third_party_settings: { } + region: content status: type: boolean_checkbox - weight: 120 - region: content settings: display_label: true + weight: 120 + region: content third_party_settings: { } sticky: type: boolean_checkbox - weight: 9 - region: content settings: display_label: true + weight: 9 third_party_settings: { } + region: content title: type: string_textfield weight: 0 - region: content settings: size: 60 placeholder: '' third_party_settings: { } + region: content uid: type: entity_reference_autocomplete weight: 6 - region: content settings: match_operator: CONTAINS - match_limit: 10 size: 60 placeholder: '' third_party_settings: { } - url_redirects: - weight: 50 - region: content - settings: { } - third_party_settings: { } - hidden: - body: true - _core: - default_config_hash: NPwjaMcfu2o4PR0qQ9uMcYhS3-ei2beZP_1f1VSIQZo - - - collection: '' - name: core.entity_view_display.node.people.card - data: - langcode: en - status: true - dependencies: - config: - - core.entity_view_mode.node.card - - field.field.node.people.body - - field.field.node.people.field_body_paragraph - - field.field.node.people.field_media_image - - field.field.node.people.field_meta_tags - - field.field.node.people.field_people_position - - field.field.node.people.field_people_type - - field.field.node.people.field_summary - - field.field.node.people.field_topics - - node.type.people - - responsive_image.styles.drutopia_card - module: - - media_responsive_thumbnail - - user - id: node.people.card - targetEntityType: node - bundle: people - mode: card - content: - field_media_image: - type: media_responsive_thumbnail - label: hidden - settings: - responsive_image_style: drutopia_card - image_link: content - image_loading: - attribute: lazy - third_party_settings: { } - weight: 0 - region: ds_content - links: - settings: { } - third_party_settings: { } - weight: 100 region: content hidden: body: true - field_body_paragraph: true - field_meta_tags: true - field_people_position: true - field_people_type: true - field_summary: true - field_topics: true - search_api_excerpt: true - _core: - default_config_hash: 5aDOMfLAFwDCqdovft_rABpy4XtO8GoXknScnpzs-rc - collection: '' name: core.entity_view_display.node.people.default @@ -271,15 +195,32 @@ items: config: - field.field.node.people.body - field.field.node.people.field_body_paragraph - - field.field.node.people.field_media_image + - field.field.node.people.field_image - field.field.node.people.field_meta_tags - field.field.node.people.field_people_position - field.field.node.people.field_people_type - field.field.node.people.field_summary - - field.field.node.people.field_topics - node.type.people module: + - ds - user + third_party_settings: + ds: + layout: + id: ds_1col + library: null + disable_css: false + entity_classes: all_classes + settings: + wrappers: + ds_content: div + outer_wrapper: div + attributes: '' + link_attribute: '' + link_custom: '' + classes: + layout_class: { } + regions: { } id: node.people.default targetEntityType: node bundle: people @@ -288,16 +229,12 @@ items: hidden: body: true field_body_paragraph: true - field_media_image: true + field_image: true field_meta_tags: true field_people_position: true field_people_type: true field_summary: true - field_topics: true links: true - search_api_excerpt: true - _core: - default_config_hash: tCFeKhOJxXt3B-PQDaxWeXZ1xA6aorgYutmLgU9MBMs - collection: '' name: core.entity_view_display.node.people.full @@ -309,18 +246,17 @@ items: - core.entity_view_mode.node.full - field.field.node.people.body - field.field.node.people.field_body_paragraph - - field.field.node.people.field_media_image + - field.field.node.people.field_image - field.field.node.people.field_meta_tags - field.field.node.people.field_people_position - field.field.node.people.field_people_type - field.field.node.people.field_summary - - field.field.node.people.field_topics - - image.style.focal_point_480_square - node.type.people + - responsive_image.styles.tall module: - ds - entity_reference_revisions - - media + - responsive_image - user third_party_settings: ds: @@ -330,8 +266,6 @@ items: disable_css: true entity_classes: all_classes settings: - classes: - layout_class: { } wrappers: left: div right: div @@ -339,10 +273,11 @@ items: attributes: '' link_attribute: '' link_custom: '' - label: '' + classes: + layout_class: { } regions: left: - - field_media_image + - field_image right: - field_people_position - field_body_paragraph @@ -354,61 +289,48 @@ items: mode: full content: field_body_paragraph: - type: entity_reference_revisions_entity_view + weight: 2 label: hidden settings: view_mode: default link: '' third_party_settings: { } - weight: 2 + type: entity_reference_revisions_entity_view region: right - field_media_image: - type: media_thumbnail + field_image: + weight: 0 label: hidden settings: + responsive_image_style: tall image_link: '' - image_style: focal_point_480_square - image_loading: - attribute: eager third_party_settings: { } - weight: 0 + type: responsive_image region: left field_people_position: type: string + weight: 1 label: hidden settings: link_to_entity: false third_party_settings: { } - weight: 1 region: right field_people_type: - type: entity_reference_label + weight: 3 label: hidden settings: link: true third_party_settings: { } - weight: 3 - region: right - field_topics: type: entity_reference_label - label: visually_hidden - settings: - link: true - third_party_settings: { } - weight: 3 region: right links: - settings: { } - third_party_settings: { } weight: 4 region: right + settings: { } + third_party_settings: { } hidden: body: true field_meta_tags: true field_summary: true - search_api_excerpt: true - _core: - default_config_hash: Mt7FyLGRorTo8uJXIEmizBwrHvXuLGzgzOGyDgTBClo - collection: '' name: core.entity_view_display.node.people.search_index @@ -420,16 +342,16 @@ items: - core.entity_view_mode.node.search_index - field.field.node.people.body - field.field.node.people.field_body_paragraph - - field.field.node.people.field_media_image + - field.field.node.people.field_image - field.field.node.people.field_meta_tags - field.field.node.people.field_people_position - field.field.node.people.field_people_type - field.field.node.people.field_summary - - field.field.node.people.field_topics - node.type.people module: - ds - entity_reference_revisions + - responsive_image - user third_party_settings: ds: @@ -449,7 +371,7 @@ items: layout_class: { } regions: ds_content: - - field_media_image + - field_image - field_people_position - field_body_paragraph - field_people_type @@ -467,15 +389,15 @@ items: view_mode: default link: '' third_party_settings: { } - field_media_image: - type: entity_reference_entity_view - label: hidden - settings: - view_mode: media_library - link: false - third_party_settings: { } + field_image: + type: responsive_image weight: 0 region: ds_content + label: hidden + settings: + responsive_image_style: '' + image_link: '' + third_party_settings: { } field_people_position: type: string weight: 1 @@ -486,82 +408,17 @@ items: third_party_settings: { } field_people_type: type: entity_reference_label - label: hidden - settings: - link: true - third_party_settings: { } weight: 3 region: ds_content - field_topics: - type: entity_reference_label label: hidden settings: link: true third_party_settings: { } - weight: 5 - region: content hidden: body: true field_meta_tags: true field_summary: true links: true - search_api_excerpt: true - _core: - default_config_hash: DoARGnH5OJ9fs67pcBro3YUedclcPt7AhXHzfwtENV0 - - - collection: '' - name: core.entity_view_display.node.people.simple_card - data: - langcode: en - status: true - dependencies: - config: - - core.entity_view_mode.node.simple_card - - field.field.node.people.body - - field.field.node.people.field_body_paragraph - - field.field.node.people.field_media_image - - field.field.node.people.field_meta_tags - - field.field.node.people.field_people_position - - field.field.node.people.field_people_type - - field.field.node.people.field_summary - - field.field.node.people.field_topics - - node.type.people - - responsive_image.styles.drutopia_card - module: - - media_responsive_thumbnail - - user - id: node.people.simple_card - targetEntityType: node - bundle: people - mode: simple_card - content: - field_media_image: - type: media_responsive_thumbnail - label: hidden - settings: - responsive_image_style: drutopia_card - image_link: '' - image_loading: - attribute: lazy - third_party_settings: { } - weight: 0 - region: ds_content - links: - settings: { } - third_party_settings: { } - weight: 100 - region: content - hidden: - body: true - field_body_paragraph: true - field_meta_tags: true - field_people_position: true - field_people_type: true - field_summary: true - field_topics: true - search_api_excerpt: true - _core: - default_config_hash: rIiXKZ3XTcCVwxhadn5a_e9GMBwCMjPgDyeUozFDTGA - collection: '' name: core.entity_view_display.node.people.small_card @@ -573,18 +430,17 @@ items: - core.entity_view_mode.node.small_card - field.field.node.people.body - field.field.node.people.field_body_paragraph - - field.field.node.people.field_media_image + - field.field.node.people.field_image - field.field.node.people.field_meta_tags - field.field.node.people.field_people_position - field.field.node.people.field_people_type - field.field.node.people.field_summary - - field.field.node.people.field_topics - node.type.people - - responsive_image.styles.tall + - responsive_image.styles.short module: - ds - field_group - - media_responsive_thumbnail + - responsive_image - user third_party_settings: ds: @@ -594,18 +450,17 @@ items: disable_css: false entity_classes: all_classes settings: - classes: - layout_class: { } wrappers: ds_content: div outer_wrapper: div attributes: '' link_attribute: '' link_custom: '' - label: '' + classes: + layout_class: { } regions: ds_content: - - field_media_image + - field_image - group_card_content - node_title - field_people_position @@ -624,55 +479,49 @@ items: children: - node_title - field_people_position - label: 'Card content' parent_name: '' - region: ds_content weight: 1 format_type: html_element format_settings: - classes: '' id: '' + classes: '' element: div show_label: false label_element: h3 attributes: '' effect: none speed: fast + label: 'Card content' + region: hidden id: node.people.small_card targetEntityType: node bundle: people mode: small_card content: - field_media_image: - type: media_responsive_thumbnail - label: hidden - settings: - responsive_image_style: tall - image_link: '' - image_loading: - attribute: lazy - third_party_settings: { } + field_image: + type: responsive_image weight: 0 region: ds_content + label: visually_hidden + settings: + responsive_image_style: short + image_link: content + third_party_settings: { } field_people_position: type: string - label: hidden + weight: 2 + region: ds_content + label: visually_hidden settings: link_to_entity: false third_party_settings: { } - weight: 2 - region: ds_content hidden: body: true field_body_paragraph: true field_meta_tags: true field_people_type: true field_summary: true - field_topics: true links: true - search_api_excerpt: true - _core: - default_config_hash: KUWAn610cSZRNTW1F_99tuhyvrPNw5dFrRI1QcFLNHw - collection: '' name: core.entity_view_display.node.people.teaser @@ -684,56 +533,80 @@ items: - core.entity_view_mode.node.teaser - field.field.node.people.body - field.field.node.people.field_body_paragraph - - field.field.node.people.field_media_image + - field.field.node.people.field_image - field.field.node.people.field_meta_tags - field.field.node.people.field_people_position - field.field.node.people.field_people_type - field.field.node.people.field_summary - - field.field.node.people.field_topics - node.type.people - - responsive_image.styles.square + - responsive_image.styles.narrow module: - - media_responsive_thumbnail + - ds + - responsive_image - text - user + third_party_settings: + ds: + layout: + id: ds_2col + library: ds/ds_2col + disable_css: true + entity_classes: all_classes + settings: + wrappers: + left: div + right: div + outer_wrapper: div + attributes: '' + link_attribute: '' + link_custom: '' + classes: + layout_class: { } + regions: + left: + - field_image + right: + - node_title + - field_people_position + - field_summary + fields: + node_title: + plugin_id: node_title + weight: 1 + label: hidden + formatter: default + settings: + link: true + wrapper: h2 + class: '' id: node.people.teaser targetEntityType: node bundle: people mode: teaser content: - field_media_image: - type: media_responsive_thumbnail - label: hidden + field_image: + type: responsive_image + weight: 0 + label: visually_hidden settings: - responsive_image_style: square + responsive_image_style: narrow image_link: content - image_loading: - attribute: lazy third_party_settings: { } - weight: 1 - region: content + region: left field_people_position: type: string + weight: 2 label: hidden settings: link_to_entity: false third_party_settings: { } - weight: 0 - region: content + region: right field_summary: type: text_default + weight: 3 label: hidden settings: { } third_party_settings: { } - weight: 2 - region: content - field_topics: - type: entity_reference_label - label: visually_hidden - settings: - link: true - third_party_settings: { } - weight: 3 region: right hidden: body: true @@ -741,9 +614,6 @@ items: field_meta_tags: true field_people_type: true links: true - search_api_excerpt: true - _core: - default_config_hash: 6UsXg98S3yB0706GQUMSob_d-01TNRgJH6oX1yByj3M - collection: '' name: field.field.node.people.body @@ -768,10 +638,7 @@ items: default_value_callback: '' settings: display_summary: true - required_summary: false field_type: text_with_summary - _core: - default_config_hash: xdjrhlTT57lrbvjwGE7YenUm47NjrulXSWoDLcds_BE - collection: '' name: field.field.node.people.field_body_paragraph @@ -822,44 +689,47 @@ items: weight: 10 enabled: false field_type: entity_reference_revisions - _core: - default_config_hash: 0bKKOd0u6BWVA8_qN4zyQ9RnJerQ1i_ojb8vX7xsS-c - collection: '' - name: field.field.node.people.field_media_image + name: field.field.node.people.field_image data: langcode: en status: true dependencies: config: - - field.storage.node.field_media_image - - media.type.image + - field.storage.node.field_image - node.type.people module: - - media_library_media_modify - id: node.people.field_media_image - field_name: field_media_image + - image + id: node.people.field_image + field_name: field_image entity_type: node bundle: people - label: 'Media image' + label: Image description: '' required: false - translatable: false + translatable: true default_value: { } default_value_callback: '' settings: - handler: 'default:media' - handler_settings: - target_bundles: - image: image - sort: - field: changed - direction: DESC - auto_create: false - auto_create_bundle: '' - field_type: entity_reference_entity_modify - _core: - default_config_hash: DC1ZnohEB2ZR4ChhatkaoGcq6IbFJH5CmRa-6xWV-Y0 + file_directory: '[date:custom:Y]-[date:custom:m]' + file_extensions: 'png gif jpg jpeg' + max_filesize: '' + max_resolution: '' + min_resolution: '' + alt_field: true + alt_field_required: true + title_field: false + title_field_required: false + default_image: + uuid: '' + alt: '' + title: '' + width: null + height: null + handler: 'default:file' + handler_settings: { } + field_type: image - collection: '' name: field.field.node.people.field_meta_tags @@ -884,8 +754,6 @@ items: default_value_callback: '' settings: { } field_type: metatag - _core: - default_config_hash: Jy6WGV-PE3Q3sRQDpqRpANnTUDnjwcR0z2sZRDH6-Ng - collection: '' name: field.field.node.people.field_people_position @@ -908,8 +776,6 @@ items: default_value_callback: '' settings: { } field_type: string - _core: - default_config_hash: r5QzktN_-nSrvYsgpD2K04j__Gxnsx5YrqAxvKPGMns - collection: '' name: field.field.node.people.field_people_type @@ -941,8 +807,6 @@ items: auto_create: false auto_create_bundle: '' field_type: entity_reference - _core: - default_config_hash: dtMxnws7m6b4_vE_RgmtnEGbj5rgmHSYYMKDsZIA3ok - collection: '' name: field.field.node.people.field_summary @@ -967,43 +831,6 @@ items: default_value_callback: '' settings: { } field_type: text_long - _core: - default_config_hash: EXOljgShOmy983x8K_RBAJkJ2cWknYTQvOdpbfg3EC4 - - - collection: '' - name: field.field.node.people.field_topics - data: - uuid: 6dd9b232-291e-4fca-b2ee-0f39184f8e0a - langcode: en - status: true - dependencies: - config: - - field.storage.node.field_topics - - node.type.people - - taxonomy.vocabulary.topics - id: node.people.field_topics - field_name: field_topics - entity_type: node - bundle: people - label: Topics - description: 'Add any topics used across this site that this person has particular experience or involvement in.' - required: false - translatable: false - default_value: { } - default_value_callback: '' - settings: - handler: 'default:taxonomy_term' - handler_settings: - target_bundles: - topics: topics - sort: - field: name - direction: asc - auto_create: false - auto_create_bundle: '' - field_type: entity_reference - _core: - default_config_hash: K3btHZ3JKmqsqxayLMy-xog1XK47ZkM-y6FVZ7Am2Qo - collection: '' name: field.storage.node.field_authors @@ -1026,8 +853,6 @@ items: indexes: { } persist_with_no_fields: false custom_storage: false - _core: - default_config_hash: CdsNvWBIHAJza9u2WNrUp4ObkJX91d1EFwUFnlQvAtc - collection: '' name: field.storage.node.field_people_position @@ -1052,8 +877,6 @@ items: indexes: { } persist_with_no_fields: false custom_storage: false - _core: - default_config_hash: J4f7770QL2eOcA794z9cqefQlXK0ywmFLi7RqaBWX1k - collection: '' name: field.storage.node.field_people_type @@ -1077,8 +900,6 @@ items: indexes: { } persist_with_no_fields: false custom_storage: false - _core: - default_config_hash: chcdF2_EWxzeKzeYwGT_Ivlt4nHXOD-QUYTWx3XRMIA - collection: '' name: node.type.people @@ -1093,15 +914,13 @@ items: available_menus: - main parent: 'main:' - name: Person + name: People type: people - description: 'Use the person content type for people such as staff, volunteers, contributors.' + description: 'Use people content type for people such as staff, volunteers, contributors.' help: '' new_revision: true preview_mode: 1 display_submitted: false - _core: - default_config_hash: r-xpZkuQAhoS4D3-p5F5vtrQEsjx_GbmDMUVrgvV3Qs - collection: '' name: pathauto.pattern.people_node @@ -1117,7 +936,7 @@ items: pattern: 'people/[node:title]' selection_criteria: c9467269-b644-451e-b21f-01808d094c28: - id: 'entity_bundle:node' + id: node_type bundles: people: people negate: false @@ -1127,8 +946,6 @@ items: selection_logic: and weight: -5 relationships: { } - _core: - default_config_hash: VhDRsybkLGADMPlVIVSlNWoEHaybjdmU4tkhryK7XdQ - collection: '' name: pathauto.pattern.people_type @@ -1155,8 +972,6 @@ items: selection_logic: and weight: -5 relationships: { } - _core: - default_config_hash: kJvjcFRrqkBrjz3kIhGL4LHVUyWJezs8GJHnm3dJvPg - collection: '' name: search_api.index.people @@ -1200,7 +1015,7 @@ items: datasource_id: 'entity:node' property_path: title type: text - boost: 8.0 + boost: !!float 8 created: label: 'Authored on' datasource_id: 'entity:node' @@ -1376,8 +1191,6 @@ items: index_directly: true cron_limit: 50 server: database - _core: - default_config_hash: MppSSFf9_oAEuTYEXp1R5nK30k5xRKvptoEDwKw9v6o - collection: '' name: taxonomy.vocabulary.people_type @@ -1389,8 +1202,6 @@ items: vid: people_type description: 'For categorizing people content.' weight: 0 - _core: - default_config_hash: JO19BdRf7-8_1H53_vF57ekuHcSK6kTi9i2f3LD-uWY - collection: '' name: views.view.content_by_author @@ -1410,6 +1221,7 @@ items: tag: '' base_table: node_field_data base_field: nid + core: 8.x display: default: display_plugin: default @@ -1529,8 +1341,6 @@ items: id: status expose: operator: '' - operator_limit_selection: false - operator_list: { } group: 1 sorts: created: @@ -1636,8 +1446,6 @@ items: - 'user.node_grants:view' - user.permissions tags: { } - _core: - default_config_hash: 3vI7yksWCvIULEcbQRRzGJbNzM1sqI-lQMQeKHXzcjM - collection: '' name: views.view.people @@ -1652,7 +1460,6 @@ items: module: - search_api - user - - views_plain id: people label: People module: views @@ -1660,14 +1467,57 @@ items: tag: '' base_table: search_api_index_people base_field: search_api_id + core: 8.x display: default: - id: default - display_title: Default display_plugin: default + id: default + display_title: Master position: 0 display_options: - title: 'Our people' + access: + type: perm + options: + perm: 'access content' + cache: + type: none + options: { } + query: + type: views_query + options: + bypass_access: false + skip_access: false + 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 + pager: + type: none + options: + offset: 0 + style: + type: default + options: + grouping: + - + field: field_people_type + rendered: true + rendered_strip: false + row_class: '' + default_row_class: false + uses_fields: true + row: + type: search_api + options: + view_modes: + 'entity:node': + people: small_card fields: field_people_type: id: field_people_type @@ -1676,8 +1526,6 @@ items: relationship: none group_type: group admin_label: '' - entity_type: node - plugin_id: search_api_field label: '' exclude: true alter: @@ -1757,6 +1605,8 @@ items: display_method: label topics: display_method: label + entity_type: node + plugin_id: search_api_field title: id: title table: search_api_datasource_people_entity_node @@ -1764,8 +1614,6 @@ items: relationship: none group_type: group admin_label: '' - entity_type: node - plugin_id: search_api_field label: '' exclude: false alter: @@ -1828,28 +1676,9 @@ items: use_highlighting: false multi_type: separator multi_separator: ', ' - pager: - type: none - options: - offset: 0 - 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: perm - options: - perm: 'access content' - cache: - type: none - options: { } - empty: { } + entity_type: node + plugin_id: search_api_field + filters: { } sorts: field_people_type: id: field_people_type @@ -1858,11 +1687,11 @@ items: relationship: none group_type: group admin_label: '' - plugin_id: search_api order: ASC + exposed: false expose: label: '' - exposed: false + plugin_id: search_api created: id: created table: search_api_index_people @@ -1870,52 +1699,30 @@ items: relationship: none group_type: group admin_label: '' - plugin_id: search_api order: DESC + exposed: false expose: label: '' - exposed: false - arguments: { } - filters: { } - style: - type: plain_style - options: - grouping: - - - field: field_people_type - rendered: true - rendered_strip: false - uses_fields: true - row: - type: search_api - options: - view_modes: - 'entity:node': - people: teaser - query: - type: search_api_query - options: - bypass_access: false - skip_access: false - relationships: { } + plugin_id: search_api header: { } footer: { } + empty: { } + relationships: { } + arguments: { } display_extenders: { } + title: 'Our people' cache_metadata: max-age: -1 contexts: - 'languages:language_content' - 'languages:language_interface' - - 'user.node_grants:view' - user.permissions tags: - 'config:field.storage.node.field_people_type' - - 'config:search_api.index.people' - - 'search_api_list:people' page_listing: + display_plugin: page id: page_listing display_title: Page - display_plugin: page position: 1 display_options: display_extenders: { } @@ -1924,22 +1731,16 @@ items: type: normal title: People description: 'Learn about our team' - weight: 0 - enabled: true expanded: false - menu_name: main parent: 'menu_link_content:33435872-bdbe-4833-9477-c057c2c33359' + weight: 0 context: '0' + menu_name: main cache_metadata: max-age: -1 contexts: - 'languages:language_content' - 'languages:language_interface' - - 'user.node_grants:view' - user.permissions tags: - 'config:field.storage.node.field_people_type' - - 'config:search_api.index.people' - - 'search_api_list:people' - _core: - default_config_hash: N1tfpVuHaGzNVTaQpYlhjjyIPe1X9mscVaPbU44J77o diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_related_content.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_related_content.yml index 4729109..efd3b68 100644 --- a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_related_content.yml +++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_related_content.yml @@ -52,8 +52,6 @@ items: negate: true context_mapping: node: '@node.node_route_context:node' - _core: - default_config_hash: MRx48Mtce75hvDAK9VAUIcM1HZnpBlYuDp-SsC5kf2w - collection: '' name: views.view.related_content @@ -74,6 +72,7 @@ items: tag: '' base_table: node_field_data base_field: nid + core: 8.x display: default: display_plugin: default @@ -194,8 +193,6 @@ items: multiple: false remember_roles: authenticated: authenticated - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -304,5 +301,3 @@ items: - 'user.node_grants:view' - user.permissions tags: { } - _core: - default_config_hash: oAtaO3ho1pXlY8O_tnrNCQMfHekkzCNSasXW_RYExLQ diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_search.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_search.yml index 34ca266..8e16e74 100644 --- a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_search.yml +++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_search.yml @@ -29,8 +29,6 @@ items: context_mapping: { } uuid: f502a545-a711-401c-8e94-6e727993abb4 allow_other_conditions: false - _core: - default_config_hash: ddeT3L9Xq8y_TDPJxLXDM1i3UEFHxVGo9zXUxIDsvCE - collection: '' name: facets.facet.search_content_type @@ -87,8 +85,6 @@ items: empty_behavior: behavior: none show_title: false - _core: - default_config_hash: k1PFdr_CIrIeS0KGckN85rrs-Pyl4WR64yyTgJ3VNj0 - collection: '' name: facets.facet.search_date @@ -148,8 +144,6 @@ items: empty_behavior: behavior: none show_title: false - _core: - default_config_hash: syu_tLhMKbEI3qeAzecwvNMGieJLpJSIm7B_x7Kvtd0 - collection: '' name: facets.facet.search_topics @@ -206,8 +200,6 @@ items: empty_behavior: behavior: none show_title: false - _core: - default_config_hash: dOZjHLs_u2M53WmjpSKWztyhsfl3i8mRHHxB430TWrE - collection: '' name: facets.facet_source.search_api__views_page__search__page_1 @@ -220,8 +212,6 @@ items: filter_key: null url_processor: query_string breadcrumb: { } - _core: - default_config_hash: NWruDTMV7miFQxlcWeWCv9-OEnAQuThLC9lbAG8xPK4 - collection: '' name: search_api.index.content @@ -341,7 +331,7 @@ items: datasource_id: 'entity:node' property_path: title type: text - boost: 8.0 + boost: !!float 8 dependencies: module: - node @@ -488,8 +478,6 @@ items: index_directly: true cron_limit: 50 server: database - _core: - default_config_hash: q4urWOU1mmYKKSBzYuwpRBTSIJnFwzapGP4bnCajbFs - collection: '' name: views.view.search @@ -509,6 +497,7 @@ items: tag: '' base_table: search_api_index_content base_field: search_api_id + core: 8.x display: default: display_plugin: default @@ -670,8 +659,6 @@ items: authenticated: authenticated anonymous: '0' administrator: '0' - operator_limit_selection: false - operator_list: { } is_grouped: false group_info: label: '' @@ -742,5 +729,3 @@ items: - url - url.query_args tags: { } - _core: - default_config_hash: GJZuVolkBuJ-bZTQ2IJQ-K6zss_KefjDBUJYOM0idYs diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_seo.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_seo.yml index 3649012..e9bd309 100644 --- a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_seo.yml +++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_seo.yml @@ -31,5 +31,3 @@ items: indexes: { } persist_with_no_fields: true custom_storage: false - _core: - default_config_hash: _6IJ94Rz4TMt7cLH-8HeTgFxkumIB4cO-46roFGqRvw diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_site.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_site.yml index 448df87..c75d283 100644 --- a/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_site.yml +++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia_site.yml @@ -20,8 +20,6 @@ items: label: 'Basic block' revision: 0 description: 'A basic block contains a title and a body.' - _core: - default_config_hash: zglzjmYxi0G0ag9MZ02y0LSJOdpWRwJxyP_OvFojFyo - collection: '' name: block_content.type.slide @@ -33,8 +31,6 @@ items: label: Slide revision: 1 description: '' - _core: - default_config_hash: pOGP3cCvZKJh3KvC3N1wt5CzxZgG0DOu7KDyFMi3gZw - collection: '' name: contact.form.feedback @@ -50,8 +46,6 @@ items: weight: 0 message: 'Your message has been sent.' redirect: '' - _core: - default_config_hash: vymHlgJy26BuI5GGj9-IXjwR3dRC5C0tij4BpWJnoqw - collection: '' name: core.entity_form_display.block_content.basic.default @@ -87,8 +81,6 @@ items: third_party_settings: { } region: content hidden: { } - _core: - default_config_hash: 6qtUzM5E9WGaNTRlMmYhrScXEP509jFMzRWm3gqFXvQ - collection: '' name: core.entity_form_display.block_content.slide.default @@ -127,8 +119,6 @@ items: placeholder: '' third_party_settings: { } hidden: { } - _core: - default_config_hash: 7cKjgY8GVkmEzOYGZdSAsWt1T5V3L5rEKw19Llx246c - collection: '' name: core.entity_view_display.block_content.basic.default @@ -153,10 +143,7 @@ items: settings: { } third_party_settings: { } region: content - hidden: - search_api_excerpt: true - _core: - default_config_hash: CmZdrveBfdzcVjaY5Iy891AdoO9AoBMJ4pdhu0WwXkI + hidden: { } - collection: '' name: core.entity_view_display.block_content.slide.columnar @@ -179,7 +166,7 @@ items: field_slide: type: entity_reference_revisions_entity_view weight: 0 - label: hidden + label: visually_hidden settings: view_mode: columnar link: '' @@ -187,10 +174,7 @@ items: ds: ds_limit: '' region: content - hidden: - search_api_excerpt: true - _core: - default_config_hash: Qy6nDH_-O3SoksTn8t8slyCbTE2fP_sYtISt1_hZKZc + hidden: { } - collection: '' name: core.entity_view_display.block_content.slide.default @@ -211,16 +195,13 @@ items: field_slide: type: entity_reference_revisions_entity_view weight: 0 - label: hidden + label: visually_hidden settings: view_mode: default link: '' third_party_settings: { } region: content - hidden: - search_api_excerpt: true - _core: - default_config_hash: Ifn3KdN-1MT1MGhO0hGpyV6avfoMPpy6q2yuD5tsEgg + hidden: { } - collection: '' name: editor.editor.basic_html @@ -231,55 +212,44 @@ items: config: - filter.format.basic_html module: - - ckeditor5 + - ckeditor format: basic_html - editor: ckeditor5 + editor: ckeditor settings: toolbar: - items: - - bold - - italic - - '|' - - link - - '|' - - bulletedList - - numberedList - - '|' - - blockQuote - - drupalInsertImage - - '|' - - heading - - code - - '|' - - sourceEditing + rows: + - + - + name: Formatting + items: + - Bold + - Italic + - + name: Linking + items: + - DrupalLink + - DrupalUnlink + - + name: Lists + items: + - BulletedList + - NumberedList + - + name: Media + items: + - Blockquote + - DrupalImage + - + name: 'Block Formatting' + items: + - Format + - + name: Tools + items: + - Source plugins: - ckeditor5_heading: - enabled_headings: - - heading2 - - heading3 - - heading4 - - heading5 - - heading6 - ckeditor5_imageResize: - allow_resize: true - ckeditor5_list: - reversed: false - startIndex: true - ckeditor5_sourceEditing: - allowed_tags: - - '' - - '
' - - '
' - - '
' - - '' - - '
' - - '