diff --git a/.ddev/.gitignore b/.ddev/.gitignore index 788b845..0014f32 100644 --- a/.ddev/.gitignore +++ b/.ddev/.gitignore @@ -1,41 +1,27 @@ #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 /.dbimageExtra -/.ddev-docker-*.yaml -/.*downloads +/.ddev-docker-compose-base.yaml +/.ddev-docker-compose-full.yaml +/.ddevlive-downloads /.global_commands /.homeadditions -/.importdb* /.sshimageBuild -/.venv /.webimageBuild /.webimageExtra /apache/apache-site.conf /commands/.gitattributes /commands/db/mysql /commands/host/launch -/commands/web/xdebug /commands/web/live -/config.local.y*ml +/commands/web/xdebug +/config.*.y*ml /db_snapshots /import-db /import.yaml -/mutagen/mutagen.yml -/mutagen/.start-synced /nginx_full/nginx-site.conf -/postgres/postgresql.conf -/providers/acquia.yaml -/providers/lagoon.yaml -/providers/platform.yaml -/providers/upsun.yaml /sequelpro.spf -/settings/settings.ddev.py -/traefik/config/agaric-coop.yaml -/traefik/certs/agaric-coop.crt -/traefik/certs/agaric-coop.key -/xhprof/xhprof_prepend.php /**/README.* 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/commands/web/drush b/.ddev/commands/web/drush new file mode 100755 index 0000000..359811b --- /dev/null +++ b/.ddev/commands/web/drush @@ -0,0 +1,7 @@ +#!/bin/bash + +## Description: Run drush inside the web container +## Usage: drush [flags] [args] +## Example: "ddev drush uli" or "ddev drush sql-cli" or "ddev drush --version" + +drush $@ diff --git a/.ddev/config.yaml b/.ddev/config.yaml index 84637ae..21fb041 100644 --- a/.ddev/config.yaml +++ b/.ddev/config.yaml @@ -1,23 +1,30 @@ +APIVersion: v1.13.1 name: agaric-coop -type: drupal9 +type: drupal8 docroot: web -php_version: "8.1" -webserver_type: apache-fpm +php_version: "7.3" +webserver_type: nginx-fpm router_http_port: "80" router_https_port: "443" -xdebug_enabled: false +xdebug_enabled: true additional_hostnames: [] additional_fqdns: [] -database: - type: mariadb - version: "10.5" +mariadb_version: "10.3" nfs_mount_enabled: false -mutagen_enabled: false +provider: default webimage_extra_packages: [rake, sassc] -use_dns_when_possible: true -composer_version: "2" -web_environment: [] -nodejs_version: "16" +use_dns_when_possible: false +php_version: "7.3" +timezone: "" + + +# This config.yaml was created with ddev version v1.13.1 +# webimage: drud/ddev-webserver:v1.13.1 +# dbimage: drud/ddev-dbserver-mariadb-10.2:v1.13.0 +# dbaimage: phpmyadmin/phpmyadmin:5 +# 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: @@ -28,34 +35,31 @@ nodejs_version: "16" # docroot: # Relative path to the directory containing index.php. -# php_version: "7.4" # PHP version to use, "5.6", "7.0", "7.1", "7.2", "7.3", "7.4", "8.0", "8.1" +# php_version: "7.3" # PHP version to use, "5.6", "7.0", "7.1", "7.2", "7.3", "7.4" -# You can explicitly specify the webimage but this +# 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: -# database: -# type: # mysql, mariadb -# version: # database version, like "10.3" or "8.0" -# Note that mariadb_version or mysql_version from v1.18 and earlier -# will automatically be converted to this notation with just a "ddev config --auto" +# mariadb_version and mysql_version +# ddev can use many versions of mariadb and mysql +# However these directives are mutually exclusive +# mariadb_version: 10.2 +# mysql_version: 8.0 # router_http_port: # Port to be used for http (defaults to port 80) # router_https_port: # Port for https (defaults to 443) # xdebug_enabled: false # Set to true to enable xdebug and "ddev start" or "ddev restart" # Note that for most people the commands -# "ddev xdebug" to enable xdebug and "ddev xdebug off" to disable it work better, +# "ddev exec enable_xdebug" and "ddev exec disable_xdebug" 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 # This is the timezone used in the containers and by PHP; @@ -63,26 +67,6 @@ nodejs_version: "16" # 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 select a minor version for example "2.2" which will -# install the latest release of that branch. Alternatively, an explicit Composer -# version may be specified, for example "1.0.22". Finally, it is also possible -# to use one of the key words "stable", "preview" or "snapshot" see Composer -# documentation. -# To reinstall Composer after the image was built, run "ddev debug refresh". - -# nodejs_version: "16" -# change from the default system Node.js version to another supported version, like 12, 14, 17, 18. -# Note that you can use 'ddev nvm' or nvm inside the web container to provide nearly any -# Node.js version, including v6, etc. - # additional_hostnames: # - somename # - someothername @@ -96,9 +80,7 @@ nodejs_version: "16" # Please take care with this because it can cause great confusion. # upload_dir: custom/upload/dir -# would set the destination path 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_dir don't have to be synced into mutagen +# would set the destination path for ddev import-files to custom/upload/dir. # working_dir: # web: /var/www/html @@ -107,24 +89,16 @@ nodejs_version: "16" # These values specify the destination directory for ddev ssh and the # directory in which commands passed into ddev exec are run. -# omit_containers: [db, dba, ddev-ssh-agent] -# Currently only these containers are supported. Some containers can also be -# omitted globally in the ~/.ddev/global_config.yaml. Note that if you omit -# the "db" container, several standard features of ddev that access the -# 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. # nfs_mount_enabled: false # Great performance improvement but requires host configuration first. # See https://ddev.readthedocs.io/en/stable/users/performance/#using-nfs-to-mount-the-project-into-the-container -# mutagen_enabled: false -# Performance improvement using mutagen asynchronous updates. -# See https://ddev.readthedocs.io/en/latest/users/performance/#using-mutagen - -# fail_on_hook_fail: False -# Decide whether 'ddev start' should be interrupted by a failing hook - # host_https_port: "59002" # The host port binding for https can be explicitly specified. It is # dynamic unless otherwise specified. @@ -141,23 +115,13 @@ nodejs_version: "16" # The host port binding for the ddev-dbserver can be explicitly specified. It is dynamic # unless explicitly specified. -# phpmyadmin_port: "8036" -# phpmyadmin_https_port: "8037" -# The PHPMyAdmin ports can be changed from the default 8036 and 8037 +# phpmyadmin_port: "1000" +# The PHPMyAdmin port can be changed from the default 8036 -# host_phpmyadmin_port: "8036" -# The phpmyadmin (dba) port is not normally bound on the host at all, instead being routed -# through ddev-router, but it can be specified and bound. +# mailhog_port: "1001" +# The MailHog port can be changed from the default 8025 -# mailhog_port: "8025" -# mailhog_https_port: "8026" -# The MailHog ports can be changed from the default 8025 and 8026 - -# host_mailhog_port: "8025" -# The mailhog port is not normally bound on the host at all, instead being routed -# through ddev-router, but it can be bound directly to localhost if specified here. - -# webimage_extra_packages: [php7.4-tidy, php-bcmath] +# 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] @@ -175,83 +139,21 @@ nodejs_version: "16" # If you prefer you can change this to "ddev.local" to preserve # pre-v1.9 behavior. -# ngrok_args: --basic-auth username:pass1234 +# ngrok_args: --subdomain mysite --auth username:pass # Provide extra flags to the "ngrok http" command, see # https://ngrok.com/docs#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 AdditionalConfiguration.php +# Drupal's settings.php/settings.ddev.php or TYPO3's AdditionalSettings.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 just the localhost interface. This means that ports -# will be available on the local network if the host firewall -# allows it. - -# default_container_timeout: 120 -# The default time that ddev waits for all containers to become ready can be increased from -# the default 120. This helps in importing huge databases, for example. - -#web_extra_exposed_ports: -#- name: nodejs -# container_port: 3000 -# http_port: 2999 -# https_port: 3000 -#- name: something -# container_port: 4000 -# https_port: 4000 -# http_port: 3999 -# Allows a set of extra ports to be exposed via ddev-router -# 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: -# - container_port: 3000 -# http_port: 9998 -# https_port: 9999 - -#web_extra_daemons: -#- name: "http-1" -# command: "/var/www/html/node_modules/.bin/http-server -p 3000" -# directory: /var/www/html -#- name: "http-2" -# command: "/var/www/html/node_modules/.bin/http-server /var/www/html/sub -p 3000" -# directory: /var/www/html - -# override_config: false -# By default, config.*.yaml files are *merged* into the configuration -# But this means that some things can't be overridden -# For example, if you have 'nfs_mount_enabled: true'' you can't override it with a merge -# and you can't erase existing hooks or all environment variables. -# However, with "override_config: true" in a particular config.*.yaml file, -# 'nfs_mount_enabled: false' can override the existing values, and -# hooks: -# post_start: [] -# or -# web_environment: [] -# or -# additional_hostnames: [] -# can have their intended affect. 'override_config' affects only behavior of the -# config.*.yaml file it exists in. - +# provider: default # Currently either "default" or "pantheon" +# # 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: diff --git a/.gitignore b/.gitignore index 77ff9b8..ee0d84d 100644 --- a/.gitignore +++ b/.gitignore @@ -20,7 +20,7 @@ web/themes/custom/*/src vendor/ ## Ignore folder for SQL dumps -/backups +/data ## Ignore other template-built files: drush/sites/local.site.yml diff --git a/.gitmodules b/.gitmodules index ae9d060..6021173 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,4 +1,4 @@ [submodule "web/themes/custom/agarica/patternlibrary"] path = web/themes/custom/agarica/patternlibrary - url = git@git.agaric.com:agaric/patternlibrary.git + url = git@gitlab.com:agaric/patternlibrary.git branch = master diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index d614e81..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "name": "Listen for Xdebug", - "type": "php", - "request": "launch", - "port": 9003, - "hostname": "0.0.0.0", - "pathMappings": { - "/var/www/html": "${workspaceRoot}" - } - }, - { - "name": "Launch currently open script", - "type": "php", - "request": "launch", - "program": "${file}", - "cwd": "${fileDirname}", - "port": 0, - "runtimeArgs": [ - "-dxdebug.start_with_request=yes" - ], - "env": { - "XDEBUG_MODE": "debug,develop", - "XDEBUG_CONFIG": "client_port=${port}" - } - }, - { - "name": "Launch Built-in web server", - "type": "php", - "request": "launch", - "runtimeArgs": [ - "-dxdebug.mode=debug", - "-dxdebug.start_with_request=yes", - "-S", - "localhost:0" - ], - "program": "", - "cwd": "${workspaceRoot}", - "port": 9003, - "serverReadyAction": { - "pattern": "Development Server \\(http://localhost:([0-9]+)\\) started", - "uriFormat": "http://localhost:%s", - "action": "openExternally" - } - } - ] -} diff --git a/README.md b/README.md index 02e7efd..3ed7d25 100644 --- a/README.md +++ b/README.md @@ -26,11 +26,10 @@ git submodule update To be able to import the configuration, you need to get the initializing database (where we will also be collaborating on content) [from the test site](https://agaric-test.drutopia.org/) pending resolution of [drutopia#216](https://gitlab.com/drutopia/drutopia/issues/216). ``` -ddev start -ddev auth ssh -ddev composer install -ddev . drush -y sql-dump > /tmp/paranoia.sql && drush sql-drop && drush -y sql-sync @live @self && drush -y updb -ddev . drush -y rsync @live:%files @self:%files +vagrant ssh +composer install +drush -y sql-dump > /tmp/paranoia.sql && drush sql-drop && drush -y sql-sync @live @self && drush -y updb +drush -y rsync @live:%files @self:%files ``` ### Get updates @@ -38,18 +37,16 @@ ddev . drush -y rsync @live:%files @self:%files ``` git pull git submodule update --recursive --remote -ddev start -ddev composer install -ddev . drush -y sql-dump > /tmp/paranoia.sql && drush -y sql-drop && drush -y sql-sync @live @self && drush -y updb -ddev . drush -y rsync @live:%files @self:%files -ddev . drush cim -y +vagrant ssh +composer install +drush -y sql-dump > /tmp/paranoia.sql && drush -y sql-drop && drush -y sql-sync @live @self && drush -y updb +drush -y rsync @live:%files @self:%files +drush cim -y ``` ## Theming -See `web/themes/custom/agarica/patternlibrary/README.md` for how to make changes, especially involving Sass to CSS compilation for styles. - -After making changes withing the Pattern Library within the custom Agaric theme, commit these changes *first* to the pattern library itself, and second commit the pattern library as a whole to the main project (it will be a single change, "Subproject commit" and the current hash value of the subproject repository. +See `web/themes/custom/agarica/README.md` and `web/themes/custom/agarica/patternlibrary/README.md` ## Deployment @@ -57,12 +54,11 @@ Agaric is currently using a Platform as a Service version of Drutopia with addit Set up [drutopia_host](https://gitlab.com/drutopia-platform/drutopia_host) and [hosting_private](https://gitlab.com/drutopia-platform/hosting_private), as documented in hosting private. -Then use [ahoy](https://github.com/ahoy-cli/ahoy/), from within the hosting_private directory (`cd ~/Projects/drutopia-platform/drutopia_host/hosting_private`). +Then use [ahoy](https://github.com/ahoy-cli/ahoy/), from within the hosting_private directory. Ensure all three related repositories are up-to-date with: ``` -cd ~/Projects/drutopia-platform/drutopia_host/hosting_private ahoy git-pull-all ``` @@ -72,19 +68,21 @@ If Agaric's Drutopia PaaS base has changed (the composer.lock in this directory) ahoy deploy-build agaric ``` -To deploy this build to an instance of the site plus config, templates, styles: +To deploy everything else (config, templates, styles): ``` ahoy deploy-site agaric_test ``` -(And likewise for `agaric_live`.) Use `deploy-site-force` in place of `deploy-site` if you need to override configuration changes made on live and you are certain you have captured all wanted changes. +(And likewise for `agaric_live`.) -Then record the deployment, logs from both deploy-site and deploy-build: +Then record the deployment. This applies to both deploy-site and deploy-build record keeping: +Navigate to `/drutopia_host/build_artifacts` +Add all new files generated with `git add . ` +Commit the files with a message on what you deployed with `git commit -m "Add artifacts"` +Push the changes to the repo with `git push` -``` -ahoy artifacts -``` +If you need to overwrite live configuration (only after confirming you've committed any parts you want to keep) you can use ahoy for that too with `deploy-site-force`. ### Drupal settings file management @@ -94,7 +92,7 @@ The Drupal settings files are also managed by Drutopia. On each deploy, the file ahoy vault-edit ``` -Look for the Yaml section for `agaric_live`, or `agaric_test`, as appropriate, and edit the `php_settings_code` section to add items to that site's setting overrides. For example: +Look for the Yaml section for agaric_live, or agaric_test, as appropriate, and edit the php_settings_code section to add items to that site's setting overrides. For example: ``` ... diff --git a/agaric-coop.code-workspace b/agaric-coop.code-workspace deleted file mode 100644 index 5709732..0000000 --- a/agaric-coop.code-workspace +++ /dev/null @@ -1,8 +0,0 @@ -{ - "folders": [ - { - "path": "." - } - ], - "settings": {} -} diff --git a/composer.json b/composer.json index d4b3118..a700cf7 100644 --- a/composer.json +++ b/composer.json @@ -1,196 +1,89 @@ { "name": "agaric-sites/agaric_coop", - "description": "Agaric site modified from template for composer-based Drupal 8 Drutopia projects.", + "description": "Agaric site modified from template for composer-based Drutopia projects.", "type": "project", "license": "GPL-2.0-or-later", "minimum-stability": "dev", "prefer-stable": true, - "homepage": "https://agaric.coop", - "support": { - "docs": "http://docs.drutopia.org/en/latest", - "issues": "https://gitlab.com/drutopia/drutopia/-/issues" - }, - "repositories": { - "drupal/search_api_entity_multiselect": { - "type": "git", - "url": "https://codeberg.org/agaric/search_api_entity_multiselect.git" - }, - "drupal/google_analytics": { - "type": "git", - "url": "git@git.drupal.org:issue/google_analytics-3357831.git" - }, - "drupal": { - "type": "composer", - "url": "https://packages.drupal.org/8" - } - }, "require": { - "composer/installers": "^2", - "cweagans/composer-patches": "^1", - "drupal/admin_toolbar": "^3", - "drupal/allowed_formats": "^2", - "drupal/antibot": "^2", - "drupal/asset_injector": "^2", - "drupal/auto_entitylabel": "^3.0@beta", - "drupal/backup_migrate": "^5", - "drupal/better_exposed_filters": "^6", - "drupal/block_class": "^2", - "drupal/bpmn_io": "^1", - "drupal/cancel_button": "^1", - "drupal/ckeditor_markdown": "^1.3", - "drupal/ckeditorheight": "^1", - "drupal/classitup": "^1", + "composer/installers": "^1.7", + "cweagans/composer-patches": "^1.0", + "drupal/admin_links_access_filter": "^1.0@alpha", + "drupal/allowed_formats": "^1.1", + "drupal/antibot": "^1.2", + "drupal/block_theme_sync": "1.x-dev", + "drupal/ckeditor_markdown": "^1.1", "drupal/coffee": "1.x-dev", - "drupal/comment_notify": "^1", - "drupal/content_lock": "^2", - "drupal/context_stack": "^1", - "drupal/convert_bundles": "^2", - "drupal/core-composer-scaffold": "^10", - "drupal/core-recommended": "^10", - "drupal/csp": "^1", - "drupal/customerror": "^1", - "drupal/dashboards": "^2", - "drupal/date_popup": "^2", - "drupal/datetimehideseconds": "^1", - "drupal/diff": "^1", - "drupal/drd": "^4", - "drupal/drd_agent": "^4", - "drupal/dropdown_language": "^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/email_registration": "^1", - "drupal/entity_notify": "^1", - "drupal/entity_reference_override": "^2", - "drupal/entitygroupfield": "^2", - "drupal/environment_indicator": "^4", - "drupal/eva": "^3", - "drupal/exif_orientation": "^1", - "drupal/feeds": "^3", - "drupal/feeds_ex": "^1", - "drupal/feeds_ical": "^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/flag": "^4", - "drupal/footnotes": "^3", - "drupal/fullcalendar_view": "^5", - "drupal/geolocation": "^3", - "drupal/gin": "^3", - "drupal/gin_gutenberg": "^1", - "drupal/gin_login": "^2", - "drupal/gin_toolbar": "^1", - "drupal/google_analytics": "dev-3357831-php-8.2-compatibility", - "drupal/gutenberg": "^2", - "drupal/http_cache_control": "^2", - "drupal/http_client_error_status": "^3", - "drupal/ief_complex_open": "^1", - "drupal/indieweb": "^1", - "drupal/inline_entity_form": "^1.0@RC", - "drupal/inotherwords": "^3", - "drupal/insert": "^3", - "drupal/key": "^1.14", - "drupal/link_attributes": "^1.9", - "drupal/linkit": "^6", - "drupal/mail_login": "^2.7", - "drupal/markdown": "^3", - "drupal/menu_item_extras": "^2.19", - "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/minimalhtml": "^2", - "drupal/multiparagraph_flow": "^1.0@dev", - "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/quickedit": "^1.0", - "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": "^2", - "drupal/scn": "^2", - "drupal/search404": "^2", - "drupal/search_api_autocomplete": "^1.6", - "drupal/search_api_entity_multiselect": "1.0.x-dev", - "drupal/search_api_saved_searches": "^1", - "drupal/seckit": "^2.0", - "drupal/select_or_other": "^4.0", - "drupal/seven": "^1.0", - "drupal/shield": "^1.4", - "drupal/smart_date": "^4.0", - "drupal/sms": "^2.0", - "drupal/social_post_facebook": "3.0.x-dev@dev", - "drupal/social_post_twitter": "3.x-dev@dev", - "drupal/stringoverrides": "^1.8", - "drupal/stripe_webform": "^2", - "drupal/subpathauto": "^1.0@RC", - "drupal/super_login": "^2.1", - "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.2", - "drupal/twigsuggest": "^1", - "drupal/ui_patterns": "^1", - "drupal/unique_content_field_validation": "^1.1", - "drupal/view_password": "^6", - "drupal/view_unpublished": "^1.0", - "drupal/views_daterange_filters": "^1.0@alpha", - "drupal/views_field_compare": "^1.0@beta", - "drupal/viewsreference": "^1", + "drupal/comment_notify": "dev-1.x", + "drupal/core-composer-scaffold": "^9.0.0", + "drupal/core-project-message": "^9.0.0", + "drupal/core-recommended": "^9.0.0", + "drupal/customerror": "1.x-dev", + "drupal/diff": "^1.0@RC", + "drupal/dropdown_language": "^2.2", + "drupal/drutopia_core": "dev-update-to-drupal9 as 1.x-dev", + "drupal/drutopia_site": "dev-1.x", + "drupal/google_analytics": "^2.3", + "drupal/honeypot": "^2.0", + "drupal/hotjar": "^1.2", + "drupal/http_cache_control": "^1.0", + "drupal/http_client_error_status": "^2.0", + "drupal/indieweb": "1.x-dev", + "drupal/mailchimp": "1.x-dev", + "drupal/mailsystem": "^4.3", + "drupal/markdown": "dev-2.x", + "drupal/menu_trail_by_path": "^1.1", + "drupal/migrate_plus": "^4.0", + "drupal/migrate_tools": "^4.0", + "drupal/mimemail": "^1.0@alpha", + "drupal/minimalhtml": "1.x-dev", + "drupal/multiline_config": "dev-1.x", + "drupal/paragraphs_features": "^1.4", + "drupal/preview_link": "^1.1", + "drupal/redirect": "^1.2", + "drupal/regionincontent": "1.x-dev", + "drupal/scheduler": "^1.0", + "drupal/scn": "^1.1", + "drupal/search404": "^1.0", + "drupal/stripe_webform": "1.x-dev", + "drupal/swiftmailer": "^2.0", + "drupal/textarea_widget_for_text": "1.x-dev", + "drupal/twigsuggest": "1.x-dev", + "drupal/ui_patterns": "1.x-dev", + "drupal/upgrade_status": "^2.0", + "drupal/viewsreference": "^2.0", "drupal/webform": "^6.0", "drupal/webform_mailchimp": "^5.4", - "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" + "drupal/wysiwyg_linebreaks": "1.x-dev", + "drush/drush": "^10.0", + "drutopia/drutopia": "dev-update-to-drupal9", + "league/commonmark": "^1.5", + "wikimedia/composer-merge-plugin": "^1.4", + "zaporylie/composer-drupal-optimizations": "^1.0" }, "require-dev": { "behat/behat": "^3.4", "behat/mink": "^1.7", - "drupal/upgrade_status": "^4" + "behat/mink-goutte-driver": "^1.2", + "phpunit/phpunit": "^7" + }, + "repositories": { + "drupal": { + "type": "composer", + "url": "https://packages.drupal.org/8" + }, + "drutopia": { + "type": "vcs", + "url": "https://gitlab.com/drutopia/drutopia" + }, + "drutopia_core": { + "type": "vcs", + "url": "https://gitlab.com/drutopia/drutopia_core" + } }, "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, - "wikimedia/composer-merge-plugin": true - } + "process-timeout": 600 }, "conflict": { "drupal/drupal": "*" @@ -199,10 +92,7 @@ "drupal-scaffold": { "locations": { "web-root": "web/" - }, - "allowed-packages": [ - "drupal/ui_patterns" - ] + } }, "installer-paths": { "web/core": ["type:drupal-core"], @@ -221,25 +111,47 @@ }, "enable-patching": true, "patches": { + "drupal/search404": { + "Remove search module dependency": "https://www.drupal.org/files/issues/2018-07-09/search404-core-search-dependency-9.patch" + }, "drupal/coffee": { "Allow user to specify keyboard shortcut.": "https://www.drupal.org/files/issues/2018-11-11/1734898-14.coffee-hotkeys-plus-g.patch" }, - "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/2021-12-01/2648950-257.patch", - "Views Date Filter Datetime Granularity Option": "https://www.drupal.org/files/issues/2021-04-27/2868014-110-after-2648950-247-applied.patch", - "Exception thrown by responsive srcset images when the image is not yet in the file system (such as with Stage File Proxy)": "https://www.drupal.org/files/issues/2021-09-03/responsive_image-remove_missing_response_image_width_exception-2827921-22.patch" + "drupal/wysiwyg_linebreaks": { + "Drupal 9 readiness and code standars": "https://www.drupal.org/files/issues/2020-04-21/drupal_9_readiness_and_code_standarts_3129608-7.patch", + "Excess line breaks keep getting added": "https://www.drupal.org/files/issues/2018-11-18/excess-line-breaks-keep-getting-added-3013853-5.patch" }, - "drupal/ds": { - "Parent theme template inheritance bug": "https://www.drupal.org/files/issues/2021-02-22/2895316-12.patch" + "drupal/textarea_widget_for_text": { + "Automated Drupal Rector fixes":"https://www.drupal.org/files/issues/2020-05-23/textarea_widget_for_text.1.1.rector.patch" + }, + "drupal/block_theme_sync": { + "Automated Drupal 9 compatibility fixes": "https://www.drupal.org/files/issues/2020-09-07/3146266-3.patch" + }, + "drupal/config_actions_provider": { + "Automated Drupal Rector fixes": "https://www.drupal.org/files/issues/2020-05-23/config_actions_provider.1.x-dev.rector.patch" + }, + "drupal/multiline_config": { + "Drupal 9 readiness for Multiline Config": "https://www.drupal.org/files/issues/2020-07-22/3109713-Drupal-support-13.patch" + }, + "drupal/mailchimp": { + "Drupal 9 compatibility": "https://www.drupal.org/files/issues/2020-07-16/mailchimp-d9-3138909-9.patch" + }, + "drupal/minimalhtml": { + "Automated Drupal Rector fixes": "https://www.drupal.org/files/issues/2020-09-09/3141144-4.txt" + }, + "drupal/regionincontent": { + "Region In Content Template": "https://www.drupal.org/files/issues/2020-06-06/regionincontent.1.x-dev.rector.patch" + }, + "drupal/stripe_webform": { + "Automated Drupal 9 compatibility fixes": "https://www.drupal.org/files/issues/2020-09-09/stripe_webform.1.x-dev.rector.patch" + }, + "drupal/markdown": { + "[markdown] Drupal 9 Support": "https://www.drupal.org/files/issues/2020-05-14/3103679-18.patch" } } }, "scripts": { - "nuke": "scripts/nuke.sh", - "pull": "scripts/pull.sh", - "pull-files": "drush -y rsync @live:%files @self:%files", - "css": "scripts/css.sh", + "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" diff --git a/composer.lock b/composer.lock index f3a3683..8532eb8 100644 --- a/composer.lock +++ b/composer.lock @@ -4,316 +4,55 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "01b4a11210293dc60eb5326704326b3a", + "content-hash": "6393c30d3fdd53e8702dd269355c86fe", "packages": [ { - "name": "abraham/twitteroauth", - "version": "7.0.0", - "source": { - "type": "git", - "url": "https://github.com/abraham/twitteroauth.git", - "reference": "a8622680f954d0c4f54fd80bedebe00c756ed7aa" - }, + "name": "algolia/places", + "version": "1.19.0", "dist": { - "type": "zip", - "url": "https://api.github.com/repos/abraham/twitteroauth/zipball/a8622680f954d0c4f54fd80bedebe00c756ed7aa", - "reference": "a8622680f954d0c4f54fd80bedebe00c756ed7aa", - "shasum": "" + "type": "tar", + "url": "https://registry.npmjs.org/places.js/-/places.js-1.19.0.tgz" }, "require": { - "composer/ca-bundle": "^1.2", - "ext-curl": "*", - "php": "8.*" + "composer/installers": "~1.0" }, - "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", - "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-12T00:31:53+00:00" - }, - { - "name": "albertofem/rsync-lib", - "version": "1.0.0", - "source": { - "type": "git", - "url": "https://github.com/albertofem/rsync-lib.git", - "reference": "6f7e31a15d5a2fe712136c367a35d2599bb5dbe5" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/albertofem/rsync-lib/zipball/6f7e31a15d5a2fe712136c367a35d2599bb5dbe5", - "reference": "6f7e31a15d5a2fe712136c367a35d2599bb5dbe5", - "shasum": "" - }, - "require": { - "php": ">=5.4" - }, - "require-dev": { - "phpunit/phpunit": ">=4.0,<6" - }, - "type": "library", + "type": "drupal-library", "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "psr-0": { - "AFM": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Alberto Fernandez", - "email": "albertofem@gmail.com" - } - ], - "description": "A simple PHP rsync wrapper library", - "homepage": "http://albertofem.com", - "keywords": [ - "rsync library" - ], - "support": { - "issues": "https://github.com/albertofem/rsync-lib/issues", - "source": "https://github.com/albertofem/rsync-lib/tree/master" - }, - "time": "2018-01-13T20:13:12+00:00" - }, - { - "name": "arthurkushman/query-path", - "version": "3.1.4", - "source": { - "type": "git", - "url": "https://github.com/arthurkushman/querypath.git", - "reference": "a62260eddc58e0b30dfeb7c9db60a8bd593d2135" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/arthurkushman/querypath/zipball/a62260eddc58e0b30dfeb7c9db60a8bd593d2135", - "reference": "a62260eddc58e0b30dfeb7c9db60a8bd593d2135", - "shasum": "" - }, - "require": { - "masterminds/html5": "2.*", - "php": ">=7.1" - }, - "require-dev": { - "fzaninotto/faker": "^1.8", - "mockery/mockery": "^1.1", - "phpunit/phpunit": "^7.2" - }, - "type": "library", - "autoload": { - "files": [ - "src/qp_functions.php" - ], - "psr-4": { - "QueryPath\\": "src/", - "QueryPathTests\\": "tests/QueryPath/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "description": "HTML/XML querying (CSS 4 or XPath) and processing (like jQuery)", - "homepage": "https://github.com/arthurkushman/querypath", - "keywords": [ - "PHP7", - "css", - "html", - "jquery", - "xml", - "xslt" - ], - "support": { - "issues": "https://github.com/arthurkushman/querypath/issues", - "source": "https://github.com/arthurkushman/querypath/tree/3.1.4" - }, - "time": "2022-03-28T14:28:31+00:00" + "installer-name": "algolia.places" + } }, { "name": "asm89/stack-cors", - "version": "v2.2.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://github.com/asm89/stack-cors.git", - "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea" + "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/asm89/stack-cors/zipball/50f57105bad3d97a43ec4a485eb57daf347eafea", - "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea", + "url": "https://api.github.com/repos/asm89/stack-cors/zipball/b9c31def6a83f84b4d4a40d35996d375755f0e08", + "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08", "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|~5.0", + "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.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/", @@ -332,79 +71,30 @@ "cors", "stack" ], - "support": { - "issues": "https://github.com/asm89/stack-cors/issues", - "source": "https://github.com/asm89/stack-cors/tree/v2.2.0" - }, - "time": "2023-11-14T13:51:46+00:00" - }, - { - "name": "barnabywalters/mf-cleaner", - "version": "v0.1.4", - "source": { - "type": "git", - "url": "https://github.com/barnabywalters/php-mf-cleaner.git", - "reference": "ef6a16628db6e8aee2b4f8bb8093d18c24b74cd4" - }, - "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" + "time": "2019-12-24T22:41:47+00:00" }, { "name": "caxy/php-htmldiff", - "version": "v0.1.15", + "version": "v0.1.9", "source": { "type": "git", "url": "https://github.com/caxy/php-htmldiff.git", - "reference": "6342b02ddb86fd36093ad7e2db2efc21f01ab7cd" + "reference": "4bad5c6a4ecc76954d37764e6a29273b6b7bf1f8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/caxy/php-htmldiff/zipball/6342b02ddb86fd36093ad7e2db2efc21f01ab7cd", - "reference": "6342b02ddb86fd36093ad7e2db2efc21f01ab7cd", + "url": "https://api.github.com/repos/caxy/php-htmldiff/zipball/4bad5c6a4ecc76954d37764e6a29273b6b7bf1f8", + "reference": "4bad5c6a4ecc76954d37764e6a29273b6b7bf1f8", "shasum": "" }, "require": { - "ext-dom": "*", - "ext-mbstring": "*", "ezyang/htmlpurifier": "^4.7", - "php": ">=7.3" + "kub-at/php-simple-html-dom-parser": "^1.7", + "php": ">=5.3.3" }, "require-dev": { "doctrine/cache": "~1.0", - "phpunit/phpunit": "~9.0" + "phpunit/phpunit": "~5.0" }, "suggest": { "doctrine/cache": "Used for caching the calculated diffs using a Doctrine Cache Provider" @@ -437,24 +127,20 @@ "diff", "html" ], - "support": { - "issues": "https://github.com/caxy/php-htmldiff/issues", - "source": "https://github.com/caxy/php-htmldiff/tree/v0.1.15" - }, - "time": "2023-11-05T23:49:04+00:00" + "time": "2019-02-20T18:52:14+00:00" }, { "name": "cebe/markdown", - "version": "1.2.1", + "version": "1.1.2", "source": { "type": "git", "url": "https://github.com/cebe/markdown.git", - "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86" + "reference": "25b28bae8a6f185b5030673af77b32e1163d5c6e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/cebe/markdown/zipball/9bac5e971dd391e2802dca5400bbeacbaea9eb86", - "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86", + "url": "https://api.github.com/repos/cebe/markdown/zipball/25b28bae8a6f185b5030673af77b32e1163d5c6e", + "reference": "25b28bae8a6f185b5030673af77b32e1163d5c6e", "shasum": "" }, "require": { @@ -472,7 +158,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.2.x-dev" + "dev-master": "1.1.x-dev" } }, "autoload": { @@ -501,57 +187,42 @@ "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" + "time": "2017-07-16T21:13:23+00:00" }, { "name": "chi-teck/drupal-code-generator", - "version": "3.3.0", + "version": "1.32.1", "source": { "type": "git", "url": "https://github.com/Chi-teck/drupal-code-generator.git", - "reference": "56da9209b24a5a5b5d27bec9e523f02bdd101770" + "reference": "8abba7131ed4c89c1e8fc6dca0d05a4b6d0b2749" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/56da9209b24a5a5b5d27bec9e523f02bdd101770", - "reference": "56da9209b24a5a5b5d27bec9e523f02bdd101770", + "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/8abba7131ed4c89c1e8fc6dca0d05a4b6d0b2749", + "reference": "8abba7131ed4c89c1e8fc6dca0d05a4b6d0b2749", "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-alpha4", - "drupal/coder": "8.3.22", - "drupal/core": "10.1.x-dev", - "ext-simplexml": "*", - "phpspec/prophecy-phpunit": "^2.0", - "phpunit/phpunit": "^9.5", - "squizlabs/php_codesniffer": "^3.7", - "symfony/var-dumper": "^6.3", - "symfony/yaml": "^6.3", - "vimeo/psalm": "^5.14.0" + "php": ">=5.5.9", + "symfony/console": "^3.4 || ^4.0", + "symfony/filesystem": "^2.7 || ^3.4 || ^4.0", + "twig/twig": "^1.41 || ^2.12" }, "bin": [ "bin/dcg" ], "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, "autoload": { + "files": [ + "src/bootstrap.php" + ], "psr-4": { "DrupalCodeGenerator\\": "src" } @@ -561,105 +232,136 @@ "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.3.0" - }, - "time": "2023-10-21T12:57:05+00:00" + "time": "2020-07-15T06:08:04+00:00" }, { - "name": "cocur/slugify", - "version": "v3.2", - "source": { - "type": "git", - "url": "https://github.com/cocur/slugify.git", - "reference": "d41701efe58ba2df9cae029c3d21e1518cc6780e" - }, + "name": "choices/choices", + "version": "9.0.1", "dist": { "type": "zip", - "url": "https://api.github.com/repos/cocur/slugify/zipball/d41701efe58ba2df9cae029c3d21e1518cc6780e", - "reference": "d41701efe58ba2df9cae029c3d21e1518cc6780e", - "shasum": "" + "url": "https://github.com/jshjohnson/Choices/archive/v9.0.1.zip" }, "require": { - "ext-mbstring": "*", - "php": ">=5.5.9" + "composer/installers": "~1.0" }, - "require-dev": { - "laravel/framework": "~5.1", - "latte/latte": "~2.2", - "league/container": "^2.2.0", - "mikey179/vfsstream": "~1.6", - "mockery/mockery": "~0.9", - "nette/di": "~2.2", - "phpunit/phpunit": "~4.8.36|~5.2", - "pimple/pimple": "~1.1", - "plumphp/plum": "~0.1", - "silex/silex": "~1.3", - "symfony/config": "~2.4|~3.0|~4.0", - "symfony/dependency-injection": "~2.4|~3.0|~4.0", - "symfony/http-kernel": "~2.4|~3.0|~4.0", - "twig/twig": "~1.26|~2.0", - "zendframework/zend-modulemanager": "~2.2", - "zendframework/zend-servicemanager": "~2.2", - "zendframework/zend-view": "~2.2" + "type": "drupal-library", + "extra": { + "installer-name": "choices" + } + }, + { + "name": "ckeditor/autogrow", + "version": "4.14.1", + "dist": { + "type": "zip", + "url": "https://download.ckeditor.com/autogrow/releases/autogrow_4.14.1.zip" }, - "type": "library", - "autoload": { - "psr-4": { - "Cocur\\Slugify\\": "src" - } + "require": { + "composer/installers": "~1.0" }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Ivo Bathke", - "email": "ivo.bathke@gmail.com" - }, - { - "name": "Florian Eckerstorfer", - "email": "florian@eckerstorfer.co", - "homepage": "https://florian.ec" - } - ], - "description": "Converts a string into a slug.", - "keywords": [ - "slug", - "slugify" - ], - "support": { - "issues": "https://github.com/cocur/slugify/issues", - "source": "https://github.com/cocur/slugify/tree/master" + "type": "drupal-library", + "extra": { + "installer-name": "ckeditor.autogrow" + } + }, + { + "name": "ckeditor/codemirror", + "version": "v1.17.12", + "dist": { + "type": "zip", + "url": "https://github.com/w8tcha/CKEditor-CodeMirror-Plugin/releases/download/v1.17.12/CKEditor-CodeMirror-Plugin.zip" }, - "time": "2019-01-31T20:38:55+00:00" + "require": { + "composer/installers": "~1.0" + }, + "type": "drupal-library", + "extra": { + "installer-name": "ckeditor.codemirror" + } + }, + { + "name": "ckeditor/fakeobjects", + "version": "4.14.1", + "dist": { + "type": "zip", + "url": "https://download.ckeditor.com/fakeobjects/releases/fakeobjects_4.14.1.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "drupal-library", + "extra": { + "installer-name": "ckeditor.fakeobjects" + } + }, + { + "name": "ckeditor/image", + "version": "4.14.1", + "dist": { + "type": "zip", + "url": "https://download.ckeditor.com/image/releases/image_4.14.1.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "drupal-library", + "extra": { + "installer-name": "ckeditor.image" + } + }, + { + "name": "ckeditor/link", + "version": "4.14.1", + "dist": { + "type": "zip", + "url": "https://download.ckeditor.com/link/releases/link_4.14.1.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "drupal-library", + "extra": { + "installer-name": "ckeditor.link" + } + }, + { + "name": "codemirror/codemirror", + "version": "5.57.0", + "dist": { + "type": "zip", + "url": "https://github.com/components/codemirror/archive/5.57.0.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "drupal-library", + "extra": { + "installer-name": "codemirror" + } }, { "name": "commerceguys/addressing", - "version": "v1.4.2", + "version": "v1.0.9", "source": { "type": "git", "url": "https://github.com/commerceguys/addressing.git", - "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308" + "reference": "7f6b8780ae20862529a0ceaaf102a3f7ff740b91" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/commerceguys/addressing/zipball/406c7b5f0fbe4f6a64155c0fe03b1adb34d01308", - "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308", + "url": "https://api.github.com/repos/commerceguys/addressing/zipball/7f6b8780ae20862529a0ceaaf102a3f7ff740b91", + "reference": "7f6b8780ae20862529a0ceaaf102a3f7ff740b91", "shasum": "" }, "require": { - "doctrine/collections": "^1.2 || ^2.0", - "php": ">=7.3" + "doctrine/collections": "~1.0", + "php": ">=7.0.8" }, "require-dev": { - "ext-json": "*", - "mikey179/vfsstream": "^1.6.10", - "phpunit/phpunit": "^9.5", - "squizlabs/php_codesniffer": "^3.6", - "symfony/validator": "^4.4 || ^5.4 || ^6.0" + "mikey179/vfsstream": "1.*", + "phpunit/phpunit": "^6.0", + "squizlabs/php_codesniffer": "2.*", + "symfony/validator": "^3.4" }, "suggest": { "symfony/validator": "to validate addresses" @@ -694,121 +396,42 @@ "localization", "postal" ], - "support": { - "issues": "https://github.com/commerceguys/addressing/issues", - "source": "https://github.com/commerceguys/addressing/tree/v1.4.2" - }, - "time": "2023-02-15T10:11:14+00:00" - }, - { - "name": "composer/ca-bundle", - "version": "1.4.0", - "source": { - "type": "git", - "url": "https://github.com/composer/ca-bundle.git", - "reference": "b66d11b7479109ab547f9405b97205640b17d385" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/composer/ca-bundle/zipball/b66d11b7479109ab547f9405b97205640b17d385", - "reference": "b66d11b7479109ab547f9405b97205640b17d385", - "shasum": "" - }, - "require": { - "ext-openssl": "*", - "ext-pcre": "*", - "php": "^5.3.2 || ^7.0 || ^8.0" - }, - "require-dev": { - "phpstan/phpstan": "^0.12.55", - "psr/log": "^1.0", - "symfony/phpunit-bridge": "^4.2 || ^5", - "symfony/process": "^2.5 || ^3.0 || ^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.4.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": "2023-12-18T12:05:55+00:00" + "time": "2020-09-12T12:15:49+00:00" }, { "name": "composer/installers", - "version": "v2.2.0", + "version": "v1.9.0", "source": { "type": "git", "url": "https://github.com/composer/installers.git", - "reference": "c29dc4b93137acb82734f672c37e029dfbd95b35" + "reference": "b93bcf0fa1fccb0b7d176b0967d969691cd74cca" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/installers/zipball/c29dc4b93137acb82734f672c37e029dfbd95b35", - "reference": "c29dc4b93137acb82734f672c37e029dfbd95b35", + "url": "https://api.github.com/repos/composer/installers/zipball/b93bcf0fa1fccb0b7d176b0967d969691cd74cca", + "reference": "b93bcf0fa1fccb0b7d176b0967d969691cd74cca", "shasum": "" }, "require": { - "composer-plugin-api": "^1.0 || ^2.0", - "php": "^7.2 || ^8.0" + "composer-plugin-api": "^1.0 || ^2.0" + }, + "replace": { + "roundcube/plugin-installer": "*", + "shama/baton": "*" }, "require-dev": { - "composer/composer": "1.6.* || ^2.0", - "composer/semver": "^1 || ^3", - "phpstan/phpstan": "^0.12.55", - "phpstan/phpstan-phpunit": "^0.12.16", - "symfony/phpunit-bridge": "^5.3", - "symfony/process": "^5" + "composer/composer": "1.6.* || 2.0.*@dev", + "composer/semver": "1.0.* || 2.0.*@dev", + "phpunit/phpunit": "^4.8.36", + "sebastian/comparator": "^1.2.4", + "symfony/process": "^2.3" }, "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": { @@ -829,6 +452,7 @@ "description": "A multi-framework Composer library installer", "homepage": "https://composer.github.io/installers/", "keywords": [ + "Craft", "Dolibarr", "Eliasis", "Hurad", @@ -844,11 +468,11 @@ "Porto", "RadPHP", "SMF", - "Starbug", "Thelia", "Whmcs", "WolfCMS", "agl", + "aimeos", "annotatecms", "attogram", "bitrix", @@ -867,6 +491,7 @@ "grav", "installer", "itop", + "joomla", "known", "kohana", "laravel", @@ -875,18 +500,14 @@ "magento", "majima", "mako", - "matomo", "mediawiki", - "miaoxing", "modulework", "modx", "moodle", "osclass", - "pantheon", "phpbb", "piwik", "ppi", - "processwire", "puppet", "pxcms", "reindex", @@ -895,57 +516,39 @@ "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.2.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": "2022-08-20T06:45:11+00:00" + "time": "2020-04-07T06:57:05+00:00" }, { "name": "composer/semver", - "version": "3.4.0", + "version": "1.5.1", "source": { "type": "git", "url": "https://github.com/composer/semver.git", - "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32" + "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32", - "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32", + "url": "https://api.github.com/repos/composer/semver/zipball/c6bea70230ef4dd483e6bbcab6005f682ed3a8de", + "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de", "shasum": "" }, "require": { - "php": "^5.3.2 || ^7.0 || ^8.0" + "php": "^5.3.2 || ^7.0" }, "require-dev": { - "phpstan/phpstan": "^1.4", - "symfony/phpunit-bridge": "^4.2 || ^5" + "phpunit/phpunit": "^4.5 || ^5.0.5" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "3.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { @@ -981,59 +584,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.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": "2023-08-31T09:50:34+00:00" + "time": "2020-01-13T12:06:48+00:00" }, { "name": "consolidation/annotated-command", - "version": "4.9.2", + "version": "2.12.0", "source": { "type": "git", "url": "https://github.com/consolidation/annotated-command.git", - "reference": "b5255dcbee1de95036185062a103dabc622224de" + "reference": "512a2e54c98f3af377589de76c43b24652bcb789" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/b5255dcbee1de95036185062a103dabc622224de", - "reference": "b5255dcbee1de95036185062a103dabc622224de", + "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/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", - "symfony/event-dispatcher": "^4.4.8 || ^5 || ^6", - "symfony/finder": "^4.4.8 || ^5 || ^6" + "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": { @@ -1052,48 +680,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.9.2" - }, - "time": "2023-12-26T14:30:50+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": { @@ -1112,39 +761,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": { @@ -1163,39 +828,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.0.0", + "version": "1.1.1", "source": { "type": "git", "url": "https://github.com/consolidation/log.git", - "reference": "caaad9d70dae54eb49002666f000e3c607066878" + "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/log/zipball/caaad9d70dae54eb49002666f000e3c607066878", - "reference": "caaad9d70dae54eb49002666f000e3c607066878", + "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" + "php": ">=5.4.5", + "psr/log": "^1.0", + "symfony/console": "^2.8|^3|^4" }, "require-dev": { - "phpunit/phpunit": ">=7.5.20", - "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": { + "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-main": "2.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { @@ -1214,44 +918,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.0.0" - }, - "time": "2022-04-05T16:53:32+00:00" + "time": "2019-01-01T17:30:51+00:00" }, { "name": "consolidation/output-formatters", - "version": "4.3.2", + "version": "3.5.0", "source": { "type": "git", "url": "https://github.com/consolidation/output-formatters.git", - "reference": "06711568b4cd169700ff7e8075db0a9a341ceb58" + "reference": "99ec998ffb697e0eada5aacf81feebfb13023605" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/06711568b4cd169700ff7e8075db0a9a341ceb58", - "reference": "06711568b4cd169700ff7e8075db0a9a341ceb58", + "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/99ec998ffb697e0eada5aacf81feebfb13023605", + "reference": "99ec998ffb697e0eada5aacf81feebfb13023605", "shasum": "" }, "require": { - "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3", - "php": ">=7.1.3", - "symfony/console": "^4 || ^5 || ^6", - "symfony/finder": "^4 || ^5 || ^6" + "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", - "symfony/yaml": "^4 || ^5 || ^6", - "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" @@ -1268,63 +1019,95 @@ } ], "description": "Format text by applying transformations provided by plug-in formatters.", - "support": { - "issues": "https://github.com/consolidation/output-formatters/issues", - "source": "https://github.com/consolidation/output-formatters/tree/4.3.2" - }, - "time": "2023-07-06T04:45:41+00:00" + "time": "2019-05-30T23:16:01+00:00" }, { "name": "consolidation/robo", - "version": "4.0.6", + "version": "1.4.12", "source": { "type": "git", - "url": "https://github.com/consolidation/robo.git", - "reference": "55a272370940607649e5c46eb173c5c54f7c166d" + "url": "https://github.com/consolidation/Robo.git", + "reference": "eb45606f498b3426b9a98b7c85e300666a968e51" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/robo/zipball/55a272370940607649e5c46eb173c5c54f7c166d", - "reference": "55a272370940607649e5c46eb173c5c54f7c166d", + "url": "https://api.github.com/repos/consolidation/Robo/zipball/eb45606f498b3426b9a98b7c85e300666a968e51", + "reference": "eb45606f498b3426b9a98b7c85e300666a968e51", "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.11.0|^4.1", + "consolidation/config": "^1.2.1", + "consolidation/log": "^1.1.1|^2", + "consolidation/output-formatters": "^3.1.13|^4.1", + "consolidation/self-update": "^1.1.5", + "grasmash/yaml-expander": "^1.4", + "league/container": "^2.4.1", + "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": { + "g1a/composer-test-scenarios": "^3", "natxet/cssmin": "3.0.4", "patchwork/jsqueeze": "^2", "pear/archive_tar": "^1.4.4", - "phpunit/phpunit": "^7.5.20 || ^8", - "squizlabs/php_codesniffer": "^3.6", - "yoast/phpunit-polyfills": "^0.2.0" + "php-coveralls/php-coveralls": "^1", + "phpunit/phpunit": "^5.7.27", + "squizlabs/php_codesniffer": "^3" }, "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" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.36" + }, + "remove": [ + "php-coveralls/php-coveralls" + ], + "config": { + "platform": { + "php": "5.5.9" + } + }, + "scenario-options": { + "create-lockfile": "false" + } + } + }, + "branch-alias": { + "dev-master": "1.x-dev" + } + }, "autoload": { "psr-4": { "Robo\\": "src" @@ -1341,31 +1124,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": "2020-02-18T17:31:26+00:00" }, { "name": "consolidation/self-update", - "version": "2.2.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://github.com/consolidation/self-update.git", - "reference": "972a1016761c9b63314e040836a12795dff6953a" + "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4" }, "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/dba6b2c0708f20fa3ba8008a2353b637578849b4", + "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4", "shasum": "" }, "require": { - "composer/semver": "^3.2", "php": ">=5.5.0", - "symfony/console": "^2.8 || ^3 || ^4 || ^5 || ^6", - "symfony/filesystem": "^2.5 || ^3 || ^4 || ^5 || ^6" + "symfony/console": "^2.8|^3|^4|^5", + "symfony/filesystem": "^2.5|^3|^4|^5" }, "bin": [ "scripts/release" @@ -1373,7 +1151,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "2.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { @@ -1396,43 +1174,55 @@ } ], "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": "2020-04-13T02:49:20+00:00" }, { "name": "consolidation/site-alias", - "version": "4.0.1", + "version": "3.0.1", "source": { "type": "git", "url": "https://github.com/consolidation/site-alias.git", - "reference": "b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5" + "reference": "fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/site-alias/zipball/b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5", - "reference": "b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5", + "url": "https://api.github.com/repos/consolidation/site-alias/zipball/fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26", + "reference": "fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26", "shasum": "" }, "require": { - "consolidation/config": "^1.2.1 || ^2", - "php": ">=7.4", - "symfony/filesystem": "^5.4 || ^6", - "symfony/finder": "^5 || ^6" + "consolidation/config": "^1.2.1|^2", + "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|^2", + "g1a/composer-test-scenarios": "^3", + "knplabs/github-api": "^2.7", + "php-coveralls/php-coveralls": "^2.2", + "php-http/guzzle6-adapter": "^1.1", + "phpunit/phpunit": "^6", + "squizlabs/php_codesniffer": "^2.8", + "symfony/yaml": "~2.3|^3|^4.4|^5" }, "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": { @@ -1455,41 +1245,56 @@ } ], "description": "Manage alias records for local and remote sites.", - "support": { - "issues": "https://github.com/consolidation/site-alias/issues", - "source": "https://github.com/consolidation/site-alias/tree/4.0.1" - }, - "time": "2023-04-29T17:18:10+00:00" + "time": "2020-05-28T00:33:41+00:00" }, { "name": "consolidation/site-process", - "version": "5.2.0", + "version": "2.1.0", "source": { "type": "git", "url": "https://github.com/consolidation/site-process.git", - "reference": "6c44638d7af8a8b4abe12c3180701243f480539d" + "reference": "f3211fa4c60671c6f068184221f06f932556e443" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/consolidation/site-process/zipball/6c44638d7af8a8b4abe12c3180701243f480539d", - "reference": "6c44638d7af8a8b4abe12c3180701243f480539d", + "url": "https://api.github.com/repos/consolidation/site-process/zipball/f3211fa4c60671c6f068184221f06f932556e443", + "reference": "f3211fa4c60671c6f068184221f06f932556e443", "shasum": "" }, "require": { - "consolidation/config": "^2", - "consolidation/site-alias": "^3 || ^4", - "php": ">=8.0.14", - "symfony/console": "^5.4 || ^6", - "symfony/process": "^6" + "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": { @@ -1512,32 +1317,60 @@ } ], "description": "A thin wrapper around the Symfony Process Component that allows applications to use the Site Alias library to specify the target for a remote call.", - "support": { - "issues": "https://github.com/consolidation/site-process/issues", - "source": "https://github.com/consolidation/site-process/tree/5.2.0" - }, - "time": "2022-12-06T17:57:16+00:00" + "time": "2019-09-10T17:56:24+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", + "abandoned": "psr/container", + "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", @@ -1560,108 +1393,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" - }, - { - "name": "cypresslab/gitelephant", - "version": "v4.5.0", - "source": { - "type": "git", - "url": "https://github.com/matteosister/GitElephant.git", - "reference": "6f396bdb41fa0b2e5e414e16188f6eb107021947" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/matteosister/GitElephant/zipball/6f396bdb41fa0b2e5e414e16188f6eb107021947", - "reference": "6f396bdb41fa0b2e5e414e16188f6eb107021947", - "shasum": "" - }, - "require": { - "php": ">=7.2.0", - "phpcollection/phpcollection": "~0.4|~0.5", - "symfony/filesystem": ">=3.4", - "symfony/finder": ">=3.4", - "symfony/process": ">=3.4" - }, - "require-dev": { - "mockery/mockery": "~1.1", - "php": ">=7.2.0", - "phpstan/phpstan": "*", - "phpstan/phpstan-phpunit": "*", - "phpunit/phpunit": "~8.0|~9.0", - "rector/rector": "*", - "symplify/easy-coding-standard": "*" - }, - "type": "library", - "autoload": { - "psr-0": { - "GitElephant": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "LGPL-3.0+" - ], - "authors": [ - { - "name": "Matteo Giachino", - "email": "matteog@gmail.com" - } - ], - "description": "An abstraction layer for git written in PHP", - "homepage": "http://gitelephant.cypresslab.net/", - "keywords": [ - "git" - ], - "support": { - "issues": "https://github.com/matteosister/GitElephant/issues", - "source": "https://github.com/matteosister/GitElephant/tree/v4.5.0" - }, - "funding": [ - { - "url": "https://tidelift.com/funding/github/packagist/cypresslab/gitelephant", - "type": "tidelift" - } - ], - "time": "2022-10-08T12:56:52+00:00" + "time": "2019-08-29T20:11:49+00:00" }, { "name": "dflydev/dot-access-data", - "version": "v3.0.2", + "version": "v1.1.0", "source": { "type": "git", "url": "https://github.com/dflydev/dflydev-dot-access-data.git", - "reference": "f41715465d65213d644d3141a6a93081be5d3549" + "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549", - "reference": "f41715465d65213d644d3141a6a93081be5d3549", + "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/", @@ -1683,11 +1442,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.", @@ -1698,29 +1452,25 @@ "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.2" - }, - "time": "2022-10-27T11:44:00+00:00" + "time": "2017-01-20T21:14:22+00:00" }, { "name": "dg/twitter-php", - "version": "v3.8", + "version": "v3.6", "source": { "type": "git", "url": "https://github.com/dg/twitter-php.git", - "reference": "d9370c9759138200a77ca86abcb0c5ddfe857c68" + "reference": "dd872ad12121ff919b358989e61f7f08ba6cc7a8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dg/twitter-php/zipball/d9370c9759138200a77ca86abcb0c5ddfe857c68", - "reference": "d9370c9759138200a77ca86abcb0c5ddfe857c68", + "url": "https://api.github.com/repos/dg/twitter-php/zipball/dd872ad12121ff919b358989e61f7f08ba6cc7a8", + "reference": "dd872ad12121ff919b358989e61f7f08ba6cc7a8", "shasum": "" }, "require": { "ext-curl": "*", - "php": ">=5.4.0" + "php": ">=5.2.0" }, "type": "library", "autoload": { @@ -1744,43 +1494,69 @@ "oauth", "twitter" ], - "support": { - "source": "https://github.com/dg/twitter-php/tree/v3.8" - }, - "time": "2019-02-08T16:20:01+00:00" + "time": "2016-08-15T16:46:22+00:00" }, { - "name": "doctrine/annotations", - "version": "1.14.3", + "name": "dnoegel/php-xdg-base-dir", + "version": "v0.1.1", "source": { "type": "git", - "url": "https://github.com/doctrine/annotations.git", - "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af" + "url": "https://github.com/dnoegel/php-xdg-base-dir.git", + "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/annotations/zipball/fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af", - "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af", + "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd", + "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd", "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 || ^10", - "phpstan/phpstan": "~1.4.10 || ^1.8.0", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", - "symfony/cache": "^4.4 || ^5.4 || ^6", - "vimeo/psalm": "^4.10" - }, - "suggest": { - "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations" + "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35" }, "type": "library", + "autoload": { + "psr-4": { + "XdgBaseDir\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "implementation of xdg base directory specification for php", + "time": "2019-12-04T15:06:13+00:00" + }, + { + "name": "doctrine/annotations", + "version": "v1.4.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/annotations.git", + "reference": "54cacc9b81758b14e3ce750f205a393d52339e97" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97", + "reference": "54cacc9b81758b14e3ce750f205a393d52339e97", + "shasum": "" + }, + "require": { + "doctrine/lexer": "1.*", + "php": "^5.6 || ^7.0" + }, + "require-dev": { + "doctrine/cache": "1.*", + "phpunit/phpunit": "^5.7" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.4.x-dev" + } + }, "autoload": { "psr-4": { "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations" @@ -1791,10 +1567,6 @@ "MIT" ], "authors": [ - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, { "name": "Roman Borschel", "email": "roman@code-factory.org" @@ -1803,6 +1575,10 @@ "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" @@ -1813,48 +1589,48 @@ } ], "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.3" - }, - "time": "2023-02-01T09:20:38+00:00" + "time": "2017-02-24T16:22:25+00:00" }, { - "name": "doctrine/collections", - "version": "2.1.4", + "name": "doctrine/cache", + "version": "v1.6.2", "source": { "type": "git", - "url": "https://github.com/doctrine/collections.git", - "reference": "72328a11443a0de79967104ad36ba7b30bded134" + "url": "https://github.com/doctrine/cache.git", + "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/collections/zipball/72328a11443a0de79967104ad36ba7b30bded134", - "reference": "72328a11443a0de79967104ad36ba7b30bded134", + "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b", + "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b", "shasum": "" }, "require": { - "doctrine/deprecations": "^1", - "php": "^8.1" + "php": "~5.5|~7.0" + }, + "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": "^9.5", - "vimeo/psalm": "^5.11" + "phpunit/phpunit": "~4.8|~5.0", + "predis/predis": "~1.0", + "satooshi/php-coveralls": "~0.6" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.6.x-dev" + } + }, "autoload": { "psr-4": { - "Doctrine\\Common\\Collections\\": "src" + "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache" } }, "notification-url": "https://packagist.org/downloads/", @@ -1862,10 +1638,6 @@ "MIT" ], "authors": [ - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, { "name": "Roman Borschel", "email": "roman@code-factory.org" @@ -1874,6 +1646,10 @@ "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" @@ -1883,110 +1659,44 @@ "email": "schmittjoh@gmail.com" } ], - "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.", - "homepage": "https://www.doctrine-project.org/projects/collections.html", + "description": "Caching library offering an object-oriented API for many cache backends", + "homepage": "http://www.doctrine-project.org", "keywords": [ - "array", - "collections", - "iterators", - "php" + "cache", + "caching" ], - "support": { - "issues": "https://github.com/doctrine/collections/issues", - "source": "https://github.com/doctrine/collections/tree/2.1.4" - }, - "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": "2023-10-03T09:22:33+00:00" + "time": "2017-07-22T12:49:21+00:00" }, { - "name": "doctrine/deprecations", - "version": "1.1.3", + "name": "doctrine/collections", + "version": "v1.4.0", "source": { "type": "git", - "url": "https://github.com/doctrine/deprecations.git", - "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab" + "url": "https://github.com/doctrine/collections.git", + "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab", - "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab", + "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba", + "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba", "shasum": "" }, "require": { - "php": "^7.1 || ^8.0" + "php": "^5.6 || ^7.0" }, "require-dev": { - "doctrine/coding-standard": "^9", - "phpstan/phpstan": "1.4.10 || 1.10.15", - "phpstan/phpstan-phpunit": "^1.0", - "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5", - "psalm/plugin-phpunit": "0.18.4", - "psr/log": "^1 || ^2 || ^3", - "vimeo/psalm": "4.30.0 || 5.12.0" - }, - "suggest": { - "psr/log": "Allows logging deprecations via PSR-3 logger implementation" + "doctrine/coding-standard": "~0.1@dev", + "phpunit/phpunit": "^5.7" }, "type": "library", - "autoload": { - "psr-4": { - "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations" + "extra": { + "branch-alias": { + "dev-master": "1.3.x-dev" } }, - "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.3" - }, - "time": "2024-01-30T19:34:25+00:00" - }, - { - "name": "doctrine/lexer", - "version": "2.1.1", - "source": { - "type": "git", - "url": "https://github.com/doctrine/lexer.git", - "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6", - "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6", - "shasum": "" - }, - "require": { - "doctrine/deprecations": "^1.0", - "php": "^7.1 || ^8.0" - }, - "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" - }, - "type": "library", "autoload": { - "psr-4": { - "Doctrine\\Common\\Lexer\\": "src" + "psr-0": { + "Doctrine\\Common\\Collections\\": "lib/" } }, "notification-url": "https://packagist.org/downloads/", @@ -1994,14 +1704,220 @@ "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": "Collections Abstraction library", + "homepage": "http://www.doctrine-project.org", + "keywords": [ + "array", + "collections", + "iterator" + ], + "time": "2017-01-03T10:49:41+00:00" + }, + { + "name": "doctrine/common", + "version": "v2.7.3", + "source": { + "type": "git", + "url": "https://github.com/doctrine/common.git", + "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9", + "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9", + "shasum": "" + }, + "require": { + "doctrine/annotations": "1.*", + "doctrine/cache": "1.*", + "doctrine/collections": "1.*", + "doctrine/inflector": "1.*", + "doctrine/lexer": "1.*", + "php": "~5.6|~7.0" + }, + "require-dev": { + "phpunit/phpunit": "^5.4.6" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.7.x-dev" + } + }, + "autoload": { + "psr-4": { + "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" + } + ], + "description": "Common Library for Doctrine projects", + "homepage": "http://www.doctrine-project.org", + "keywords": [ + "annotations", + "collections", + "eventmanager", + "persistence", + "spl" + ], + "time": "2017-07-22T08:35:12+00:00" + }, + { + "name": "doctrine/inflector", + "version": "v1.2.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/inflector.git", + "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462", + "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462", + "shasum": "" + }, + "require": { + "php": "^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.2.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": "2017-07-22T12:18:28+00:00" + }, + { + "name": "doctrine/lexer", + "version": "1.0.2", + "source": { + "type": "git", + "url": "https://github.com/doctrine/lexer.git", + "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/1febd6c3ef84253d7c815bed85fc622ad207a9f8", + "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8", + "shasum": "" + }, + "require": { + "php": ">=5.3.2" + }, + "require-dev": { + "phpunit/phpunit": "^4.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, { "name": "Johannes Schmitt", "email": "schmittjoh@gmail.com" @@ -2016,176 +1932,37 @@ "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" - }, - { - "name": "dompdf/dompdf", - "version": "v2.0.4", - "source": { - "type": "git", - "url": "https://github.com/dompdf/dompdf.git", - "reference": "093f2d9739cec57428e39ddadedfd4f3ae862c0f" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/dompdf/dompdf/zipball/093f2d9739cec57428e39ddadedfd4f3ae862c0f", - "reference": "093f2d9739cec57428e39ddadedfd4f3ae862c0f", - "shasum": "" - }, - "require": { - "ext-dom": "*", - "ext-mbstring": "*", - "masterminds/html5": "^2.0", - "phenx/php-font-lib": ">=0.5.4 <1.0.0", - "phenx/php-svg-lib": ">=0.3.3 <1.0.0", - "php": "^7.1 || ^8.0" - }, - "require-dev": { - "ext-json": "*", - "ext-zip": "*", - "mockery/mockery": "^1.3", - "phpunit/phpunit": "^7.5 || ^8 || ^9", - "squizlabs/php_codesniffer": "^3.5" - }, - "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/v2.0.4" - }, - "time": "2023-12-12T20:19:39+00:00" - }, - { - "name": "dragonmantank/cron-expression", - "version": "v3.3.3", - "source": { - "type": "git", - "url": "https://github.com/dragonmantank/cron-expression.git", - "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a", - "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a", - "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", - "phpstan/phpstan-webmozart-assert": "^1.0", - "phpunit/phpunit": "^7.0|^8.0|^9.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "Cron\\": "src/Cron/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "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.3.3" - }, - "funding": [ - { - "url": "https://github.com/dragonmantank", - "type": "github" - } - ], - "time": "2023-08-10T19:36:49+00:00" + "time": "2019-06-08T11:03:04+00:00" }, { "name": "drupal/address", - "version": "1.12.0", + "version": "1.8.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/address.git", - "reference": "8.x-1.12" + "reference": "8.x-1.8" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/address-8.x-1.12.zip", - "reference": "8.x-1.12", - "shasum": "67dd4699040aabf0cd6169e437706fa6a39b0b3a" + "url": "https://ftp.drupal.org/files/projects/address-8.x-1.8.zip", + "reference": "8.x-1.8", + "shasum": "ded73be392ba9257fca9289719757928a8826275" }, "require": { - "commerceguys/addressing": "^1.4.2", - "drupal/core": "^9.2 || ^10", - "php": "^7.3 || ^8.0" + "commerceguys/addressing": "^1.0.7", + "drupal/core": "^8.7.7 || ^9" }, "require-dev": { "drupal/token": "^1.0" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.12", - "datestamp": "1684710176", + "version": "8.x-1.8", + "datestamp": "1582913039", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2194,25 +1971,29 @@ }, "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": "googletorp", + "homepage": "https://www.drupal.org/user/386230" + }, { "name": "jsacksick", "homepage": "https://www.drupal.org/user/972218" }, + { + "name": "mglaman", + "homepage": "https://www.drupal.org/user/2416470" + }, { "name": "rszrama", "homepage": "https://www.drupal.org/user/49344" @@ -2225,30 +2006,74 @@ } }, { - "name": "drupal/admin_toolbar", - "version": "3.4.2", + "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.4.2" + "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.4.2.zip", - "reference": "3.4.2", - "shasum": "f5a008e5c73f5a11c6c8067c0ea6ebb76aa33854" + "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.2 || ^10" + "drupal/core": "~8.1" }, - "require-dev": { - "drupal/admin_toolbar_tools": "*" + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "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": "http://cgit.drupalcode.org/admin_links_access_filter" + } + }, + { + "name": "drupal/admin_toolbar", + "version": "2.3.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/admin_toolbar.git", + "reference": "8.x-2.3" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.3.zip", + "reference": "8.x-2.3", + "shasum": "cf8ee1aa8adfc604db4394655e3ba4c423d5f24a" + }, + "require": { + "drupal/core": "^8.8.0 || ^9.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "3.4.2", - "datestamp": "1696006195", + "version": "8.x-2.3", + "datestamp": "1592535714", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2282,12 +2107,12 @@ "role": "Maintainer" }, { - "name": "matio89", - "homepage": "https://www.drupal.org/user/2320090" + "name": "fethi.krout", + "homepage": "https://www.drupal.org/user/3206765" }, { - "name": "Musa.thomas", - "homepage": "https://www.drupal.org/user/1213824" + "name": "matio89", + "homepage": "https://www.drupal.org/user/2320090" }, { "name": "romainj", @@ -2305,78 +2130,18 @@ "issues": "https://www.drupal.org/project/issues/admin_toolbar" } }, - { - "name": "drupal/admin_toolbar-admin_toolbar_search", - "version": "3.4.2", - "require": { - "drupal/admin_toolbar": "^3", - "drupal/core": "^9.2 || ^10" - }, - "require-dev": { - "drupal/admin_toolbar_tools": "*" - }, - "type": "metapackage", - "extra": { - "drupal": { - "version": "3.4.2", - "datestamp": "1696006195", - "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": "eme", - "homepage": "https://www.drupal.org/user/542492" - }, - { - "name": "fethi.krout", - "homepage": "https://www.drupal.org/user/3206765" - }, - { - "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_links_access_filter", - "version": "3.4.2", + "version": "2.3.0", "require": { - "drupal/admin_toolbar": "*", - "drupal/core": "^9.2 || ^10" + "drupal/admin_toolbar": "self.version", + "drupal/core": "^8.8.0 || ^9.0" }, "type": "metapackage", "extra": { "drupal": { - "version": "3.4.2", - "datestamp": "1696006195", + "version": "8.x-2.3", + "datestamp": "1592535714", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2388,6 +2153,10 @@ "GPL-2.0-or-later" ], "authors": [ + { + "name": "Musa.thomas", + "homepage": "https://www.drupal.org/user/1213824" + }, { "name": "adriancid", "homepage": "https://www.drupal.org/user/1962106" @@ -2408,10 +2177,6 @@ "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" @@ -2425,16 +2190,16 @@ }, { "name": "drupal/admin_toolbar_tools", - "version": "3.4.2", + "version": "2.3.0", "require": { - "drupal/admin_toolbar": "*", - "drupal/core": "^9.2 || ^10" + "drupal/admin_toolbar": "self.version", + "drupal/core": "^8.8.0 || ^9.0" }, "type": "metapackage", "extra": { "drupal": { - "version": "3.4.2", - "datestamp": "1696006195", + "version": "8.x-2.3", + "datestamp": "1592535714", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2446,6 +2211,10 @@ "GPL-2.0-or-later" ], "authors": [ + { + "name": "Musa.thomas", + "homepage": "https://www.drupal.org/user/1213824" + }, { "name": "adriancid", "homepage": "https://www.drupal.org/user/1962106" @@ -2466,136 +2235,39 @@ "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.", + "description": "Adds menu links to the Admin Toolbar.", "homepage": "https://www.drupal.org/project/admin_toolbar", "support": { "source": "https://git.drupalcode.org/project/admin_toolbar" } }, - { - "name": "drupal/advancedqueue", - "version": "1.0.0-rc7", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/advancedqueue.git", - "reference": "8.x-1.0-rc7" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/advancedqueue-8.x-1.0-rc7.zip", - "reference": "8.x-1.0-rc7", - "shasum": "b446eda22f5f9a9d13f78f2ce329ff1feef69173" - }, - "require": { - "drupal/core": "^9.1 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.0-rc7", - "datestamp": "1673456946", - "security-coverage": { - "status": "not-covered", - "message": "RC releases are not covered by Drupal security advisories." - } - }, - "drush": { - "services": { - "drush.services.yml": "^11" - } - } - }, - "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": "bojanz", - "homepage": "https://www.drupal.org/user/86106" - }, - { - "name": "Damien Tournoud", - "homepage": "https://www.drupal.org/user/22211" - }, - { - "name": "dawehner", - "homepage": "https://www.drupal.org/user/99340" - }, - { - "name": "jcnventura", - "homepage": "https://www.drupal.org/user/122464" - }, - { - "name": "jsacksick", - "homepage": "https://www.drupal.org/user/972218" - }, - { - "name": "Kazanir", - "homepage": "https://www.drupal.org/user/2279698" - }, - { - "name": "laurentchardin", - "homepage": "https://www.drupal.org/user/87775" - }, - { - "name": "mglaman", - "homepage": "https://www.drupal.org/user/2416470" - }, - { - "name": "pjcdawkins", - "homepage": "https://www.drupal.org/user/1025236" - }, - { - "name": "rszrama", - "homepage": "https://www.drupal.org/user/49344" - }, - { - "name": "skipyT", - "homepage": "https://www.drupal.org/user/350126" - } - ], - "description": "Provides a better Queue API.", - "homepage": "https://www.drupal.org/project/advancedqueue", - "support": { - "source": "https://git.drupalcode.org/project/advancedqueue" - } - }, { "name": "drupal/allowed_formats", - "version": "2.0.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/allowed_formats.git", - "reference": "2.0.0" + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/allowed_formats-2.0.0.zip", - "reference": "2.0.0", - "shasum": "ac6c6d398f303608ced7e9cd9d4556a728dc41f0" + "url": "https://ftp.drupal.org/files/projects/allowed_formats-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "4c3c036d7b41428d6e22b61f1219de0ab012feec" }, "require": { - "drupal/core": "^9.2 || ^10" + "drupal/core": "^8.7.7 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.0", - "datestamp": "1669170410", + "version": "8.x-1.3", + "datestamp": "1592909219", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2608,55 +2280,38 @@ ], "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" + "name": "floretan", + "homepage": "https://www.drupal.org/user/66163" } ], "description": "Limit which text formats are available for each field instance.", "homepage": "https://www.drupal.org/project/allowed_formats", "support": { - "source": "http://cgit.drupalcode.org/allowed_formats", - "issues": "https://www.drupal.org/project/issues/allowed_formats" + "source": "https://git.drupalcode.org/project/allowed_formats" } }, { "name": "drupal/antibot", - "version": "2.0.2", + "version": "1.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/antibot.git", - "reference": "2.0.2" + "reference": "8.x-1.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/antibot-2.0.2.zip", - "reference": "2.0.2", - "shasum": "e5866fbe1d8e5ff2811ff77efee754d26c313efb" + "url": "https://ftp.drupal.org/files/projects/antibot-8.x-1.4.zip", + "reference": "8.x-1.4", + "shasum": "2ef65587c34c94f6a7ec0538c755eef5cdd359fd" }, "require": { - "drupal/core": "^8.8 || ^9 || ^10" + "drupal/core": "^8.8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.2", - "datestamp": "1666001671", + "version": "8.x-1.4", + "datestamp": "1590592550", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2668,10 +2323,6 @@ "GPL-2.0+" ], "authors": [ - { - "name": "gaurav.kapoor", - "homepage": "https://www.drupal.org/user/3495331" - }, { "name": "mstef", "homepage": "https://www.drupal.org/user/107190" @@ -2683,207 +2334,31 @@ "source": "https://git.drupalcode.org/project/antibot" } }, - { - "name": "drupal/asset_injector", - "version": "2.19.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/asset_injector.git", - "reference": "8.x-2.19" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/asset_injector-8.x-2.19.zip", - "reference": "8.x-2.19", - "shasum": "c0e6f9450d63f42787b93ec05375c90bcfbc6308" - }, - "require": { - "drupal/core": "^9.3 || ^10.0" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-2.19", - "datestamp": "1694704137", - "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.0.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/auto_entitylabel.git", - "reference": "8.x-3.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/auto_entitylabel-8.x-3.0.zip", - "reference": "8.x-3.0", - "shasum": "8dd54d4b677f2c7259a15afd7b71d0d1b6f6b4a6" - }, - "require": { - "drupal/core": "^9.3 || ^10" - }, - "require-dev": { - "drupal/token": "^1.0" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-3.0", - "datestamp": "1671545557", - "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": "diqidoq", - "homepage": "https://www.drupal.org/user/1001934" - }, - { - "name": "japerry", - "homepage": "https://www.drupal.org/user/45640" - }, - { - "name": "Pravin Ajaaz", - "homepage": "https://www.drupal.org/user/2910049" - }, - { - "name": "purushotam.rai", - "homepage": "https://www.drupal.org/user/3193859" - }, - { - "name": "RenatoG", - "homepage": "https://www.drupal.org/user/3326031" - }, - { - "name": "VladimirAus", - "homepage": "https://www.drupal.org/user/673120" - } - ], - "description": "Allows hiding of entity label fields and automatic label creation.", - "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": "3.0.2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/automated_crop.git", - "reference": "3.0.2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/automated_crop-3.0.2.zip", - "reference": "3.0.2", - "shasum": "0f82b438307ab2fb4246a1cc53dd86fdca3dc222" - }, - "require": { - "drupal/core": "^9 || ^10", - "drupal/crop": "^2.2" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "3.0.2", - "datestamp": "1699876294", - "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": "dev-1.x", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/autosave_form.git", - "reference": "7fe6cc5dd44ce23272878204c613ae3dfd112e86" + "reference": "8.x-1.2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/autosave_form-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "e7a893dfdba574b74cd77e16be2140d82bb353a6" }, "require": { - "drupal/core": "^9 || ^10" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { - "branch-alias": { - "dev-1.x": "1.x-dev" - }, "drupal": { - "version": "8.x-1.4+1-dev", - "datestamp": "1698662713", + "version": "8.x-1.2", + "datestamp": "1591627224", "security-coverage": { - "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, @@ -2904,33 +2379,33 @@ } }, { - "name": "drupal/backup_migrate", - "version": "5.0.3", + "name": "drupal/better_normalizers", + "version": "1.0.0-beta4", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/backup_migrate.git", - "reference": "5.0.3" + "url": "https://git.drupalcode.org/project/better_normalizers.git", + "reference": "8.x-1.0-beta4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/backup_migrate-5.0.3.zip", - "reference": "5.0.3", - "shasum": "bc263f601f7a21248d4000a372d04a417df7e326" + "url": "https://ftp.drupal.org/files/projects/better_normalizers-8.x-1.0-beta4.zip", + "reference": "8.x-1.0-beta4", + "shasum": "19e63328ca9ab77aaa328d87efd7429f4adb386e" }, "require": { - "drupal/core": "^9.3 || ^10" - }, - "suggest": { - "defuse/php-encryption": "Optional encryption of saved backups." + "drupal/core": "^8.7.7 || ^9" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "5.0.3", - "datestamp": "1671366510", + "version": "8.x-1.0-beta4", + "datestamp": "1576069085", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Project has not opted into security advisory coverage!" } } }, @@ -2940,65 +2415,59 @@ ], "authors": [ { - "name": "See contributors", - "homepage": "https://www.drupal.org/node/189065/committers", - "role": "Developer" + "name": "Christian Fritsch (chr.fritsch)", + "homepage": "https://www.drupal.org/u/chrfritsch", + "role": "Maintainer" }, { - "name": "DamienMcKenna", - "homepage": "https://www.drupal.org/user/108450" + "name": "Andrey Postnikov (andypost)", + "homepage": "https://www.drupal.org/u/andypost", + "role": "Maintainer" }, { - "name": "dgorton", - "homepage": "https://www.drupal.org/user/19044" + "name": "Sam Becker (Sam152)", + "homepage": "https://www.drupal.org/u/sam152", + "role": "Maintainer" }, { - "name": "ikit-claw", - "homepage": "https://www.drupal.org/user/3285813" - }, - { - "name": "ronan", - "homepage": "https://www.drupal.org/user/72815" + "name": "Lee Rowlands (larowlan)", + "homepage": "https://www.drupal.org/u/larowlan", + "role": "Maintainer" } ], - "description": "Backup and Migrate Drupal Module", - "homepage": "https://www.drupal.org/project/backup_migrate", + "description": "Improve the normalizers in core.", + "homepage": "https://www.drupal.org/project/better_normalizers", "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/" + "source": "https://git.drupal.org/project/better_normalizers.git", + "issues": "https://www.drupal.org/project/issues/better_normalizers" } }, { - "name": "drupal/better_exposed_filters", - "version": "6.0.3", + "name": "drupal/block_theme_sync", + "version": "dev-1.x", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/better_exposed_filters.git", - "reference": "6.0.3" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-6.0.3.zip", - "reference": "6.0.3", - "shasum": "b5c20207d7679542bb81955771956c18083e6e0b" + "url": "https://git.drupalcode.org/project/block_theme_sync.git", + "reference": "dad414c08d2ce35921b871f201dc5324e476096a" }, "require": { - "drupal/core": "^9 || ^10", - "drupal/jquery_ui": "^1.6", - "drupal/jquery_ui_datepicker": "^2.0", - "drupal/jquery_ui_slider": "^2.0.0", - "drupal/jquery_ui_touch_punch": "^1.0" + "drupal/core": "^8" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "6.0.3", - "datestamp": "1671541877", + "version": "8.x-1.0-alpha2+0-dev", + "datestamp": "1483386842", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Project has not opted into security advisory coverage!" } + }, + "patches_applied": { + "Automated Drupal 9 compatibility fixes": "https://www.drupal.org/files/issues/2020-09-07/3146266-3.patch" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -3007,166 +2476,43 @@ ], "authors": [ { - "name": "Mike Keran", - "homepage": "https://www.drupal.org/u/mikeker" + "name": "mlncn", + "homepage": "https://www.drupal.org/user/64383" }, { - "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": "nedjo", + "homepage": "https://www.drupal.org/user/4481" } ], - "description": "Replaces the Views default single- or multi-select boxes with more advanced options.", - "homepage": "https://www.drupal.org/project/better_exposed_filters", + "description": "Subscribe to block updates for source themes.", + "homepage": "https://www.drupal.org/project/block_theme_sync", "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": "2.0.11", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/block_class.git", - "reference": "2.0.11" + "source": "https://git.drupalcode.org/project/block_theme_sync" }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/block_class-2.0.11.zip", - "reference": "2.0.11", - "shasum": "bd098ef0071b5baca1248c0deaa9bbedc0ddcaf4" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.11", - "datestamp": "1672065313", - "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", - "keywords": [ - "Drupal" - ], - "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" - } + "time": "2017-01-02T19:51:28+00:00" }, { "name": "drupal/block_visibility_groups", - "version": "2.0.1", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/block_visibility_groups.git", - "reference": "2.0.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/block_visibility_groups-2.0.1.zip", - "reference": "2.0.1", - "shasum": "ae268cc3a5821205832b66069dcb8f60b8f20ab9" + "reference": "c70e4bf24076f0b697ed34ba5cfc1ea1dafbcc1d" }, "require": { - "drupal/core": "^8 || ^9 || ^10" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "2.0.1", - "datestamp": "1676002877", + "version": "8.x-1.3+6-dev", + "datestamp": "1598844322", "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." } } }, @@ -3175,10 +2521,6 @@ "GPL-2.0+" ], "authors": [ - { - "name": "DamienMcKenna", - "homepage": "https://www.drupal.org/user/108450" - }, { "name": "joelpittet", "homepage": "https://www.drupal.org/user/160302" @@ -3200,79 +2542,28 @@ "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.3", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/bpmn_io.git", - "reference": "1.1.3" }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/bpmn_io-1.1.3.zip", - "reference": "1.1.3", - "shasum": "32d5569f1cf4946c1841dd12bcf64f8b2a4a7fb6" - }, - "require": { - "drupal/core": "^9 || ^10", - "drupal/eca": "^1.0", - "drupal/eca_modeller_bpmn": "*", - "php": ">=7.4" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "1.1.3", - "datestamp": "1691062720", - "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" - } + "time": "2020-09-02T16:43:42+00:00" }, { "name": "drupal/bulma", - "version": "dev-3.0.x", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/bulma.git", - "reference": "1899b7afcb023655cdc8d29d1eacd12989ea1403" + "reference": "ebf7089af9160c75bdbba4a988ac08857409eef6" }, "require": { - "drupal/core": "^9.2 || ^10" + "drupal/core": "^8.8 || ^9" }, "type": "drupal-theme", "extra": { "branch-alias": { - "dev-3.0.x": "3.0.x-dev" + "dev-1.x": "1.x-dev" }, "drupal": { - "version": "3.0.x-dev", - "datestamp": "1707419765", + "version": "8.x-1.0-beta4+4-dev", + "datestamp": "1593141951", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -3285,16 +2576,16 @@ ], "authors": [ { - "name": "lelkneralfaro", - "homepage": "https://www.drupal.org/user/3577260" + "name": "MatijaJurcevic", + "homepage": "https://www.drupal.org/user/3173519" }, { - "name": "MegaKeegMan", - "homepage": "https://www.drupal.org/user/3620027" + "name": "mseric", + "homepage": "https://www.drupal.org/user/3574018" }, { - "name": "mlncn", - "homepage": "https://www.drupal.org/user/64383" + "name": "nedjo", + "homepage": "https://www.drupal.org/user/4481" }, { "name": "valic", @@ -3302,152 +2593,34 @@ } ], "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" + "source": "https://git.drupalcode.org/project/bulma" }, - "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.4.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/cancel_button.git", - "reference": "8.x-1.4" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/cancel_button-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "d1d932a4aff53938066f329a04fa3adb61367d0e" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.4", - "datestamp": "1676921894", - "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" - } + "time": "2020-06-26T03:25:36+00:00" }, { "name": "drupal/captcha", - "version": "2.0.5", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/captcha.git", - "reference": "2.0.5" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/captcha-2.0.5.zip", - "reference": "2.0.5", - "shasum": "0c39d27a99b53f6517ef25ceef1ac5e333964547" + "url": "https://ftp.drupal.org/files/projects/captcha-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "2eaf6f00ea256652c09f785b26dc933cc5b3dd26" }, "require": { - "drupal/core": ">=9.4 <11" + "drupal/core": "^8.8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.5", - "datestamp": "1691598525", + "version": "8.x-1.1", + "datestamp": "1591160977", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3463,17 +2636,13 @@ ], "authors": [ { - "name": "Anybody", - "homepage": "https://www.drupal.org/user/291091" + "name": "RobLoach", + "homepage": "https://www.drupal.org/user/61114" }, { "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" @@ -3487,12 +2656,8 @@ "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": "soxofaan", + "homepage": "https://www.drupal.org/user/41478" }, { "name": "wundo", @@ -3508,32 +2673,35 @@ }, { "name": "drupal/checklistapi", - "version": "2.1.5", + "version": "1.11.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/checklistapi.git", - "reference": "2.1.5" + "reference": "8.x-1.11" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/checklistapi-2.1.5.zip", - "reference": "2.1.5", - "shasum": "9d91ecdcba1fc1d4805a6ddc06a6ba5ca8a63fc9" + "url": "https://ftp.drupal.org/files/projects/checklistapi-8.x-1.11.zip", + "reference": "8.x-1.11", + "shasum": "78fcf8ff6edd02f2cdfc907981db119dfca795c2" }, "require": { - "drupal/core": "^9.3 || ^10", - "php": ">=7.3.0" + "drupal/core": "^8 || ^9", + "php": ">=5.6.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.1.5", - "datestamp": "1697644052", + "version": "8.x-1.11", + "datestamp": "1586540246", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } }, + "branch-alias": { + "dev-master": "1.x-dev" + }, "drush": { "services": { "drush.services.yml": "^10" @@ -3547,20 +2715,8 @@ "authors": [ { "name": "Travis Carden", - "homepage": "https://www.drupal.org/user/3550392", + "homepage": "https://www.drupal.org/user/236758", "email": "travis.carden@gmail.com" - }, - { - "name": "Rajeshreeputra", - "homepage": "https://www.drupal.org/user/3418561" - }, - { - "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.", @@ -3570,124 +2726,31 @@ "issues": "https://www.drupal.org/project/issues/checklistapi" } }, - { - "name": "drupal/ckeditor", - "version": "1.0.2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/ckeditor.git", - "reference": "1.0.2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/ckeditor-1.0.2.zip", - "reference": "1.0.2", - "shasum": "fec2ca9ad852a00c7b9584cb6040dc860364c481" - }, - "require": { - "drupal/core": "^9.4 || ^10" - }, - "require-dev": { - "drupal/classy": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "1.0.2", - "datestamp": "1695740655", - "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": "dczepierga", - "homepage": "https://www.drupal.org/user/911466" - }, - { - "name": "hass", - "homepage": "https://www.drupal.org/user/85918" - }, - { - "name": "jcisio", - "homepage": "https://www.drupal.org/user/210762" - }, - { - "name": "Jorrit", - "homepage": "https://www.drupal.org/user/161217" - }, - { - "name": "lauriii", - "homepage": "https://www.drupal.org/user/1078742" - }, - { - "name": "Magnus", - "homepage": "https://www.drupal.org/user/73919" - }, - { - "name": "mkesicki", - "homepage": "https://www.drupal.org/user/922884" - }, - { - "name": "nod_", - "homepage": "https://www.drupal.org/user/598310" - }, - { - "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" - } - ], - "description": "WYSIWYG editing for rich text fields using CKEditor.", - "homepage": "https://www.drupal.org/project/ckeditor", - "support": { - "source": "https://git.drupalcode.org/project/ckeditor" - } - }, { "name": "drupal/ckeditor_markdown", - "version": "1.3.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/ckeditor_markdown.git", - "reference": "8.x-1.3" + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/ckeditor_markdown-8.x-1.3.zip", - "reference": "8.x-1.3", - "shasum": "3a59518a1fcf06a1c7be80011dd68b2b809a967a" + "url": "https://ftp.drupal.org/files/projects/ckeditor_markdown-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "73efabe8c4d86ab73b21bd0b8f5cece8688c1b48" }, "require": { - "drupal/ckeditor": "*", - "drupal/core": "^8 || ^9 || ^10" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.3", - "datestamp": "1660824710", + "version": "8.x-1.2", + "datestamp": "1580498736", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3712,27 +2775,29 @@ }, { "name": "drupal/ckeditorheight", - "version": "1.9.0", + "version": "1.8.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/ckeditorheight.git", - "reference": "8.x-1.9" + "reference": "8.x-1.8" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/ckeditorheight-8.x-1.9.zip", - "reference": "8.x-1.9", - "shasum": "28119489b4a21f39e5b31e482fdb9fdf05abf6e8" + "url": "https://ftp.drupal.org/files/projects/ckeditorheight-8.x-1.8.zip", + "reference": "8.x-1.8", + "shasum": "ccf98078866e89da0c62c055752bdf59822d4d4c" }, "require": { - "drupal/ckeditor": "^1.0", - "drupal/core": "^9.4 || ^10" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.9", - "datestamp": "1687950399", + "version": "8.x-1.8", + "datestamp": "1580163325", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -3751,10 +2816,6 @@ { "name": "geek-merlin", "homepage": "https://www.drupal.org/user/229048" - }, - { - "name": "heliogabal", - "homepage": "https://www.drupal.org/user/998658" } ], "description": "Adjusts CKEditor height to field row setting until we have https://www.drupal.org/node/2788905.", @@ -3763,68 +2824,16 @@ "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/coffee", "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/coffee.git", - "reference": "a8c727dea69852f72872073ec8e515c07a37f911" + "reference": "4104976e3b8a1d8c1b444a416bf969524f6d67ba" }, "require": { - "drupal/core": "^9.2 || ^10" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { @@ -3833,12 +2842,15 @@ "dev-8.x-1.x": "8.1.x-dev" }, "drupal": { - "version": "8.x-1.2+4-dev", - "datestamp": "1671439902", + "version": "8.x-1.0+1-dev", + "datestamp": "1587139096", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." } + }, + "patches_applied": { + "Allow user to specify keyboard shortcut.": "https://www.drupal.org/files/issues/2018-11-11/1734898-14.coffee-hotkeys-plus-g.patch" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -3878,34 +2890,32 @@ "source": "https://git.drupalcode.org/project/coffee", "issues": "https://drupal.org/project/issues/coffee", "irc": "irc://irc.freenode.org/drupal-contribute" - } + }, + "time": "2020-04-17T16:06:19+00:00" }, { "name": "drupal/comment_notify", - "version": "1.4.0", + "version": "dev-1.x", "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" + "reference": "63346371fad80a77d2340dadd7a376773a67f870" }, "require": { - "drupal/core": "^8 || ^9 || ^10", + "drupal/core": "^8 || ^9", "drupal/token": "^1.6" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.4", - "datestamp": "1679409019", + "version": "8.x-1.1+1-dev", + "datestamp": "1588698269", "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." } } }, @@ -3923,14 +2933,6 @@ "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.", @@ -3939,94 +2941,31 @@ "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" - } + "time": "2020-07-10T17:43:05+00:00" }, { "name": "drupal/components", - "version": "3.0.0-beta3", + "version": "2.0.0-beta3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/components.git", - "reference": "3.0.0-beta3" + "reference": "8.x-2.0-beta3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/components-3.0.0-beta3.zip", - "reference": "3.0.0-beta3", - "shasum": "47ced4332f0a655ca38ae1b54e97a8e78d59f0bc" + "url": "https://ftp.drupal.org/files/projects/components-8.x-2.0-beta3.zip", + "reference": "8.x-2.0-beta3", + "shasum": "5883c8b6dd358d29127a3c49d1459814c061b566" }, "require": { - "drupal/core": "^9 || ^10" + "drupal/core": "^8.7.7 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "3.0.0-beta3", - "datestamp": "1651759488", + "version": "8.x-2.0-beta3", + "datestamp": "1594633703", "security-coverage": { "status": "not-covered", "message": "Beta releases are not covered by Drupal security advisories." @@ -4048,7 +2987,7 @@ "homepage": "https://www.drupal.org/user/61114" } ], - "description": "Registers folders of components defined by your theme or module as Twig namespaces", + "description": "Sets up folders of components defined by your theme or module", "homepage": "https://drupal.org/project/components", "support": { "source": "https://git.drupalcode.org/project/components" @@ -4056,26 +2995,26 @@ }, { "name": "drupal/config_actions", - "version": "1.4.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_actions.git", - "reference": "8.x-1.4" + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_actions-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "28d952460b6e634e44339c9df4946570fc745110" + "url": "https://ftp.drupal.org/files/projects/config_actions-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "d1213ad13ed57a7cc1453df9cd09b1c23e8c105f" }, "require": { - "drupal/core": "^9.4 || ^10" + "drupal/core": "^8.8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.4", - "datestamp": "1687387836", + "version": "8.x-1.2", + "datestamp": "1592352730", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4117,102 +3056,92 @@ }, { "name": "drupal/config_actions_provider", - "version": "1.3.0", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_actions_provider.git", - "reference": "8.x-1.3" - }, - "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" + "reference": "8cfb699a72443111022f24a2a786212d9ac53d38" }, "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+1-dev", + "datestamp": "1570043285", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Project has not opted into security advisory coverage!" } + }, + "patches_applied": { + "Automated Drupal Rector fixes": "https://www.drupal.org/files/issues/2020-05-23/config_actions_provider.1.x-dev.rector.patch" } }, "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" + }, + "time": "2019-10-02T19:07:49+00:00" }, { "name": "drupal/config_distro", - "version": "2.0.0-alpha2", + "version": "1.0.0-alpha4", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_distro.git", - "reference": "2.0.0-alpha2" + "reference": "8.x-1.0-alpha4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_distro-2.0.0-alpha2.zip", - "reference": "2.0.0-alpha2", - "shasum": "8341305e0eb86208fb71a351e8c922300141a804" + "url": "https://ftp.drupal.org/files/projects/config_distro-8.x-1.0-alpha4.zip", + "reference": "8.x-1.0-alpha4", + "shasum": "a866d160348d709e0029b176826097fb9b15c49c" }, "require": { "drupal/config_filter": "*", - "drupal/core": "^9.3 || ^10" + "drupal/core": "^8.8 || ^9" }, "require-dev": { "drupal/config_distro_filter": "*", - "drupal/config_filter": "*", - "drush/drush": ">=11" - }, - "suggest": { - "drush/drush": ">=11" + "drupal/config_filter": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.0-alpha2", - "datestamp": "1691786887", + "version": "8.x-1.0-alpha4", + "datestamp": "1592523910", "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", @@ -4232,10 +3161,6 @@ "email": "opensource@fabianbircher.com", "role": "Maintainer" }, - { - "name": "joegraduate", - "homepage": "https://www.drupal.org/user/789384" - }, { "name": "nedjo", "homepage": "https://www.drupal.org/user/4481" @@ -4259,17 +3184,17 @@ }, { "name": "drupal/config_distro_filter", - "version": "2.0.0-alpha2", + "version": "1.0.0-alpha4", "require": { - "drupal/config_distro": "*", + "drupal/config_distro": "self.version", "drupal/config_filter": "*", - "drupal/core": "^8.8 || ^9 || ^10" + "drupal/core": "^8.8 || ^9" }, "type": "metapackage", "extra": { "drupal": { - "version": "2.0.0-alpha2", - "datestamp": "1691786887", + "version": "8.x-1.0-alpha4", + "datestamp": "1592523910", "security-coverage": { "status": "not-covered", "message": "Alpha releases are not covered by Drupal security advisories." @@ -4289,10 +3214,6 @@ "name": "bircher", "homepage": "https://www.drupal.org/user/1344166" }, - { - "name": "joegraduate", - "homepage": "https://www.drupal.org/user/789384" - }, { "name": "nedjo", "homepage": "https://www.drupal.org/user/4481" @@ -4314,20 +3235,20 @@ }, { "name": "drupal/config_filter", - "version": "2.6.0", + "version": "2.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_filter.git", - "reference": "8.x-2.6" + "reference": "8.x-2.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-2.6.zip", - "reference": "8.x-2.6", - "shasum": "fd1a057a402436fc906c63bf0a74722f73b9b155" + "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-2.1.zip", + "reference": "8.x-2.1", + "shasum": "dddfc3d5be22bf6625764fa0ca1caac524cb51cc" }, "require": { - "drupal/core": "^8.8 || ^9 || ^10" + "drupal/core": "^8.8 || ^9" }, "conflict": { "drush/drush": "<10" @@ -4338,8 +3259,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.6", - "datestamp": "1698308577", + "version": "8.x-2.1", + "datestamp": "1597851785", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4383,21 +3304,20 @@ }, { "name": "drupal/config_merge", - "version": "2.0.0-alpha1", + "version": "1.0.0-rc3", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_merge.git", - "reference": "2.0.0-alpha1" + "reference": "8.x-1.0-rc3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_merge-2.0.0-alpha1.zip", - "reference": "2.0.0-alpha1", - "shasum": "704f856a7e2f11006d0f74336f9260bbcb060cef" + "url": "https://ftp.drupal.org/files/projects/config_merge-8.x-1.0-rc3.zip", + "reference": "8.x-1.0-rc3", + "shasum": "ed3beb1863881bc21c5084d2d6a9cfe48fd1864d" }, "require": { - "drupal/core": "^9.3 || ^10", - "php": ">=8.0" + "drupal/core": "^8 || ^9" }, "require-dev": { "drupal/config_filter": "*" @@ -4405,88 +3325,11 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.0-alpha1", - "datestamp": "1682377160", + "version": "8.x-1.0-rc3", + "datestamp": "1590770651", "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": "geek-merlin", - "homepage": "https://www.drupal.org/user/229048" - }, - { - "name": "joegraduate", - "homepage": "https://www.drupal.org/user/789384" - }, - { - "name": "lelkneralfaro", - "homepage": "https://www.drupal.org/user/3577260" - }, - { - "name": "mlncn", - "homepage": "https://www.drupal.org/user/64383" - }, - { - "name": "nedjo", - "homepage": "https://www.drupal.org/user/4481" - }, - { - "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-beta1", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/config_normalizer.git", - "reference": "8.x-1.0-beta1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_normalizer-8.x-1.0-beta1.zip", - "reference": "8.x-1.0-beta1", - "shasum": "f69ffbdf947553c717775c94f30272d67a1a2e83" - }, - "require": { - "drupal/config_filter": "*", - "drupal/core": "^8 || ^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.0-beta1", - "datestamp": "1683148813", - "security-coverage": { - "status": "not-covered", - "message": "Beta releases are not covered by Drupal security advisories." + "message": "Project has not opted into security advisory coverage!" } } }, @@ -4507,10 +3350,6 @@ "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" @@ -4518,14 +3357,59 @@ { "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-alpha6", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/config_normalizer.git", + "reference": "8.x-1.0-alpha6" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/config_normalizer-8.x-1.0-alpha6.zip", + "reference": "8.x-1.0-alpha6", + "shasum": "030f2a34319fb7fc86c0263b1d7920aa322eb35b" + }, + "require": { + "drupal/config_filter": "*", + "drupal/core": "^8 || ^9" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.0-alpha6", + "datestamp": "1590768708", + "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": "a.dmitriiev", + "homepage": "https://www.drupal.org/user/3235287" }, { - "name": "tadean", - "homepage": "https://www.drupal.org/user/3608919" + "name": "geek-merlin", + "homepage": "https://www.drupal.org/user/229048" }, { - "name": "uarizona", - "homepage": "https://www.drupal.org/user/3763238" + "name": "nedjo", + "homepage": "https://www.drupal.org/user/4481" } ], "description": "Normalizes configuration for comparison.", @@ -4536,26 +3420,26 @@ }, { "name": "drupal/config_perms", - "version": "2.1.0", + "version": "2.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_perms.git", - "reference": "8.x-2.1" + "reference": "8.x-2.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_perms-8.x-2.1.zip", - "reference": "8.x-2.1", - "shasum": "06bc0d6587fba76149b4de7ccc32f6c6b8bc382a" + "url": "https://ftp.drupal.org/files/projects/config_perms-8.x-2.0.zip", + "reference": "8.x-2.0", + "shasum": "3e30cd71f00cb6da04ed2c8b032a9bd5357d9d70" }, "require": { - "drupal/core": "^8 || ^9 || ^10" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.1", - "datestamp": "1685589568", + "version": "8.x-2.0", + "datestamp": "1591397577", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -4567,30 +3451,18 @@ "GPL-2.0+" ], "authors": [ - { - "name": "benellefimostfa", - "homepage": "https://www.drupal.org/user/3092403" - }, { "name": "Docc", "homepage": "https://www.drupal.org/user/310132" }, + { + "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": "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" @@ -4612,29 +3484,29 @@ }, { "name": "drupal/config_provider", - "version": "3.0.0-alpha1", + "version": "2.0.0-rc4", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_provider.git", - "reference": "3.0.0-alpha1" + "reference": "8.x-2.0-rc4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_provider-3.0.0-alpha1.zip", - "reference": "3.0.0-alpha1", - "shasum": "0d0ba67f65d34fae7529d7a390f3d34d827f0595" + "url": "https://ftp.drupal.org/files/projects/config_provider-8.x-2.0-rc4.zip", + "reference": "8.x-2.0-rc4", + "shasum": "64a1545e8cc48f9363e028d3360134f143baaf58" }, "require": { - "drupal/core": "^9.3 || ^10" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "3.0.0-alpha1", - "datestamp": "1682387859", + "version": "8.x-2.0-rc4", + "datestamp": "1592923705", "security-coverage": { "status": "not-covered", - "message": "Alpha releases are not covered by Drupal security advisories." + "message": "RC releases are not covered by Drupal security advisories." } } }, @@ -4660,8 +3532,8 @@ "homepage": "https://www.drupal.org/user/992990" }, { - "name": "joegraduate", - "homepage": "https://www.drupal.org/user/789384" + "name": "jcnventura", + "homepage": "https://www.drupal.org/user/122464" }, { "name": "mlncn", @@ -4674,10 +3546,6 @@ { "name": "pfrenssen", "homepage": "https://www.drupal.org/user/382067" - }, - { - "name": "tadean", - "homepage": "https://www.drupal.org/user/3608919" } ], "description": "Enables provision of configuration by extensions.", @@ -4688,29 +3556,29 @@ }, { "name": "drupal/config_snapshot", - "version": "2.0.0-alpha1", + "version": "1.0.0-rc2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_snapshot.git", - "reference": "2.0.0-alpha1" + "reference": "8.x-1.0-rc2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_snapshot-2.0.0-alpha1.zip", - "reference": "2.0.0-alpha1", - "shasum": "35cb1bb74f07c8973cee19eac71aa4124ea3dd0f" + "url": "https://ftp.drupal.org/files/projects/config_snapshot-8.x-1.0-rc2.zip", + "reference": "8.x-1.0-rc2", + "shasum": "676c7620a0086ed76c09b889d2b4ea039c47948b" }, "require": { - "drupal/core": "^8 || ^9 || ^10" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.0-alpha1", - "datestamp": "1682448084", + "version": "8.x-1.0-rc2", + "datestamp": "1590652016", "security-coverage": { "status": "not-covered", - "message": "Alpha releases are not covered by Drupal security advisories." + "message": "Project has not opted into security advisory coverage!" } } }, @@ -4731,10 +3599,6 @@ "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" @@ -4742,10 +3606,6 @@ { "name": "nedjo", "homepage": "https://www.drupal.org/user/4481" - }, - { - "name": "tadean", - "homepage": "https://www.drupal.org/user/3608919" } ], "description": "Manages snapshots of configuration as provided by modules and themes.", @@ -4756,43 +3616,45 @@ }, { "name": "drupal/config_sync", - "version": "3.0.0-alpha3", + "version": "2.0.0-beta7", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_sync.git", - "reference": "3.0.0-alpha3" + "reference": "8.x-2.0-beta7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_sync-3.0.0-alpha3.zip", - "reference": "3.0.0-alpha3", - "shasum": "8664153679b63fe1c0b84702374122a149fc3846" + "url": "https://ftp.drupal.org/files/projects/config_sync-8.x-2.0-beta7.zip", + "reference": "8.x-2.0-beta7", + "shasum": "39de6d167f1f99992feaf5e30b53ae097ebebeec" }, "require": { - "drupal/config_distro": "^2.0.0-alpha2", - "drupal/config_distro_filter": "*", - "drupal/config_filter": "^1.10||^2.4", - "drupal/config_merge": "^2.0.0-alpha1", - "drupal/config_normalizer": "^1.0-beta1", - "drupal/config_provider": "^3.0.0-alpha1", - "drupal/config_snapshot": "^2.0.0-alpha1", - "drupal/config_update": "^2.0.0-alpha2", - "drupal/core": "^9 || ^10" + "drupal/config_distro": "^1.0-alpha3", + "drupal/config_distro_filter": "^1.0.0-alpha4", + "drupal/config_filter": "~1.3||~2.0", + "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.8 || ^9", + "php": ">=5.6", + "symfony/yaml": "~2.7.14|~2.8.7|~3.0.7|^3.1.1|^4.4.9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "3.0.0-alpha3", - "datestamp": "1692125273", + "version": "8.x-2.0-beta7", + "datestamp": "1594083315", "security-coverage": { "status": "not-covered", - "message": "Alpha releases are not covered by Drupal security advisories." + "message": "Beta releases are not covered by Drupal security advisories." } } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { @@ -4814,13 +3676,17 @@ "homepage": "https://www.drupal.org/user/229048" }, { - "name": "joegraduate", - "homepage": "https://www.drupal.org/user/789384" + "name": "jcnventura", + "homepage": "https://www.drupal.org/user/122464" }, { "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" @@ -4828,48 +3694,41 @@ { "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", "support": { - "source": "https://git.drupalcode.org/project/config_sync", - "issues": "https://drupal.org/project/issues/config_sync" + "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": "2.0.0-alpha3", + "version": "1.7.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/config_update.git", - "reference": "2.0.0-alpha3" + "reference": "8.x-1.7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/config_update-2.0.0-alpha3.zip", - "reference": "2.0.0-alpha3", - "shasum": "c35e81e8fb77efdff5ddca3a87116ea0c522a7e2" + "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.7.zip", + "reference": "8.x-1.7", + "shasum": "8f079abf7c2ea826a27fa5224b0770a26404c968" }, "require": { - "drupal/core": "^9.4 || ^10" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.0-alpha3", - "datestamp": "1683807608", + "version": "8.x-1.7", + "datestamp": "1586355587", "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" } } }, @@ -4879,202 +3738,41 @@ ], "authors": [ { - "name": "codebymikey", - "homepage": "https://www.drupal.org/user/3573206" + "name": "jhodgdon", + "homepage": "https://www.drupal.org/user/155601" }, { - "name": "Pasqualle", - "homepage": "https://www.drupal.org/user/80733" + "name": "nedjo", + "homepage": "https://www.drupal.org/user/4481" } ], - "description": "Provides basic revert and update functionality for other modules.", + "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.3.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/content_lock.git", - "reference": "8.x-2.3" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-2.3.zip", - "reference": "8.x-2.3", - "shasum": "0e8343f82330899baef65aa85d9994154e29506f" - }, - "require": { - "drupal/core": "^9.0 || ^10.0" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-2.3", - "datestamp": "1668427342", - "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": "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": "pandaski", - "homepage": "https://www.drupal.org/user/1987218" - }, - { - "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", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/convert_bundles.git", - "reference": "2.0.0-beta4" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/convert_bundles-2.0.0-beta4.zip", - "reference": "2.0.0-beta4", - "shasum": "5f4f02778344bbe2e2e3a3f1c96bc79e8b2474a7" - }, - "require": { - "drupal/core": "^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.0-beta4", - "datestamp": "1693891734", - "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": "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", - "homepage": "https://www.drupal.org/project/convert_bundles", - "support": { - "source": "https://git.drupalcode.org/project/convert_bundles" - } - }, { "name": "drupal/core", - "version": "10.2.3", + "version": "8.9.5", "source": { "type": "git", "url": "https://github.com/drupal/core.git", - "reference": "cc8c7952f7013795b735f5c15290e76937163bb7" + "reference": "c9b9643663b80f02c038f9dea15b8717a22c3339" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core/zipball/cc8c7952f7013795b735f5c15290e76937163bb7", - "reference": "cc8c7952f7013795b735f5c15290e76937163bb7", + "url": "https://api.github.com/repos/drupal/core/zipball/c9b9643663b80f02c038f9dea15b8717a22c3339", + "reference": "c9b9643663b80f02c038f9dea15b8717a22c3339", "shasum": "" }, "require": { - "asm89/stack-cors": "^2.1", - "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.4", + "doctrine/common": "^2.7", + "easyrdf/easyrdf": "^0.9", + "egulias/email-validator": "^2.0", "ext-date": "*", "ext-dom": "*", "ext-filter": "*", @@ -5088,38 +3786,63 @@ "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.5.0" + "guzzlehttp/guzzle": "^6.3", + "laminas/laminas-diactoros": "^1.8", + "laminas/laminas-feed": "^2.12", + "masterminds/html5": "^2.1", + "pear/archive_tar": "^1.4.9", + "php": ">=7.0.8", + "psr/log": "^1.0", + "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.35", + "symfony/http-kernel": "~3.4.14", + "symfony/polyfill-iconv": "^1.0", + "symfony/process": "~3.4.0", + "symfony/psr-http-message-bridge": "^1.1.2", + "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": "^3.1.3" }, "conflict": { - "drush/drush": "<12.4.3" + "drupal/pathauto": "<1.6", + "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/claro": "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", @@ -5129,7 +3852,6 @@ "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", @@ -5141,10 +3863,72 @@ "drupal/core-transliteration": "self.version", "drupal/core-utility": "self.version", "drupal/core-uuid": "self.version", - "drupal/core-version": "self.version" - }, - "suggest": { - "ext-zip": "Needed to extend the plugin.manager.archiver service capability with the handling of files in the ZIP format." + "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/help_topics": "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/path_alias": "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" }, "type": "drupal-core", "extra": { @@ -5160,7 +3944,7 @@ "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore", "[web-root]/index.php": "assets/scaffold/files/index.php", "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt", - "[web-root]/README.md": "assets/scaffold/files/drupal.README.md", + "[web-root]/README.txt": "assets/scaffold/files/drupal.README.txt", "[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", @@ -5177,34 +3961,18 @@ } }, "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" ] }, @@ -5213,28 +3981,25 @@ "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.2.3" - }, - "time": "2024-02-07T22:44:48+00:00" + "time": "2020-09-03T21:07:45+00:00" }, { "name": "drupal/core-composer-scaffold", - "version": "10.2.3", + "version": "8.9.5", "source": { "type": "git", "url": "https://github.com/drupal/core-composer-scaffold.git", - "reference": "63effa1bc644e80a269e8b4415e627491d26fd3f" + "reference": "c902d07cb49ef73777e2b33a39e54c2861a8c81d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/63effa1bc644e80a269e8b4415e627491d26fd3f", - "reference": "63effa1bc644e80a269e8b4415e627491d26fd3f", + "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/c902d07cb49ef73777e2b33a39e54c2861a8c81d", + "reference": "c902d07cb49ef73777e2b33a39e54c2861a8c81d", "shasum": "" }, "require": { - "composer-plugin-api": "^2", - "php": ">=7.3.0" + "composer-plugin-api": "^1 || ^2", + "php": ">=7.0.8" }, "conflict": { "drupal-composer/drupal-scaffold": "*" @@ -5263,81 +4028,78 @@ "keywords": [ "drupal" ], - "support": { - "source": "https://github.com/drupal/core-composer-scaffold/tree/10.2.3" - }, - "time": "2024-01-26T14:59:30+00:00" + "time": "2020-08-07T22:30:30+00:00" }, { "name": "drupal/core-recommended", - "version": "10.2.3", + "version": "8.9.5", "source": { "type": "git", "url": "https://github.com/drupal/core-recommended.git", - "reference": "ee5d148455ca5792108a1fd007ae162ea2ffe859" + "reference": "2d320331187e2e5e4945b34fc608263ffb93e2a1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drupal/core-recommended/zipball/ee5d148455ca5792108a1fd007ae162ea2ffe859", - "reference": "ee5d148455ca5792108a1fd007ae162ea2ffe859", + "url": "https://api.github.com/repos/drupal/core-recommended/zipball/2d320331187e2e5e4945b34fc608263ffb93e2a1", + "reference": "2d320331187e2e5e4945b34fc608263ffb93e2a1", "shasum": "" }, "require": { - "asm89/stack-cors": "~v2.2.0", - "composer/semver": "~3.4.0", - "doctrine/annotations": "~1.14.3", - "doctrine/deprecations": "~1.1.2", - "doctrine/lexer": "~2.1.0", - "drupal/core": "10.2.3", - "egulias/email-validator": "~4.0.2", - "guzzlehttp/guzzle": "~7.8.1", - "guzzlehttp/promises": "~2.0.2", - "guzzlehttp/psr7": "~2.6.2", - "masterminds/html5": "~2.8.1", - "mck89/peast": "~v1.15.4", - "pear/archive_tar": "~1.4.14", - "pear/console_getopt": "~v1.4.3", - "pear/pear-core-minimal": "~v1.10.14", - "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.0.2", - "psr/log": "~3.0.0", - "ralouphie/getallheaders": "~3.0.3", - "sebastian/diff": "~4.0.5", - "symfony/console": "~v6.4.1", - "symfony/dependency-injection": "~v6.4.1", - "symfony/deprecation-contracts": "~v3.4.0", - "symfony/error-handler": "~v6.4.0", - "symfony/event-dispatcher": "~v6.4.0", - "symfony/event-dispatcher-contracts": "~v3.4.0", - "symfony/filesystem": "~v6.4.0", - "symfony/finder": "~v6.4.0", - "symfony/http-foundation": "~v6.4.0", - "symfony/http-kernel": "~v6.4.1", - "symfony/mailer": "~v6.4.0", - "symfony/mime": "~v6.4.0", - "symfony/polyfill-ctype": "~v1.28.0", - "symfony/polyfill-iconv": "~v1.28.0", - "symfony/polyfill-intl-grapheme": "~v1.28.0", - "symfony/polyfill-intl-idn": "~v1.28.0", - "symfony/polyfill-intl-normalizer": "~v1.28.0", - "symfony/polyfill-mbstring": "~v1.28.0", - "symfony/polyfill-php83": "~v1.28.0", - "symfony/process": "~v6.4.0", - "symfony/psr-http-message-bridge": "~v6.4.0", - "symfony/routing": "~v6.4.1", - "symfony/serializer": "~v6.4.1", - "symfony/service-contracts": "~v3.4.0", - "symfony/string": "~v6.4.0", - "symfony/translation-contracts": "~v3.4.0", - "symfony/validator": "~v6.4.0", - "symfony/var-dumper": "~v6.4.0", - "symfony/var-exporter": "~v6.4.1", - "symfony/yaml": "~v6.4.0", - "twig/twig": "~v3.8.0" + "asm89/stack-cors": "1.3.0", + "composer/semver": "1.5.1", + "doctrine/annotations": "v1.4.0", + "doctrine/cache": "v1.6.2", + "doctrine/collections": "v1.4.0", + "doctrine/common": "v2.7.3", + "doctrine/inflector": "v1.2.0", + "doctrine/lexer": "1.0.2", + "drupal/core": "8.9.5", + "easyrdf/easyrdf": "0.9.1", + "egulias/email-validator": "2.1.17", + "guzzlehttp/guzzle": "6.5.4", + "guzzlehttp/promises": "v1.3.1", + "guzzlehttp/psr7": "1.6.1", + "laminas/laminas-diactoros": "1.8.7p2", + "laminas/laminas-escaper": "2.6.1", + "laminas/laminas-feed": "2.12.2", + "laminas/laminas-stdlib": "3.2.1", + "laminas/laminas-zendframework-bridge": "1.0.4", + "masterminds/html5": "2.3.0", + "paragonie/random_compat": "v9.99.99", + "pear/archive_tar": "1.4.9", + "pear/console_getopt": "v1.4.3", + "pear/pear-core-minimal": "v1.10.10", + "pear/pear_exception": "v1.0.1", + "psr/container": "1.0.0", + "psr/http-message": "1.0.1", + "psr/log": "1.1.3", + "ralouphie/getallheaders": "3.0.3", + "stack/builder": "v1.0.5", + "symfony-cmf/routing": "1.4.1", + "symfony/class-loader": "v3.4.41", + "symfony/console": "v3.4.41", + "symfony/debug": "v3.4.41", + "symfony/dependency-injection": "v3.4.41", + "symfony/event-dispatcher": "v3.4.41", + "symfony/http-foundation": "v3.4.41", + "symfony/http-kernel": "v3.4.44", + "symfony/polyfill-ctype": "v1.17.0", + "symfony/polyfill-iconv": "v1.17.0", + "symfony/polyfill-intl-idn": "v1.17.0", + "symfony/polyfill-mbstring": "v1.17.0", + "symfony/polyfill-php56": "v1.17.0", + "symfony/polyfill-php70": "v1.17.0", + "symfony/polyfill-php72": "v1.17.0", + "symfony/polyfill-util": "v1.17.0", + "symfony/process": "v3.4.41", + "symfony/psr-http-message-bridge": "v1.1.2", + "symfony/routing": "v3.4.41", + "symfony/serializer": "v3.4.41", + "symfony/translation": "v3.4.41", + "symfony/validator": "v3.4.41", + "symfony/yaml": "v3.4.41", + "twig/twig": "v1.42.5", + "typo3/phar-stream-wrapper": "v3.1.4" }, "conflict": { "webflo/drupal-core-strict": "*" @@ -5347,34 +4109,31 @@ "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.2.3" - }, - "time": "2024-02-07T22:44:48+00:00" + "description": "Locked core dependencies; require this project INSTEAD OF drupal/core.", + "time": "2020-09-03T21:07:45+00:00" }, { "name": "drupal/crop", - "version": "2.3.0", + "version": "2.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/crop.git", - "reference": "8.x-2.3" + "reference": "8.x-2.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/crop-8.x-2.3.zip", - "reference": "8.x-2.3", - "shasum": "8e109cf60077f4c605c4d1f895cb3dc28613a23a" + "url": "https://ftp.drupal.org/files/projects/crop-8.x-2.1.zip", + "reference": "8.x-2.1", + "shasum": "c03541907d59874ca8a81f574258f6c0de8cbdc8" }, "require": { - "drupal/core": "^9.3 || ^10" + "drupal/core": "^8.8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.3", - "datestamp": "1665437894", + "version": "8.x-2.1", + "datestamp": "1585251827", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5383,7 +4142,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { @@ -5410,89 +4169,37 @@ "issues": "https://www.drupal.org/project/issues/crop" } }, - { - "name": "drupal/csp", - "version": "1.30.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/csp.git", - "reference": "8.x-1.30" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/csp-8.x-1.30.zip", - "reference": "8.x-1.30", - "shasum": "50ff811459e9d93a1d605f96ada4082aa0dc637f" - }, - "require": { - "drupal/core": "~10.0.0 || ^10.1.3", - "ext-json": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.30", - "datestamp": "1705655685", - "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" - } - }, { "name": "drupal/ctools", - "version": "3.14.0", + "version": "3.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/ctools.git", - "reference": "8.x-3.14" + "reference": "8.x-3.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.14.zip", - "reference": "8.x-3.14", - "shasum": "8895a8e47199b458013bc153ceafa0b1495f33c1" + "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.4.zip", + "reference": "8.x-3.4", + "shasum": "016ca5abb7ac4ca720352a72e8989f3ef0e20539" }, "require": { - "drupal/core": "^9.3 || ^10" + "drupal/core": "^8.7.7 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.14", - "datestamp": "1684299793", + "version": "8.x-3.4", + "datestamp": "1585763383", "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": [ { @@ -5554,29 +4261,26 @@ }, { "name": "drupal/customerror", - "version": "1.0.0-beta3", + "version": "dev-1.x", "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" + "reference": "a85730815a94ab32777517c73e417847ac86c50f" }, "require": { - "drupal/core": "^8.8 || ^9 || ^10" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.0-beta3", - "datestamp": "1682597105", + "version": "8.x-1.0-alpha1+1-dev", + "datestamp": "1586952594", "security-coverage": { "status": "not-covered", - "message": "Beta releases are not covered by Drupal security advisories." + "message": "Dev releases are not covered by Drupal security advisories." } } }, @@ -5585,6 +4289,10 @@ "GPL-2.0-or-later" ], "authors": [ + { + "name": "anil614sagar", + "homepage": "https://www.drupal.org/user/402938" + }, { "name": "gisle", "homepage": "https://www.drupal.org/user/409554" @@ -5610,188 +4318,31 @@ "homepage": "https://www.drupal.org/project/customerror", "support": { "source": "https://git.drupalcode.org/project/customerror" - } - }, - { - "name": "drupal/dashboards", - "version": "2.1.6", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/dashboards.git", - "reference": "2.1.6" }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/dashboards-2.1.6.zip", - "reference": "2.1.6", - "shasum": "e8ba79f31ff32da7b1ee9a57a61c5987014a365f" - }, - "require": { - "drupal/core": "^9.4 || ^10", - "laminas/laminas-feed": "^2.17" - }, - "require-dev": { - "drupal/matomo": "*", - "drupal/matomo_reporting_api": "*", - "drupal/webform": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.1.6", - "datestamp": "1681725489", - "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" - } - ], - "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.1", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/date_popup.git", - "reference": "2.0.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/date_popup-2.0.1.zip", - "reference": "2.0.1", - "shasum": "15cab5f339d60569c2380545b6e16b5f3612b98f" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.1", - "datestamp": "1694567369", - "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.4.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/datetimehideseconds.git", - "reference": "8.x-1.4" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/datetimehideseconds-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "fdfa8eeb35ec9577bf95caf49473c71d2ff011c0" - }, - "require": { - "drupal/core": "^8.7.7 || ^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.4", - "datestamp": "1703164799", - "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" - }, - { - "name": "heliogabal", - "homepage": "https://www.drupal.org/user/998658" - } - ], - "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" - } + "time": "2020-04-15T12:20:21+00:00" }, { "name": "drupal/default_content", - "version": "2.0.0-alpha2", + "version": "1.0.0-alpha9", "source": { "type": "git", "url": "https://git.drupalcode.org/project/default_content.git", - "reference": "2.0.0-alpha2" + "reference": "8.x-1.0-alpha9" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/default_content-2.0.0-alpha2.zip", - "reference": "2.0.0-alpha2", - "shasum": "5c365ea21b0be63dc00ec2db50179291d6fb3d89" + "url": "https://ftp.drupal.org/files/projects/default_content-8.x-1.0-alpha9.zip", + "reference": "8.x-1.0-alpha9", + "shasum": "e8d5cc6ae96b14e882852512fbf5887e752146a0" }, "require": { - "drupal/core": "^9.1 || ^10" - }, - "require-dev": { - "drupal/hal": " ^9 || ^1 || ^2", - "drupal/paragraphs": "^1" + "drupal/core": "^8.7.7 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.0-alpha2", - "datestamp": "1659466706", + "version": "8.x-1.0-alpha9", + "datestamp": "1588280141", "security-coverage": { "status": "not-covered", "message": "Alpha releases are not covered by Drupal security advisories." @@ -5799,7 +4350,7 @@ }, "drush": { "services": { - "drush.services.yml": "^9 || ^10 || ^11" + "drush.services.yml": "^9" } } }, @@ -5808,6 +4359,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" @@ -5816,10 +4375,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" @@ -5831,10 +4386,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", @@ -5845,27 +4396,30 @@ }, { "name": "drupal/diff", - "version": "1.1.0", + "version": "1.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/diff.git", - "reference": "8.x-1.1" + "reference": "8.x-1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/diff-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "b7558b0f431d5945289829946e0beba61bf7ae18" + "url": "https://ftp.drupal.org/files/projects/diff-8.x-1.0.zip", + "reference": "8.x-1.0", + "shasum": "7106ca30b7b10343fbf79a0c42fc7981b109095f" }, "require": { - "drupal/core": "^9.3 || ^10", + "drupal/core": "^8.7.7 || ^9", "mkalkbrenner/php-htmldiff-advanced": "~0.0.8" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.1", - "datestamp": "1665437355", + "version": "8.x-1.0", + "datestamp": "1578322688", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -5874,7 +4428,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { @@ -5902,10 +4456,6 @@ "homepage": "https://www.drupal.org/u/realityloop", "role": "Maintainer" }, - { - "name": "lhangea", - "homepage": "https://www.drupal.org/user/2743803" - }, { "name": "miro_dietiker", "homepage": "https://www.drupal.org/user/227761" @@ -5934,172 +4484,32 @@ "issues": "https://www.drupal.org/project/issues/diff" } }, - { - "name": "drupal/drd", - "version": "4.1.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/drd.git", - "reference": "4.1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drd-4.1.0.zip", - "reference": "4.1.0", - "shasum": "d96810709e0b1dfa4d7e290ee0d7c12afef09c22" - }, - "require": { - "albertofem/rsync-lib": "^1.0", - "cypresslab/gitelephant": "^2.0|^4.0", - "drupal/advancedqueue": "^1.0@RC", - "drupal/core": "^10 || ^11", - "drupal/drd_agent": "^4.1", - "drupal/encrypt": "^3.1", - "drupal/eva": "^3.0", - "drupal/key_value_field": "^1.3", - "mikehaertl/php-shellcommand": "^1.6", - "php": ">=8.1", - "phpseclib/phpseclib": "^2.0|^3.0", - "platformsh/client": "^2.0", - "symfony/filesystem": "^2.8|^3|^4|^5|^6" - }, - "require-dev": { - "drupal/drd_pi": "*", - "drupal/eca": "^2.0", - "drupal/gitlab_api": "^2.1", - "drupal/webform": "^6.2@RC" - }, - "suggest": { - "drupal/console": "CLI to use and optionally automate DRD actions.", - "drupal/extlink": "Allows to open external links in new tabs/windows.", - "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/real_aes": "Encryption method for the encrypt module.", - "drupal/security_review": "Site security and configuration review module.", - "drush/drush": "Another CLI to use and optionally automate DRD actions." - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "4.1.0", - "datestamp": "1702474003", - "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": "Dashboard to monitor and manage any number of remote Drupal 6, 7 or 8 sites", - "homepage": "https://www.drupal.org/project/drd", - "keywords": [ - "Drupal" - ], - "support": { - "source": "https://git.drupal.org/project/drd", - "issues": "https://www.drupal.org/project/issues/drd" - } - }, - { - "name": "drupal/drd_agent", - "version": "4.1.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/drd_agent.git", - "reference": "4.1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drd_agent-4.1.0.zip", - "reference": "4.1.0", - "shasum": "5979d4d98f76d81c1e68bbfd7b04a7de73f9e33b" - }, - "require": { - "drupal/core": "^10 || ^11", - "php": ">=8.1" - }, - "require-dev": { - "drupal/hacked": "^2.0@beta", - "drupal/job_scheduler": "^4.0", - "drupal/monitoring": "^1.13", - "drupal/security_review": "^2.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.0", - "datestamp": "1701853228", - "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/dropdown_language", - "version": "4.0.3", + "version": "2.6.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/dropdown_language.git", - "reference": "4.0.3" + "reference": "8.x-2.6" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/dropdown_language-4.0.3.zip", - "reference": "4.0.3", - "shasum": "1c59a667f3215baa8bfa4ed9d77b17899377f2e7" + "url": "https://ftp.drupal.org/files/projects/dropdown_language-8.x-2.6.zip", + "reference": "8.x-2.6", + "shasum": "11ee40951a536a6e7810fc8f1bed3d41b510402c" }, "require": { - "drupal/core": "^10", - "php": "^8.0" + "drupal/core": "^8 || ^9", + "php": "^7.1" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-2.x": "2.x-dev" + }, "drupal": { - "version": "4.0.3", - "datestamp": "1679314009", + "version": "8.x-2.6", + "datestamp": "1584793087", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -6113,16 +4523,8 @@ "authors": [ { "name": "Scott Carpenter", - "homepage": "https://www.drupal.org/user/291091", + "homepage": "https://www.drupal.org/user/297907", "email": "dropdown-language@goodscott.com" - }, - { - "name": "Grevil", - "homepage": "https://www.drupal.org/user/3668491" - }, - { - "name": "SKAUGHT", - "homepage": "https://www.drupal.org/user/297907" } ], "description": "Dropdown Language Switcher. https://www.drupal.org/project/dropdown_language", @@ -6133,400 +4535,35 @@ }, { "name": "drupal/drutopia_action", - "version": "2.0.0-rc1", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_action.git", - "reference": "2.0.0-rc1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_action-2.0.0-rc1.zip", - "reference": "2.0.0-rc1", - "shasum": "e1e9aea007a1b2174ff286b8cf54a9bc3edac75a" + "reference": "7d5f3c5db87933813657b7dda3b1bb6e5cd833d4" }, "require": { "drupal/config_actions": "^1.1", - "drupal/config_snapshot": "*", - "drupal/core": "^9.4 || ^10", + "drupal/core": "^8 || ^9", "drupal/drutopia_core": "*", - "drupal/drutopia_seo": "^2", + "drupal/drutopia_seo": "^1.0", "drupal/drutopia_site": "*", "drupal/ds": "^3.7", "drupal/entity_reference_revisions": "*", "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": "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": "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 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": "2.0.0-rc2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/drutopia_article.git", - "reference": "2.0.0-rc2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_article-2.0.0-rc2.zip", - "reference": "2.0.0-rc2", - "shasum": "e51b860d49240eba2bdeb696c7b1e068f5f0b2fe" - }, - "require": { - "drupal/block_visibility_groups": "^2", - "drupal/config_actions": "^1.1", - "drupal/config_snapshot": "*", - "drupal/core": "^9.4 || ^10", - "drupal/ctools": "^3.4", - "drupal/drutopia_comment": "*", - "drupal/drutopia_core": "*", - "drupal/drutopia_people": "*", - "drupal/drutopia_seo": "^2", - "drupal/drutopia_site": "*", - "drupal/ds": "^3.7", - "drupal/entity_reference_revisions": "*", - "drupal/facets": "^2", - "drupal/field_group": "^3.0", - "drupal/focal_point": "*", - "drupal/media_library_media_modify": "*", - "drupal/media_responsive_thumbnail": "*", - "drupal/metatag": "*", - "drupal/paragraphs": "*", - "drupal/pathauto": "^1.8", - "drupal/rdf": "*", - "drupal/search_api": "*", - "drupal/token": "^1.7" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.0-rc2", - "datestamp": "1698093781", - "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": "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 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": "2.0.0-rc2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/drutopia_blog.git", - "reference": "2.0.0-rc2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/drutopia_blog-2.0.0-rc2.zip", - "reference": "2.0.0-rc2", - "shasum": "71720613f7a0b4f6437f4bf1fd29dc0cb210ed7a" - }, - "require": { - "drupal/block_visibility_groups": "^2", - "drupal/config_actions": "^1.1", - "drupal/core": "^9.4 || ^10", - "drupal/ctools": "^3.4", - "drupal/drutopia_comment": "*", - "drupal/drutopia_core": "*", - "drupal/drutopia_people": "*", - "drupal/drutopia_seo": "^2", - "drupal/drutopia_site": "*", - "drupal/ds": "^3.7", - "drupal/entity_reference_revisions": "*", - "drupal/facets": "^2", - "drupal/field_group": "^3.0", - "drupal/focal_point": "*", - "drupal/media_library_media_modify": "*", - "drupal/media_responsive_thumbnail": "*", - "drupal/metatag": "*", - "drupal/paragraphs": "*", - "drupal/pathauto": "^1.8", - "drupal/search_api": "*", - "drupal/token": "^1.7" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.0-rc2", - "datestamp": "1698094057", - "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": "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 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": "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 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": "6f25bea1f255a34322622ecf876637429f023c43" - }, - "require": { - "drupal/config_actions": "^1.0", - "drupal/core": "^8 || ^9 || ^10", - "drupal/ctools": "^3.0", - "drupal/drutopia_article": "^2", - "drupal/drutopia_blog": "^2", - "drupal/drutopia_core": "*", - "drupal/drutopia_people": "^2", - "drupal/drutopia_seo": "^2", - "drupal/ds": "^3.1", - "drupal/entity_reference_revisions": "*", - "drupal/metatag": "^1.9", - "drupal/paragraphs": "*" - }, - "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": "1694686396", + "version": "8.x-1.0-rc2+1-dev", + "datestamp": "1591210829", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -6539,355 +4576,13 @@ ], "authors": [ { - "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": "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": "cedewey", + "homepage": "https://www.drupal.org/user/38694" }, { "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 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": "05ee8ae13f1b24ea3c450aee6fd854919432f17d" - }, - "require": { - "drupal/automated_crop": "^3.0", - "drupal/config_actions": "^1.3", - "drupal/config_perms": "^2.0", - "drupal/core": "^9.4 || ^10", - "drupal/crop": "^2.1", - "drupal/ds": "^3.12", - "drupal/exclude_node_title": "*", - "drupal/facets": "^2", - "drupal/faqfield": "^7.0", - "drupal/focal_point": "^2.0", - "drupal/image_field_to_media": "^2.0", - "drupal/image_widget_crop": "^2", - "drupal/media_contextual_crop": "1.2.x-dev@dev", - "drupal/media_contextual_crop_field_formatter": "^1.3", - "drupal/media_contextual_crop_fp_adapter": "^1", - "drupal/media_contextual_crop_iwc_adapter": "^1", - "drupal/media_library_media_modify": "^1.0@beta", - "drupal/media_responsive_thumbnail": "^1", - "drupal/metatag": "^1.16", - "drupal/paragraphs": "^1.12", - "drupal/pathauto": "*", - "drupal/rdf": "*", - "drupal/search_api": "^1.19", - "drupal/search_api_db": "*", - "drupal/video_embed_field": "^2.4" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-2.0.x": "2.0.x-dev" - }, - "drupal": { - "version": "2.0.x-dev", - "datestamp": "1701463245", - "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": "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 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": "049ebe8b42a04481d637ec7bb30194b5af9c58e5" - }, - "require": { - "drupal/block_visibility_groups": "^2", - "drupal/config_actions": "^1.1", - "drupal/core": "^9.4 || ^10", - "drupal/ctools": "^3.4", - "drupal/drutopia_core": "*", - "drupal/drutopia_seo": "^2", - "drupal/ds": "^3.7", - "drupal/entity_reference_revisions": "*", - "drupal/facets": "^2", - "drupal/field_group": "*", - "drupal/focal_point": "*", - "drupal/media_library_media_modify": "*", - "drupal/media_responsive_thumbnail": "*", - "drupal/metatag": "*", - "drupal/paragraphs": "*", - "drupal/pathauto": "^1.8", - "drupal/search_api": "*", - "drupal/token": "^1.7" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-2.0.x": "2.0.x-dev" - }, - "drupal": { - "version": "2.0.x-dev", - "datestamp": "1701465986", - "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" - }, - { - "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": "13c6e8b04b29b594562a21690047342ce386f64f" - }, - "require": { - "drupal/address": "^1.8", - "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.8" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-2.0.x": "2.0.x-dev" - }, - "drupal": { - "version": "2.0.x-dev", - "datestamp": "1694685946", - "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" @@ -6903,14 +4598,548 @@ { "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" + }, + "time": "2020-08-05T19:19:36+00:00" + }, + { + "name": "drupal/drutopia_article", + "version": "dev-1.x", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drutopia_article.git", + "reference": "0f78d828e8cbcd2e1b7f8ab91680a590e310cef0" + }, + "require": { + "drupal/block_visibility_groups": "^1.3", + "drupal/config_actions": "^1.1", + "drupal/core": "^8 || ^9", + "drupal/ctools": "^3.4", + "drupal/drutopia_comment": "*", + "drupal/drutopia_core": "*", + "drupal/drutopia_people": "*", + "drupal/drutopia_seo": "^1.0", + "drupal/drutopia_site": "*", + "drupal/ds": "^3.7", + "drupal/entity_reference_revisions": "*", + "drupal/facets": "^1.4", + "drupal/field_group": "^3.0", + "drupal/focal_point": "*", + "drupal/metatag": "*", + "drupal/paragraphs": "*", + "drupal/pathauto": "^1.8", + "drupal/search_api": "*", + "drupal/token": "^1.7" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-rc2+1-dev", + "datestamp": "1591210846", + "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": "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" + }, + "time": "2020-08-05T19:20:11+00:00" + }, + { + "name": "drupal/drutopia_blog", + "version": "dev-1.x", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drutopia_blog.git", + "reference": "c1d9209ece22e69a655af92af0d16587f31f5168" + }, + "require": { + "drupal/block_visibility_groups": "^1.3", + "drupal/config_actions": "^1.1", + "drupal/core": "^8 || ^9", + "drupal/ctools": "^3.4", + "drupal/drutopia_comment": "*", + "drupal/drutopia_core": "*", + "drupal/drutopia_people": "*", + "drupal/drutopia_seo": "^1.0", + "drupal/drutopia_site": "*", + "drupal/ds": "^3.7", + "drupal/entity_reference_revisions": "*", + "drupal/facets": "^1.4", + "drupal/field_group": "^3.0", + "drupal/focal_point": "*", + "drupal/metatag": "*", + "drupal/paragraphs": "*", + "drupal/pathauto": "^1.8", + "drupal/search_api": "*", + "drupal/token": "^1.7" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0+1-dev", + "datestamp": "1595519501", + "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": "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" + }, + "time": "2020-08-05T19:20:01+00:00" + }, + { + "name": "drupal/drutopia_campaign", + "version": "dev-1.x", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drutopia_campaign.git", + "reference": "001584b9d29c92471549865c741de3782423514c" + }, + "require": { + "drupal/config_actions": "^1.1", + "drupal/core": "^8 || ^9", + "drupal/drutopia_core": "^1.0", + "drupal/drutopia_seo": "^1.0", + "drupal/ds": "^3.7", + "drupal/entity_reference_revisions": "*", + "drupal/field_group": "^3.0", + "drupal/focal_point": "*", + "drupal/metatag": "*", + "drupal/paragraphs": "^1.12", + "drupal/pathauto": "^1.8", + "drupal/search_api": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-rc2+1-dev", + "datestamp": "1591210885", + "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": "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" + }, + "time": "2020-08-05T19:20:34+00:00" + }, + { + "name": "drupal/drutopia_comment", + "version": "dev-1.x", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drutopia_comment.git", + "reference": "18dfba03606ce995463085070fc494434400a525" + }, + "require": { + "drupal/config_actions": "^1.1", + "drupal/core": "^8 || ^9", + "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-rc1+1-dev", + "datestamp": "1591210900", + "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": "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" + }, + "time": "2020-08-05T19:23:31+00:00" + }, + { + "name": "drupal/drutopia_core", + "version": "dev-update-to-drupal9", + "source": { + "type": "git", + "url": "https://gitlab.com/drutopia/drutopia_core.git", + "reference": "089d79027ac766f4beb5a3d45bff75140483fe9b" + }, + "dist": { + "type": "zip", + "url": "https://gitlab.com/api/v4/projects/drutopia%2Fdrutopia_core/repository/archive.zip?sha=089d79027ac766f4beb5a3d45bff75140483fe9b", + "reference": "089d79027ac766f4beb5a3d45bff75140483fe9b", + "shasum": "" + }, + "require": { + "drupal/config_actions": "^1.1", + "drupal/config_perms": "^2.0-beta2", + "drupal/crop": "^2.0", + "drupal/ds": "^3.7", + "drupal/facets": "^1.4", + "drupal/faqfield": "^7.0", + "drupal/focal_point": "^1.4", + "drupal/metatag": "^1.13", + "drupal/paragraphs": "^1.12", + "drupal/search_api": "^1.17", + "drupal/video_embed_field": "^2.4" + }, + "type": "drupal-module", + "extra": { + "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" + } + } + }, + "license": [ + "GPL-2.0+" + ], + "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": { + "issues": "https://gitlab.com/drutopia/drutopia_core/issues", + "source": "https://gitlab.com/drutopia/drutopia_core/tree/8.x-1.x" + }, + "time": "2020-09-10T02:56:00+00:00" + }, + { + "name": "drupal/drutopia_event", + "version": "dev-1.x", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drutopia_event.git", + "reference": "abb27d7ba14997e7a733b90028729278f1f14325" + }, + "require": { + "drupal/block_visibility_groups": "^1.3", + "drupal/config_actions": "^1.1", + "drupal/core": "^8 || ^9", + "drupal/ctools": "^3.4", + "drupal/drutopia_core": "*", + "drupal/drutopia_seo": "^1.0", + "drupal/ds": "^3.7", + "drupal/entity_reference_revisions": "*", + "drupal/facets": "^1.4", + "drupal/field_group": "*", + "drupal/focal_point": "*", + "drupal/metatag": "*", + "drupal/paragraphs": "*", + "drupal/pathauto": "^1.8", + "drupal/search_api": "*", + "drupal/token": "^1.7" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-rc2+1-dev", + "datestamp": "1591210932", + "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": "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" + }, + "time": "2020-08-05T21:04:36+00:00" + }, + { + "name": "drupal/drutopia_group", + "version": "dev-1.x", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drutopia_group.git", + "reference": "dd3f633af1579082172dc97a042937ec4fc63b8c" + }, + "require": { + "drupal/address": "^1.8", + "drupal/config_actions": "*", + "drupal/config_perms": "*", + "drupal/core": "^8 || ^9", + "drupal/ctools": "*", + "drupal/drutopia_core": "^1.0", + "drupal/ds": "*", + "drupal/entity_reference_revisions": "*", + "drupal/gnode": "*", + "drupal/group": "^1.0-rc5", + "drupal/paragraphs": "*", + "drupal/pathauto": "^1.8" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-rc2+1-dev", + "datestamp": "1591210948", + "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": "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://www.drupal.org/project/drutopia_group", + "homepage": "https://gitlab.com/drutopia/drutopia_group", "keywords": [ "drutopia", "grassroots", @@ -6918,26 +5147,26 @@ "organizations" ], "support": { - "source": "https://git.drupalcode.org/project/drutopia_group/-/tree/2.0.x", - "issues": "https://www.drupal.org/project/issues/drutopia_group" - } + "source": "https://gitlab.com/drutopia/drutopia_group/tree/8.x-1.x", + "issues": "https://gitlab.com/drutopia/drutopia_group/issues" + }, + "time": "2020-08-05T21:06:24+00:00" }, { "name": "drupal/drutopia_landing_page", - "version": "dev-2.0.x", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_landing_page.git", - "reference": "fa3e5874142fffdd757aca5665e5414cf07e416c" + "reference": "ab91e991bad252fa3d2e6c92b2b83b560cf9f2e5" }, "require": { "cweagans/composer-patches": "^1.5.0", "drupal/config_actions": "^1.1", - "drupal/config_snapshot": "*", - "drupal/core": "^9.4 || ^10", + "drupal/core": "^8 || ^9", "drupal/ctools": "^3.4", "drupal/drutopia_core": "*", - "drupal/drutopia_seo": "^2", + "drupal/drutopia_seo": "^1.0", "drupal/ds": "^3.7", "drupal/entity_reference_revisions": "*", "drupal/exclude_node_title": "^1.0-beta1", @@ -6949,11 +5178,11 @@ "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": "1701465249", + "version": "8.x-1.0-rc1+1-dev", + "datestamp": "1591210962", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -6966,841 +5195,13 @@ ], "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": "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 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": "1401174fb7ede9e0bcc91930c16334434f2be3ce" - }, - "require": { - "drupal/block_visibility_groups": "*", - "drupal/config_actions": "^1.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.7", - "drupal/entity_reference_revisions": "*", - "drupal/facets": "*", - "drupal/field_group": "^3.0", - "drupal/focal_point": "*", - "drupal/ief_complex_open": "^1.0", - "drupal/inline_entity_form": "^1.0@RC", - "drupal/metatag": "*", - "drupal/paragraphs": "^1.12", - "drupal/pathauto": "^1.8", - "drupal/search_api": "*" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-2.0.x": "2.0.x-dev" - }, - "drupal": { - "version": "2.0.x-dev", - "datestamp": "1694685386", - "security-coverage": { - "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0+" - ], - "authors": [ - { - "name": "dinarcon", - "homepage": "https://www.drupal.org/user/909522" - }, - { - "name": "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": "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": "ac4fece72920bfb181c50fb4c9bbcb35849d4408" - }, - "require": { - "drupal/config_actions": "^1.1", - "drupal/core": "^8.9 || ^9 || ^10", - "drupal/ctools": "^3.4", - "drupal/drutopia_core": "*", - "drupal/drutopia_seo": "^2", - "drupal/ds": "^3.7", - "drupal/entity_reference_revisions": "*", - "drupal/metatag": "*", - "drupal/paragraphs": "*", - "drupal/pathauto": "^1.8", - "drupal/rdf": "*", - "drupal/token": "^1.7" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-2.0.x": "2.0.x-dev" - }, - "drupal": { - "version": "2.0.x-dev", - "datestamp": "1701465224", - "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" - }, - { - "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": "8bd77a9b1bce1ea44201d4b3ae0252f81601486a" - }, - "require": { - "drupal/allowed_formats": "^2", - "drupal/core": "^8.8.3 || ^9 || ^10", - "drupal/drutopia_core": "^1 || ^2", - "drupal/entity_reference_revisions": "*", - "drupal/minimalhtml": "^2", - "drupal/minimalhtmltitle": "*", - "drupal/paragraphs": "^1.15", - "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+8-dev", - "datestamp": "1688129764", - "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": "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 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": "60aa239bf374421011a88e0adfdf0e23e1e88453" - }, - "require": { - "drupal/config_actions": "^1.1", - "drupal/core": "^8.9 || ^9 || ^10", - "drupal/ctools": "*", - "drupal/drutopia_core": "^2", - "drupal/drutopia_seo": "^2", - "drupal/ds": "^3.7", - "drupal/entity_reference_revisions": "*", - "drupal/field_group": "^3.0", - "drupal/focal_point": "*", - "drupal/metatag": "*", - "drupal/paragraphs": "^1.12", - "drupal/pathauto": "^1.8", - "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": "1701465205", - "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" - }, - { - "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": "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": "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": "123b61f62d8368e914b7371dd882bfe9b37212b5" - }, - "require": { - "drupal/block_visibility_groups": "^2", - "drupal/config_actions": "^1.1", - "drupal/core": "^9.4 || ^10", - "drupal/ctools": "^3.4", - "drupal/drutopia_core": "*", - "drupal/drutopia_seo": "^2", - "drupal/ds": "^3.7", - "drupal/entity_reference_revisions": "*", - "drupal/facets": "^2", - "drupal/field_group": "^3.0", - "drupal/focal_point": "*", - "drupal/media_library_media_modify": "*", - "drupal/media_responsive_thumbnail": "*", - "drupal/metatag": "*", - "drupal/paragraphs": "*", - "drupal/pathauto": "^1.8", - "drupal/search_api": "*", - "drupal/token": "^1.7", - "drupal/video_embed_field": "^2.4" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-2.0.x": "2.0.x-dev" - }, - "drupal": { - "version": "2.0.x-dev", - "datestamp": "1701465181", - "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" - }, - { - "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": "b7d254541bf37c06e973250476ef40523d8b18f7" - }, - "require": { - "drupal/config_actions": "^1.1", - "drupal/core": "^8.9 || ^9 || ^10", - "drupal/drutopia_core": "*", - "drupal/metatag": "^1.13", - "drupal/redirect": "^1.6", - "drupal/redirect_404": "*" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-2.0.x": "2.0.x-dev" - }, - "drupal": { - "version": "2.0.x-dev", - "datestamp": "1697826547", - "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" - }, - { - "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": "55fae682ea8541260fd2a13ac6e0157e232154c3" - }, - "require": { - "drupal/admin_toolbar": "^3.0", - "drupal/admin_toolbar-admin_toolbar_search": "*", - "drupal/admin_toolbar_links_access_filter": "*", - "drupal/admin_toolbar_tools": "*", - "drupal/autosave_form": "1.x-dev", - "drupal/config_actions": "^1.1", - "drupal/config_snapshot": "*", - "drupal/core": "^9.4 || ^10", - "drupal/drutopia_core": "^2", - "drupal/ds": "*", - "drupal/entity_reference_revisions": "*", - "drupal/menu_admin_per_menu": "^1.1", - "drupal/paragraphs": "*", - "drupal/role_delegation": "^1.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": "1701461795", - "security-coverage": { - "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." - } - }, - "patches": { - "drupal/autosave_form": { - "PHP 8.2 deprecation issue with AutosaveFormBuilder": "https://www.drupal.org/files/issues/2023-04-20/autosave_form-dynamic-property-deprecation.patch" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "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 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": "b0af0f7828df04aadc2f4b897793a170e55d09d7" - }, - "require": { - "drupal/core": "^8.9 || ^9 || ^10", - "drupal/social_media_links": "^2.6" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-2.0.x": "2.0.x-dev" - }, - "drupal": { - "version": "2.0.x-dev", - "datestamp": "1687306332", - "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" @@ -7816,31 +5217,652 @@ { "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" + }, + "time": "2020-08-05T21:06:37+00:00" + }, + { + "name": "drupal/drutopia_page", + "version": "dev-1.x", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drutopia_page.git", + "reference": "c93d51c3a311c342fadf52a0cd553852a6c5619f" + }, + "require": { + "drupal/config_actions": "^1.1", + "drupal/core": "^8 || ^9", + "drupal/ctools": "^3.4", + "drupal/drutopia_core": "*", + "drupal/drutopia_seo": "^1.0", + "drupal/ds": "^3.7", + "drupal/entity_reference_revisions": "*", + "drupal/metatag": "*", + "drupal/paragraphs": "*", + "drupal/pathauto": "^1.8", + "drupal/token": "^1.7" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0+1-dev", + "datestamp": "1597015092", + "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": "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 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" + }, + "time": "2020-08-10T05:58:28+00:00" + }, + { + "name": "drupal/drutopia_people", + "version": "dev-1.x", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drutopia_people.git", + "reference": "970658fc2d7fd699476cbe71e3ac110745b15bd1" + }, + "require": { + "drupal/config_actions": "^1.1", + "drupal/core": "^8 || ^9", + "drupal/ctools": "*", + "drupal/drutopia_core": "^1.0", + "drupal/drutopia_seo": "^1.0", + "drupal/ds": "^3.7", + "drupal/entity_reference_revisions": "*", + "drupal/field_group": "^3.0", + "drupal/focal_point": "*", + "drupal/metatag": "*", + "drupal/paragraphs": "^1.12", + "drupal/pathauto": "^1.8", + "drupal/search_api": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0+1-dev", + "datestamp": "1596141488", + "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": "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" + }, + "time": "2020-08-05T21:10:06+00:00" + }, + { + "name": "drupal/drutopia_related_content", + "version": "dev-1.x", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drutopia_related_content.git", + "reference": "69b94e25d2f9414f77f8742b80858bf4c131a719" + }, + "require": { + "drupal/block_visibility_groups": "^1.3", + "drupal/core": "^8 || ^9", + "drupal/drutopia_core": "^1.0-beta3", + "drupal/similarterms": "^1.3" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-beta3+3-dev", + "datestamp": "1585265434", + "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": "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": "Shows content (articles, actions, etc.) related to the current page's content based on the taxonomy terms held in common.", + "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" + }, + "time": "2020-08-05T21:10:22+00:00" + }, + { + "name": "drupal/drutopia_resource", + "version": "dev-1.x", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drutopia_resource.git", + "reference": "431e0cf83cc17170e33fbd4c06635244f4316281" + }, + "require": { + "drupal/block_visibility_groups": "^1.3", + "drupal/config_actions": "^1.1", + "drupal/core": "^8 || ^9", + "drupal/ctools": "^3.4", + "drupal/drutopia_core": "*", + "drupal/drutopia_seo": "^1.0", + "drupal/ds": "^3.7", + "drupal/entity_reference_revisions": "*", + "drupal/facets": "^1.4", + "drupal/field_group": "^3.0", + "drupal/focal_point": "*", + "drupal/metatag": "*", + "drupal/paragraphs": "*", + "drupal/pathauto": "^1.8", + "drupal/search_api": "*", + "drupal/token": "^1.7", + "drupal/video_embed_field": "^2.4" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0+2-dev", + "datestamp": "1596662618", + "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": "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" + }, + "time": "2020-08-10T06:02:29+00:00" + }, + { + "name": "drupal/drutopia_search", + "version": "dev-1.x", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drutopia_search.git", + "reference": "e1a844c35fb17c5421d4a8e44dd59e510247baa3" + }, + "require": { + "drupal/block_visibility_groups": "^1.3", + "drupal/core": "^8 || ^9", + "drupal/drutopia_core": "^1.0", + "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-rc1+1-dev", + "datestamp": "1591211020", + "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": "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" + }, + "time": "2020-08-05T21:11:33+00:00" + }, + { + "name": "drupal/drutopia_seo", + "version": "dev-1.x", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drutopia_seo.git", + "reference": "c56a409ded7d2dc45366dc4f7aa1b93dbf240816" + }, + "require": { + "drupal/config_actions": "^1.1", + "drupal/core": "^8 || ^9", + "drupal/drutopia_core": "*", + "drupal/metatag": "^1.13", + "drupal/redirect": "^1.6", + "drupal/redirect_404": "*" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-rc1+1-dev", + "datestamp": "1591211035", + "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": "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" + }, + "time": "2020-08-05T21:11:46+00:00" + }, + { + "name": "drupal/drutopia_site", + "version": "dev-1.x", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drutopia_site.git", + "reference": "32be42a3a1a8957189d27bbf973238399a1668ae" + }, + "require": { + "drupal/admin_toolbar": "^2.2", + "drupal/admin_toolbar_links_access_filter": "*", + "drupal/admin_toolbar_tools": "*", + "drupal/autosave_form": "^1.1", + "drupal/ckeditorheight": "^1.8", + "drupal/config_actions": "^1.1", + "drupal/core": "^8 || ^9", + "drupal/drutopia_core": "^1.0", + "drupal/ds": "*", + "drupal/entity_reference_revisions": "*", + "drupal/menu_admin_per_menu": "^1.1", + "drupal/paragraphs": "*", + "drupal/role_delegation": "^1.1", + "drupal/wysiwyg_linebreaks": "^1.10" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-rc1+3-dev", + "datestamp": "1591211052", + "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": "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" + }, + "time": "2020-08-05T21:12:00+00:00" + }, + { + "name": "drupal/drutopia_social", + "version": "dev-1.x", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/drutopia_social.git", + "reference": "61e6e6ad3982ba5298fab0b4c21edbe0919979c8" + }, + "require": { + "drupal/core": "^8 || ^9", + "drupal/social_media_links": "^2.6" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0-beta1+1-dev", + "datestamp": "1591211069", + "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": "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://www.drupal.org/project/drutopia_social", + "homepage": "https://gitlab.com/drutopia/drutopia_social", "support": { "source": "https://git.drupalcode.org/project/drutopia_social" - } + }, + "time": "2020-08-05T21:12:19+00:00" }, { "name": "drupal/drutopia_storyline", - "version": "dev-2.0.x", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_storyline.git", - "reference": "fb32c3b3f2c3007dcb28bf55e9a0e72299e4b77a" + "reference": "27a354797ee457773116fdd8eb7aafee6d63e42a" }, "require": { "drupal/config_actions": "*", - "drupal/core": "^8.9 || ^9 || ^10", - "drupal/drutopia_core": "^2", - "drupal/drutopia_page": "^2", + "drupal/core": "^8 || ^9", + "drupal/drutopia_core": "^1.0", + "drupal/drutopia_page": "^1.0", "drupal/entity_reference_revisions": "*", "drupal/field_group": "^3.0", "drupal/paragraphs": "*" @@ -7852,11 +5874,11 @@ "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": "1694684949", + "version": "8.x-1.0-rc2+1-dev", + "datestamp": "1591211082", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -7869,21 +5891,13 @@ ], "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": "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" @@ -7899,14 +5913,10 @@ { "name": "rosemarymann", "homepage": "https://www.drupal.org/user/837536" - }, - { - "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", + "homepage": "https://gitlab.com/drutopia/drutopia_storyline", "keywords": [ "chronology", "content", @@ -7915,29 +5925,31 @@ "timeline" ], "support": { - "source": "https://git.drupalcode.org/project/drutopia_storyline/-/tree/2.0.x", - "issues": "https://www.drupal.org/project/issues/drutopia_storyline" - } + "source": "https://gitlab.com/drutopia/drutopia_storyline/tree/8.x-1.x", + "issues": "https://gitlab.com/drutopia/drutopia_storyline/issues" + }, + "time": "2020-08-05T21:12:39+00:00" }, { "name": "drupal/drutopia_user", - "version": "dev-2.0.x", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/drutopia_user.git", - "reference": "bba7bc4fbbc5a6e18b4bd66711e0d6735d8cb3d1" + "reference": "31585d713458159c15074747b523b486d4405778" }, "require": { - "drupal/core": "^8.9 || ^9 || ^10" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { "branch-alias": { - "dev-2.0.x": "2.0.x-dev" + "dev-1.x": "1.x-dev", + "dev-8.x-1.x": "1.x-dev" }, "drupal": { - "version": "2.0.x-dev", - "datestamp": "1693752967", + "version": "8.x-1.0-beta1+2-dev", + "datestamp": "1585265518", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -7950,21 +5962,13 @@ ], "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": "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" @@ -7980,14 +5984,10 @@ { "name": "rosemarymann", "homepage": "https://www.drupal.org/user/837536" - }, - { - "name": "wolcen", - "homepage": "https://www.drupal.org/user/3099655" } ], "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", @@ -7995,40 +5995,44 @@ "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" + }, + "time": "2020-08-05T21:12:58+00:00" }, { "name": "drupal/ds", - "version": "3.19.0", + "version": "3.9.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/ds.git", - "reference": "8.x-3.19" + "reference": "8.x-3.9" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/ds-8.x-3.19.zip", - "reference": "8.x-3.19", - "shasum": "7a1a4ded193ad8489c123a2f20ca2c7908c65eaa" + "url": "https://ftp.drupal.org/files/projects/ds-8.x-3.9.zip", + "reference": "8.x-3.9", + "shasum": "7b419763cd87c2b3f06313489500746705a46334" }, "require": { - "drupal/core": "^10" + "drupal/core": "^8.8 || ^9" }, "require-dev": { - "drupal/devel": "5.x-dev", + "drupal/devel": "3.x-dev", "drupal/field_group": "3.x-dev" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.19", - "datestamp": "1707499881", + "version": "8.x-3.9", + "datestamp": "1598898821", "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/2020-04-30/2895316-10.patch" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -8069,637 +6073,28 @@ "irc": "irc://irc.freenode.org/drupal-contribute" } }, - { - "name": "drupal/dynamic_entity_reference", - "version": "3.2.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/dynamic_entity_reference.git", - "reference": "3.2.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/dynamic_entity_reference-3.2.0.zip", - "reference": "3.2.0", - "shasum": "a265f7f0723fb085bd729e7624d644475900cf94" - }, - "require": { - "drupal/core": "^10 || ^11", - "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.0", - "datestamp": "1706486865", - "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.6", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/easy_breadcrumb.git", - "reference": "2.0.6" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/easy_breadcrumb-2.0.6.zip", - "reference": "2.0.6", - "shasum": "622f31fb071dea25735cfc4eaab4cf96bde917ab" - }, - "require": { - "drupal/core": "^9.2 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.6", - "datestamp": "1707084295", - "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": "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": "renatog", - "homepage": "https://www.drupal.org/user/3326031" - }, - { - "name": "sonemonu", - "homepage": "https://www.drupal.org/user/1667988" - }, - { - "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.4", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/eca.git", - "reference": "1.1.4" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/eca-1.1.4.zip", - "reference": "1.1.4", - "shasum": "fce478b8c6224997dc858bff1f8f57523c870de7" - }, - "require": { - "dragonmantank/cron-expression": "^3.1", - "drupal/core": "^9.4 || ^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.4", - "datestamp": "1689338278", - "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.4", - "require": { - "drupal/core": "^9 || ^10", - "drupal/eca": "^1", - "drupal/eca_ui": "*" - }, - "type": "metapackage", - "extra": { - "drupal": { - "version": "1.1.4", - "datestamp": "1689338278", - "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": "1.1.4", - "require": { - "drupal/core": "^9 || ^10", - "drupal/eca": "*" - }, - "type": "metapackage", - "extra": { - "drupal": { - "version": "1.1.4", - "datestamp": "1689338278", - "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.2.4", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/editor_advanced_link.git", - "reference": "2.2.4" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/editor_advanced_link-2.2.4.zip", - "reference": "2.2.4", - "shasum": "cd0db397827f2e21ec8a68211e8a153463a6c89b" - }, - "require": { - "drupal/core": "^9.2 || ^10" - }, - "require-dev": { - "drupal/ckeditor": "*", - "phpro/grumphp": "^2.0" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.2.4", - "datestamp": "1688040059", - "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" - } - ], - "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.1.8", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/editoria11y.git", - "reference": "2.1.8" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/editoria11y-2.1.8.zip", - "reference": "2.1.8", - "shasum": "6ec91608cb6cd0db75a9a9bd8681616080cb8e76" - }, - "require": { - "drupal/core": "^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.1.8", - "datestamp": "1707937463", - "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": "http://drupal.org/project/editoria11y", - "support": { - "source": "https://git.drupalcode.org/project/editoria11y", - "issues": "http://drupal.org/project/issues/editoria11y" - } - }, - { - "name": "drupal/email_registration", - "version": "1.4.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/email_registration.git", - "reference": "8.x-1.4" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "fe7a91b858a98533fc1d7550b0917fc80523f186" - }, - "require": { - "drupal/core": "^9.1 || ^10" - }, - "conflict": { - "drupal/commerce": "<2.12" - }, - "require-dev": { - "drupal/commerce": "^2.0", - "drupal/token": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.4", - "datestamp": "1700548925", - "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": "Andrey Postnikov (andypost)", - "homepage": "https://www.drupal.org/u/andypost", - "role": "Maintainer" - }, - { - "name": "Chris Herberte", - "homepage": "https://www.drupal.org/u/chris-herberte", - "role": "Maintainer" - }, - { - "name": "Moshe Weitzman (moshe weitzman)", - "homepage": "https://www.drupal.org/u/moshe-weitzman", - "role": "Maintainer" - }, - { - "name": "Grevil", - "homepage": "https://www.drupal.org/user/3668491" - }, - { - "name": "moshe weitzman", - "homepage": "https://www.drupal.org/user/23" - } - ], - "description": "Allows users to register with an email address as their username.", - "homepage": "https://www.drupal.org/project/email_registration", - "support": { - "source": "https://git.drupalcode.org/project/email_registration", - "issues": "http://drupal.org/project/issues/email_registration" - } - }, - { - "name": "drupal/encrypt", - "version": "3.1.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/encrypt.git", - "reference": "8.x-3.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/encrypt-8.x-3.1.zip", - "reference": "8.x-3.1", - "shasum": "357ca7fcf9879af66b5d0c5593da080f19664f17" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10", - "drupal/key": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-3.1", - "datestamp": "1669655248", - "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": "alexpott", - "homepage": "https://www.drupal.org/user/157725" - }, - { - "name": "gisle", - "homepage": "https://www.drupal.org/user/409554" - }, - { - "name": "greggles", - "homepage": "https://www.drupal.org/user/36762" - }, - { - "name": "nerdstein", - "homepage": "https://www.drupal.org/user/1557710" - }, - { - "name": "rlhawk", - "homepage": "https://www.drupal.org/user/352283" - }, - { - "name": "theunraveler", - "homepage": "https://www.drupal.org/user/71548" - }, - { - "name": "zzolo", - "homepage": "https://www.drupal.org/user/147331" - } - ], - "description": "Provides an API for two-way encryption.", - "homepage": "https://www.drupal.org/project/encrypt", - "support": { - "source": "https://git.drupalcode.org/project/encrypt" - } - }, { "name": "drupal/entity", - "version": "1.4.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/entity.git", - "reference": "8.x-1.4" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "1cf7712318fad144eab106a8fcfcd396aeb5676f" + "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "6009845bab8e76e23a0657cf898dc15365568e5c" }, "require": { - "drupal/core": "^9.2|^10.0" + "drupal/core": "^8.8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.4", - "datestamp": "1661898023", + "version": "8.x-1.1", + "datestamp": "1595445791", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -8734,150 +6129,30 @@ { "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_notify", - "version": "1.0.1", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/entity_notify.git", - "reference": "1.0.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/entity_notify-1.0.1.zip", - "reference": "1.0.1", - "shasum": "a58a2d532ffe269f6781926a89573d305ba546c4" - }, - "require": { - "drupal/core": "^9 || ^10", - "drupal/telegram_api": "^1.0" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "1.0.1", - "datestamp": "1693980020", - "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 when user create/edit/delete selected entities.", - "homepage": "https://www.drupal.org/project/entity_notify", - "support": { - "source": "https://git.drupalcode.org/project/entity_notify", - "issues": "https://www.drupal.org/project/issues/entity_notify" - } - }, - { - "name": "drupal/entity_reference_override", - "version": "2.0.0-beta2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/entity_reference_override.git", - "reference": "2.0.0-beta2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/entity_reference_override-2.0.0-beta2.zip", - "reference": "2.0.0-beta2", - "shasum": "8df72b040baee530fbf2186c8007c12b19f1286f" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10" - }, - "require-dev": { - "drupal/entity_browser": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.0-beta2", - "datestamp": "1689262248", - "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": "See contributors", - "homepage": "https://www.drupal.org/node/2809033/committers" - }, - { - "name": "dawehner", - "homepage": "https://www.drupal.org/user/99340" - }, - { - "name": "eaton", - "homepage": "https://www.drupal.org/user/16496" - }, - { - "name": "lelkneralfaro", - "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": "Display referenced entities with optional field overrides.", - "homepage": "https://www.drupal.org/project/entity_reference_override", - "support": { - "source": "https://git.drupalcode.org/project/entity_reference_override", - "issues": "https://www.drupal.org/project/issues/entity_reference_override" + "source": "https://git.drupalcode.org/project/entity" } }, { "name": "drupal/entity_reference_revisions", - "version": "1.11.0", + "version": "1.8.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/entity_reference_revisions.git", - "reference": "8.x-1.11" + "reference": "8.x-1.8" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.11.zip", - "reference": "8.x-1.11", - "shasum": "de21cbb0d8a0344dc3496addcad4ed536747cec5" + "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.8.zip", + "reference": "8.x-1.8", + "shasum": "c1279e6c683edc2dbccedba8de1505340c8a62b6" }, "require": { - "drupal/core": "^9 || ^10" + "drupal/core": "^8.7.7 || ^9" }, "require-dev": { "drupal/diff": "1.x-dev" @@ -8885,22 +6160,20 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.11", - "datestamp": "1705140721", + "version": "8.x-1.8", + "datestamp": "1583961846", "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", "license": [ - "GPL-2.0-or-later" + "GPL-2.0" ], "authors": [ { @@ -8926,137 +6199,28 @@ "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.17", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/environment_indicator.git", - "reference": "4.0.17" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/environment_indicator-4.0.17.zip", - "reference": "4.0.17", - "shasum": "d6bf00046516aaa027e5e91aaac0800e280b5160" - }, - "require": { - "drupal/core": "^9.2 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "4.0.17", - "datestamp": "1696608287", - "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": "Mateu Aguiló Bosch", - "homepage": "https://www.drupal.org/user/550110", - "email": "mateu@mateuaguilo.com" - }, - { - "name": "Ignacio Sánchez", - "homepage": "https://www.drupal.org/user/733162", - "email": "nacho@isholgueras.com" - }, - { - "name": "mrfelton", - "homepage": "https://www.drupal.org/user/305669" - } - ], - "description": "Environment Indicator adds some visual cuest to indicate which copy of the site are you interacting with", - "homepage": "https://www.drupal.org/project/environment_indicator", - "support": { - "source": "https://git.drupalcode.org/project/environment_indicator" - } - }, { "name": "drupal/eu_cookie_compliance", - "version": "1.24.0", + "version": "1.9.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/eu-cookie-compliance.git", - "reference": "8.x-1.24" + "reference": "8.x-1.9" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/eu_cookie_compliance-8.x-1.24.zip", - "reference": "8.x-1.24", - "shasum": "ab8dcd866e5ad95cde6fdf9cbca509c7f399bd23" + "url": "https://ftp.drupal.org/files/projects/eu_cookie_compliance-8.x-1.9.zip", + "reference": "8.x-1.9", + "shasum": "1dd57c3fe517d907c0a44bee4ef73f30e98993d3" }, "require": { - "drupal/core": "^8.9 || ^9 || ^10" + "drupal/core": "^8.8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.24", - "datestamp": "1665158185", + "version": "8.x-1.9", + "datestamp": "1588751057", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9065,7 +6229,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { @@ -9078,15 +6242,46 @@ "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": "achton", + "homepage": "https://www.drupal.org/user/712454" + }, + { + "name": "blairski", + "homepage": "https://www.drupal.org/user/120835" + }, + { + "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": "nielsaers", + "homepage": "https://www.drupal.org/user/752444" + }, { "name": "svenryen", "homepage": "https://www.drupal.org/user/667244" @@ -9101,98 +6296,35 @@ "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.0.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/eva.git", - "reference": "3.0.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/eva-3.0.0.zip", - "reference": "3.0.0", - "shasum": "51b56ed55ab6edb7376afc34c88825b6373d4a80" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10" - }, - "suggest": { - "drupal/token": "Enable the argument token browser" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "3.0.0", - "datestamp": "1667476964", - "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.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/exclude_node_title.git", - "reference": "8.x-1.4" + "reference": "8.x-1.1" }, "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.1.zip", + "reference": "8.x-1.1", + "shasum": "4a0a747821944fd398bb2ca5cb1718fe16ff9511" }, "require": { - "drupal/core": "^8 || ^9 || ^10" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.4", - "datestamp": "1659271679", + "version": "8.x-1.1", + "datestamp": "1595347356", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9210,12 +6342,12 @@ "role": "Maintainer" }, { - "name": "gabrielu", - "homepage": "https://www.drupal.org/user/279352" + "name": "fizk", + "homepage": "https://www.drupal.org/user/473174" }, { - "name": "Neslee Canil Pinto", - "homepage": "https://www.drupal.org/user/3580850" + "name": "gabrielu", + "homepage": "https://www.drupal.org/user/279352" } ], "description": "Provides the option of excluding node title(s) from display by individual node, node bundle, and view mode.", @@ -9225,97 +6357,40 @@ "issues": "https://www.drupal.org/project/issues/exclude_node_title" } }, - { - "name": "drupal/exif_orientation", - "version": "1.4.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/exif_orientation.git", - "reference": "8.x-1.4" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/exif_orientation-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "692d04b1ce662a204b335135a1dadaca9b6efc7b" - }, - "require": { - "drupal/core": "^9.2 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.4", - "datestamp": "1694623445", - "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/facets", - "version": "2.0.6", + "version": "1.5.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/facets.git", - "reference": "2.0.6" + "reference": "8.x-1.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/facets-2.0.6.zip", - "reference": "2.0.6", - "shasum": "e984e6ce69026c20d2049d4ec53748e67c5e70de" + "url": "https://ftp.drupal.org/files/projects/facets-8.x-1.5.zip", + "reference": "8.x-1.5", + "shasum": "35b6cd9f0b8bda41581452a2da45a3f2da9d016b" }, "require": { - "drupal/core": "^9.3 || ^10.0" - }, - "conflict": { - "drupal/search_api": "<1.14" + "drupal/core": "^8.8 || ^9" }, "require-dev": { - "drupal/jquery_ui_slider": "~2.0", - "drupal/jquery_ui_touch_punch": "~1.1", - "drupal/search_api": "^1.28||1.x-dev" - }, - "suggest": { - "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": { "drupal": { - "version": "2.0.6", - "datestamp": "1671207897", + "version": "8.x-1.5", + "datestamp": "1595015391", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } - } + }, + "branch-alias": { + "dev-8.x-1.x": "1.x-dev" + }, + "patches_applied": [] }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ @@ -9326,21 +6401,13 @@ "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" + }, + { + "name": "borisson_", + "homepage": "https://www.drupal.org/user/2393360" } ], "description": "The Facet module allows site builders to easily create and manage faceted search interfaces.", @@ -9351,83 +6418,29 @@ "irc": "irc://irc.freenode.org/drupal-search-api" } }, - { - "name": "drupal/fakeobjects", - "version": "1.2.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/fakeobjects.git", - "reference": "8.x-1.2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/fakeobjects-8.x-1.2.zip", - "reference": "8.x-1.2", - "shasum": "a49094752f972e7db51ef5ec7abade1a4eba48f5" - }, - "require": { - "drupal/ckeditor": "*", - "drupal/core": "^8 || ^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.2", - "datestamp": "1674760765", - "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": "Kevin Quillen (kevinquillen)", - "homepage": "https://www.drupal.org/u/kevinquillen", - "role": "Maintainer" - }, - { - "name": "kevinquillen", - "homepage": "https://www.drupal.org/user/317279" - } - ], - "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" - ], - "support": { - "source": "http://cgit.drupalcode.org/fakeobjects", - "issues": "http://drupal.org/project/issues/fakeobjects" - } - }, { "name": "drupal/faqfield", - "version": "7.1.0", + "version": "7.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/faqfield.git", - "reference": "8.x-7.1" + "reference": "8.x-7.0" }, "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-7.0.zip", + "reference": "8.x-7.0", + "shasum": "8788719564a23c1b8472568b9c9b15593d61e1c8" }, "require": { - "drupal/core": "^8 || ^9 || ^10", - "drupal/jquery_ui_accordion": "^2.0" + "drupal/core": "^8 || ^9", + "drupal/jquery_ui_accordion": "^1.1" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-7.1", - "datestamp": "1678202291", + "version": "8.x-7.0", + "datestamp": "1591226895", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9448,10 +6461,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.", @@ -9466,27 +6475,27 @@ }, { "name": "drupal/features", - "version": "3.14.0", + "version": "3.11.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/features.git", - "reference": "8.x-3.14" + "reference": "8.x-3.11" }, "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.11.zip", + "reference": "8.x-3.11", + "shasum": "cfdb1de2fb791856069c50b63eb28cb8d7c93442" }, "require": { - "drupal/config_update": "^1.4 || ^2", - "drupal/core": "^9.4 || ^10" + "drupal/config_update": "^1.4", + "drupal/core": "^8.8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.14", - "datestamp": "1702059191", + "version": "8.x-3.11", + "datestamp": "1591023154", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9494,7 +6503,7 @@ }, "drush": { "services": { - "drush.services.yml": "^10 || ^11" + "drush.services.yml": "^9" } } }, @@ -9503,10 +6512,6 @@ "GPL-2.0-or-later" ], "authors": [ - { - "name": "Dave Reid", - "homepage": "https://www.drupal.org/user/53892" - }, { "name": "dawehner", "homepage": "https://www.drupal.org/user/99340" @@ -9535,13 +6540,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", @@ -9550,370 +6559,31 @@ "source": "https://git.drupalcode.org/project/features" } }, - { - "name": "drupal/feeds", - "version": "3.0.0-beta4", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/feeds.git", - "reference": "8.x-3.0-beta4" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/feeds-8.x-3.0-beta4.zip", - "reference": "8.x-3.0-beta4", - "shasum": "d715c428819b71d7018d022862c8d1c453bcf4d7" - }, - "require": { - "drupal/core": "^9.3 || ^10", - "laminas/laminas-feed": "^2.13" - }, - "require-dev": { - "drupal/pathauto": "^1.8", - "drush/drush": "^9 || ^10 || ^11" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-3.0-beta4", - "datestamp": "1685558328", - "security-coverage": { - "status": "not-covered", - "message": "Project has not opted into security advisory coverage!" - } - }, - "drush": { - "services": { - "drush.services.yml": "^9 || ^10 || ^11" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "alex_b", - "homepage": "https://www.drupal.org/user/53995" - }, - { - "name": "Dave Reid", - "homepage": "https://www.drupal.org/user/53892" - }, - { - "name": "e2thex", - "homepage": "https://www.drupal.org/user/189123" - }, - { - "name": "febbraro", - "homepage": "https://www.drupal.org/user/43670" - }, - { - "name": "franz", - "homepage": "https://www.drupal.org/user/581844" - }, - { - "name": "Ian Ward", - "homepage": "https://www.drupal.org/user/4736" - }, - { - "name": "jmiccolis", - "homepage": "https://www.drupal.org/user/31731" - }, - { - "name": "joelpittet", - "homepage": "https://www.drupal.org/user/160302" - }, - { - "name": "kking", - "homepage": "https://www.drupal.org/user/24399" - }, - { - "name": "MegaChriz", - "homepage": "https://www.drupal.org/user/654114" - }, - { - "name": "tobby", - "homepage": "https://www.drupal.org/user/154797" - }, - { - "name": "twistor", - "homepage": "https://www.drupal.org/user/473738" - }, - { - "name": "Will White", - "homepage": "https://www.drupal.org/user/32237" - }, - { - "name": "yhahn", - "homepage": "https://www.drupal.org/user/264833" - } - ], - "description": "Aggregates RSS/Atom/RDF feeds, imports CSV files and more.", - "homepage": "https://www.drupal.org/project/feeds", - "keywords": [ - "Drupal" - ], - "support": { - "source": "https://git.drupalcode.org/project/feeds", - "issues": "https://www.drupal.org/project/issues/feeds" - } - }, - { - "name": "drupal/feeds_ex", - "version": "1.0.0-beta3", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/feeds_ex.git", - "reference": "8.x-1.0-beta3" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/feeds_ex-8.x-1.0-beta3.zip", - "reference": "8.x-1.0-beta3", - "shasum": "ba0e70154a2ac29edd03495271dc403d33411d38" - }, - "require": { - "arthurkushman/query-path": "^3.0", - "drupal/core": "^9 || ^10", - "drupal/feeds": "*", - "mtdowling/jmespath.php": "^2.0", - "softcreatr/jsonpath": "^0.5 || ^0.7 || ^0.8" - }, - "require-dev": { - "drupal/feeds": "3.x-dev" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.0-beta3", - "datestamp": "1667586771", - "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": "joelpittet", - "homepage": "https://www.drupal.org/user/160302" - }, - { - "name": "MegaChriz", - "homepage": "https://www.drupal.org/user/654114" - }, - { - "name": "twistor", - "homepage": "https://www.drupal.org/user/473738" - } - ], - "description": "A generic Feeds parser used to create extensible parsers.", - "homepage": "http://drupal.org/project/feeds_ex", - "keywords": [ - "feeds", - "parser" - ], - "support": { - "source": "http://cgit.drupalcode.org/feeds_ex", - "issues": "http://drupal.org/project/issues/feeds_ex" - } - }, - { - "name": "drupal/feeds_ical", - "version": "2.1.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/feeds_ical.git", - "reference": "2.1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/feeds_ical-2.1.0.zip", - "reference": "2.1.0", - "shasum": "bdcffdd40d60e13b376cc2b7687a4ad00ff682d1" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10", - "drupal/feeds": "^3.0", - "johngrogg/ics-parser": "^3" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.1.0", - "datestamp": "1692193477", - "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": "ben.hamelin", - "homepage": "https://www.drupal.org/user/709120" - }, - { - "name": "damondt", - "homepage": "https://www.drupal.org/user/3009137" - } - ], - "description": "Feeds Ical Functionality.", - "homepage": "https://www.drupal.org/project/feeds_ical", - "support": { - "source": "https://git.drupalcode.org/project/feeds_ical" - } - }, - { - "name": "drupal/field_defaults", - "version": "2.0.0-alpha2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/field_defaults.git", - "reference": "2.0.0-alpha2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/field_defaults-2.0.0-alpha2.zip", - "reference": "2.0.0-alpha2", - "shasum": "829fa861038991643f32ec4b04da67d659bb38c0" - }, - "require": { - "drupal/core": "^9.3 || ^10.0" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.0-alpha2", - "datestamp": "1679612171", - "security-coverage": { - "status": "not-covered", - "message": "Alpha releases are not covered by Drupal security advisories." - } - }, - "drush": { - "services": { - "drush.services.yml": "^9 || ^10 || ^11" - } - } - }, - "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.6.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/field_formatter_class.git", - "reference": "8.x-1.6" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/field_formatter_class-8.x-1.6.zip", - "reference": "8.x-1.6", - "shasum": "11682ba40db28aeac4319428db01590fbf2f4c6c" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.6", - "datestamp": "1667840724", - "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.4.0", + "version": "3.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/field_group.git", - "reference": "8.x-3.4" + "reference": "8.x-3.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.4.zip", - "reference": "8.x-3.4", - "shasum": "80b937e1a11f8b29c69d853fc4bf798c057c6f94" + "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.1.zip", + "reference": "8.x-3.1", + "shasum": "8a719eaea594f0ba874172831cb28da93c66b77a" }, "require": { - "drupal/core": "^9.2 || ^10" + "drupal/core": "^8.8 || ^9" + }, + "require-dev": { + "drupal/jquery_ui_accordion": "^1.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-3.4", - "datestamp": "1667241979", + "version": "8.x-3.1", + "datestamp": "1591772567", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -9925,14 +6595,14 @@ "GPL-2.0-or-later" ], "authors": [ - { - "name": "Anybody", - "homepage": "https://www.drupal.org/user/291091" - }, { "name": "Hydra", "homepage": "https://www.drupal.org/user/647364" }, + { + "name": "Stalski", + "homepage": "https://www.drupal.org/user/322618" + }, { "name": "jyve", "homepage": "https://www.drupal.org/user/591438" @@ -9941,10 +6611,6 @@ "name": "nils.destoop", "homepage": "https://www.drupal.org/user/361625" }, - { - "name": "Stalski", - "homepage": "https://www.drupal.org/user/322618" - }, { "name": "swentel", "homepage": "https://www.drupal.org/user/107403" @@ -9957,361 +6623,23 @@ "issues": "https://www.drupal.org/project/issues/field_group" } }, - { - "name": "drupal/field_token_value", - "version": "3.0.2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/field_token_value.git", - "reference": "3.0.2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/field_token_value-3.0.2.zip", - "reference": "3.0.2", - "shasum": "91ad476dd57a95086fa51fbc8fa0eb6a1b99f1ad" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10", - "drupal/token": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "3.0.2", - "datestamp": "1696584829", - "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": "haydent", - "homepage": "https://www.drupal.org/user/2763191" - } - ], - "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" - } - }, - { - "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": "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.0.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/fitvids.git", - "reference": "2.0.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/fitvids-2.0.0.zip", - "reference": "2.0.0", - "shasum": "0fb02d633ca144abee0bfca7b52457c89aba0414" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.0", - "datestamp": "1669606300", - "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": "jQuery plugin for fluid width video embeds.", - "homepage": "https://www.drupal.org/project/fitvids", - "support": { - "source": "https://git.drupalcode.org/project/fitvids" - } - }, - { - "name": "drupal/fixed_block_content", - "version": "1.3.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/fixed_block_content.git", - "reference": "8.x-1.3" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/fixed_block_content-8.x-1.3.zip", - "reference": "8.x-1.3", - "shasum": "30488b4a57f02b27e63e9249be3e1f9f67a19f64" - }, - "require": { - "drupal/core": "^9 || ^10", - "drupal/hal": "^1.0 || ^2.0" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.3", - "datestamp": "1702646682", - "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": "Manuel Adan", - "homepage": "https://www.drupal.org/user/516420", - "role": "Maintainer" - } - ], - "description": "Provides fixed placements for custom blocks.", - "homepage": "http://drupal.org/project/fixed_block_content", - "keywords": [ - "Drupal" - ], - "support": { - "source": "https://cgit.drupalcode.org/fixed_block_content", - "issues": "https://drupal.org/project/issues/fixed_block_content" - } - }, - { - "name": "drupal/flag", - "version": "4.0.0-beta4", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/flag.git", - "reference": "8.x-4.0-beta4" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/flag-8.x-4.0-beta4.zip", - "reference": "8.x-4.0-beta4", - "shasum": "2779804f23685e1bb68a2a7b9517932dde3b1d4e" - }, - "require": { - "drupal/core": "^9.1 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-4.0-beta4", - "datestamp": "1670487892", - "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": "Berdir", - "homepage": "https://www.drupal.org/user/214652" - }, - { - "name": "fago", - "homepage": "https://www.drupal.org/user/16747" - }, - { - "name": "fubhy", - "homepage": "https://www.drupal.org/user/761344" - }, - { - "name": "joachim", - "homepage": "https://www.drupal.org/user/107701" - }, - { - "name": "merlinofchaos", - "homepage": "https://www.drupal.org/user/26979" - }, - { - "name": "mooffie", - "homepage": "https://www.drupal.org/user/78454" - }, - { - "name": "quicksketch", - "homepage": "https://www.drupal.org/user/35821" - }, - { - "name": "shabana.navas", - "homepage": "https://www.drupal.org/user/1311398" - }, - { - "name": "socketwench", - "homepage": "https://www.drupal.org/user/65793" - } - ], - "description": "Create customized flags that users can set on entities.", - "homepage": "https://www.drupal.org/project/flag", - "support": { - "source": "https://git.drupalcode.org/project/flag" - } - }, - { - "name": "drupal/flexible_permissions", - "version": "1.1.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/flexible_permissions.git", - "reference": "1.1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/flexible_permissions-1.1.0.zip", - "reference": "1.1.0", - "shasum": "cfda615388131e96a5cf3fce1f24b1c220f91fce" - }, - "require": { - "drupal/core": "^9.5 || ^10", - "drupal/variationcache": "^1.0" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "1.1.0", - "datestamp": "1697027409", - "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.0.2", + "version": "1.5.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/focal_point.git", - "reference": "2.0.2" + "reference": "8.x-1.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/focal_point-2.0.2.zip", - "reference": "2.0.2", - "shasum": "8e809795ec6a68a0bc3740b0b0a41bfa53d4d6d5" + "url": "https://ftp.drupal.org/files/projects/focal_point-8.x-1.5.zip", + "reference": "8.x-1.5", + "shasum": "41198e9220788c3b7d3146b10e5dfd6c73cd4784" }, "require": { - "drupal/core": "^9.3 || ^10", - "drupal/crop": "^2.3", - "drupal/jquery_ui": "^1.6", - "drupal/jquery_ui_draggable": "^2.0" + "drupal/core": "^8.8 || ^9", + "drupal/crop": "^1.0 || ^2.0" }, "require-dev": { "drupal/crop": "*" @@ -10319,8 +6647,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.2", - "datestamp": "1690451892", + "version": "8.x-1.5", + "datestamp": "1598663903", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -10336,10 +6664,6 @@ "name": "Alexander Ross (bleen)", "homepage": "https://www.drupal.org/u/bleen", "role": "Maintainer" - }, - { - "name": "Rajeshreeputra", - "homepage": "https://www.drupal.org/user/3418561" } ], "description": "Focal Point allows content creators to mark the most important part of an image for easier cropping.", @@ -10350,157 +6674,21 @@ "irc": "irc://irc.freenode.org/drupal-contribute" } }, - { - "name": "drupal/footnotes", - "version": "3.1.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/footnotes.git", - "reference": "3.1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/footnotes-3.1.0.zip", - "reference": "3.1.0", - "shasum": "6cc51af0d8cd50628b5a7e9cc75255a657e2aa62" - }, - "require": { - "drupal/core": ">=8.6", - "drupal/fakeobjects": "^1.0" - }, - "require-dev": { - "drupal/fakeobjects": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "3.1.0", - "datestamp": "1691752661", - "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": "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", - "homepage": "https://www.drupal.org/user/3267594" - }, - { - "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" - } - }, - { - "name": "drupal/fullcalendar_view", - "version": "5.1.13", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/fullcalendar_view.git", - "reference": "5.1.13" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/fullcalendar_view-5.1.13.zip", - "reference": "5.1.13", - "shasum": "35b8286574a2be20265f33c132579f7e4861b8ed" - }, - "require": { - "drupal/core": "^9.2.0 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "5.1.13", - "datestamp": "1698886922", - "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": "KarinG", - "homepage": "https://www.drupal.org/user/787114" - }, - { - "name": "Mingsong", - "homepage": "https://www.drupal.org/user/2986445" - } - ], - "description": "This is a lightweight View plugin module that provides a calendar view format powered by FullCalendar JavaScript.", - "homepage": "http://drupal.org/project/fullcalendar_view", - "keywords": [ - "Drupal", - "fullcalendar_view" - ], - "support": { - "source": "http://cgit.drupalcode.org/fullcalendar_view", - "issues": "http://drupal.org/project/issues/fullcalendar_view" - } - }, { "name": "drupal/gdpr", - "version": "3.0.0", + "version": "dev-2.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/gdpr.git", - "reference": "3.0.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/gdpr-3.0.0.zip", - "reference": "3.0.0", - "shasum": "1fd27a189761d8b70bfe73580f2dfd3ddde607b7" + "reference": "8777999faf3f6483d79fa9a5a40b789bb6590d49" }, "require": { - "drupal/checklistapi": "^2.1", - "drupal/core": "^9 || ^10", - "drupal/entity": "^1.4", - "drupal/entity_reference_revisions": "^1.10", - "drupal/message": "^1.4", - "drupal/token": "^1.11" + "drupal/checklistapi": "^1.0", + "drupal/core": "^8 || ^9", + "drupal/entity": "^1.0", + "drupal/entity_reference_revisions": "^1.8", + "drupal/message": "^1.0", + "drupal/token": "^1.7" }, "require-dev": { "drupal/anonymizer": "*", @@ -10517,12 +6705,15 @@ }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-2.x": "2.x-dev" + }, "drupal": { - "version": "3.0.0", - "datestamp": "1681377086", + "version": "8.x-2.0-alpha7+25-dev", + "datestamp": "1594397571", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Project has not opted into security advisory coverage!" } } }, @@ -10533,21 +6724,17 @@ "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": "back-2-95", "homepage": "https://www.drupal.org/user/327328" }, - { - "name": "Balu Ertl", - "homepage": "https://www.drupal.org/user/1086292" - }, { "name": "bfr", "homepage": "https://www.drupal.org/user/369262" @@ -10560,10 +6747,6 @@ "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" @@ -10580,10 +6763,6 @@ "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" @@ -10597,330 +6776,21 @@ "homepage": "https://www.drupal.org/project/gdpr", "support": { "source": "https://git.drupalcode.org/project/gdpr" - } - }, - { - "name": "drupal/geolocation", - "version": "3.12.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/geolocation.git", - "reference": "8.x-3.12" }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/geolocation-8.x-3.12.zip", - "reference": "8.x-3.12", - "shasum": "eb31fe9080e2e0dcf442fc9b0a859f326219db5a" - }, - "require": { - "drupal/core": "^9.3 || ^10", - "drupal/jquery_ui": "*", - "drupal/jquery_ui_autocomplete": "^2.0", - "php": "^7.3 || ^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.12", - "datestamp": "1673282362", - "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": "3.0.0-rc9", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/gin.git", - "reference": "8.x-3.0-rc9" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/gin-8.x-3.0-rc9.zip", - "reference": "8.x-3.0-rc9", - "shasum": "130dec0ea8152bc796d8bbca1bc97b2ae0c381f4" - }, - "require": { - "drupal/core": "^9 || ^10", - "drupal/gin_toolbar": "^1.0@beta" - }, - "type": "drupal-theme", - "extra": { - "drupal": { - "version": "8.x-3.0-rc9", - "datestamp": "1706705034", - "security-coverage": { - "status": "not-covered", - "message": "RC releases are not covered by Drupal security advisories." - } - } - }, - "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" - } - ], - "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.6", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/gin_gutenberg.git", - "reference": "1.1.6" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/gin_gutenberg-1.1.6.zip", - "reference": "1.1.6", - "shasum": "d885358010fc16bbbd8973267d3f61fa95a0256e" - }, - "require": { - "drupal/core": "^8 || ^9.3 || ^10", - "drupal/gutenberg": "^2.0 || ^3.0" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "1.1.6", - "datestamp": "1703844596", - "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.0.3", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/gin_login.git", - "reference": "2.0.3" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/gin_login-2.0.3.zip", - "reference": "2.0.3", - "shasum": "f5be85feabfde975d088a3a6b4365e0b155eb4b8" - }, - "require": { - "drupal/core": "^8.9 || ^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.3", - "datestamp": "1697916978", - "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": "1.0.0-rc5", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/gin_toolbar.git", - "reference": "8.x-1.0-rc5" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/gin_toolbar-8.x-1.0-rc5.zip", - "reference": "8.x-1.0-rc5", - "shasum": "523b565244440a16fa447065a98841770992bd2e" - }, - "require": { - "drupal/core": "^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.0-rc5", - "datestamp": "1702727588", - "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": "Sascha Eggenberger (saschaeggi)", - "homepage": "https://www.drupal.org/u/saschaeggi", - "role": "Maintainer" - } - ], - "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" - } - ] + "time": "2020-07-10T16:40:13+00:00" }, { "name": "drupal/gnode", - "version": "3.2.2", + "version": "1.2.0", "require": { - "drupal/core": "^9.5 || ^10", - "drupal/group": "*" + "drupal/core": "^8.8 || ^9", + "drupal/group": "self.version" }, "type": "metapackage", "extra": { "drupal": { - "version": "3.2.2", - "datestamp": "1701886939", + "version": "8.x-1.2", + "datestamp": "1596658355", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -10932,10 +6802,6 @@ "GPL-2.0-or-later" ], "authors": [ - { - "name": "dww", - "homepage": "https://www.drupal.org/user/46549" - }, { "name": "kristiaanvandeneynde", "homepage": "https://www.drupal.org/user/1345130" @@ -10949,21 +6815,39 @@ }, { "name": "drupal/google_analytics", - "version": "dev-3357831-php-8.2-compatibility", + "version": "2.5.0", "source": { "type": "git", - "url": "git@git.drupal.org:issue/google_analytics-3357831.git", - "reference": "6e1250f00dd9942a91cdff4e2d44f1779019e191" + "url": "https://git.drupalcode.org/project/google_analytics.git", + "reference": "8.x-2.5" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/google_analytics-8.x-2.5.zip", + "reference": "8.x-2.5", + "shasum": "9e0ff72cc313bf9295fe8bd73a68f5f7688513ab" + }, + "require": { + "drupal/core": "^8.8.6|^9.0" }, "require-dev": { "drupal/token": "^1.7" }, "type": "drupal-module", "extra": { + "drupal": { + "version": "8.x-2.5", + "datestamp": "1591298527", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + }, "branch-alias": { - "dev-4.x": "4.x-dev" + "dev-8.x-2.x": "2.x-dev" } }, + "notification-url": "https://packages.drupal.org/8/downloads", "license": [ "GPL-2.0-or-later" ], @@ -10971,40 +6855,59 @@ { "name": "See contributors", "homepage": "https://www.drupal.org/node/49388/committers" + }, + { + "name": "budda", + "homepage": "https://www.drupal.org/user/13164" + }, + { + "name": "ixismark", + "homepage": "https://www.drupal.org/user/3632333" + }, + { + "name": "japerry", + "homepage": "https://www.drupal.org/user/45640" + }, + { + "name": "pfaocle", + "homepage": "https://www.drupal.org/user/9740" + }, + { + "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": { - "issues": "https://www.drupal.org/project/issues/google_analytics", - "source": "https://git.drupalcode.org/project/google_analytics" - }, - "time": "2023-05-03T10:39:55+00:00" + "source": "https://git.drupal.org/project/google_analytics.git", + "issues": "https://www.drupal.org/project/issues/google_analytics" + } }, { "name": "drupal/group", - "version": "3.2.2", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/group.git", - "reference": "3.2.2" + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/group-3.2.2.zip", - "reference": "3.2.2", - "shasum": "d44d51828ca6554c32aa2d27e3a898e1d38b9efa" + "url": "https://ftp.drupal.org/files/projects/group-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "f9b9607fea3b169152165ce64d3bc871ddd40b73" }, "require": { - "drupal/core": "^9.5 || ^10", - "drupal/entity": "^1.2", - "drupal/flexible_permissions": "^1.0" + "drupal/core": "^8.8 || ^9", + "drupal/entity": "^1.0", + "drupal/variationcache": "^1.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "3.2.2", - "datestamp": "1701886939", + "version": "8.x-1.2", + "datestamp": "1596658355", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -11020,10 +6923,6 @@ "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", @@ -11033,167 +6932,28 @@ "issues": "https://drupal.org/project/issues/group" } }, - { - "name": "drupal/gutenberg", - "version": "2.8.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/gutenberg.git", - "reference": "8.x-2.8" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/gutenberg-8.x-2.8.zip", - "reference": "8.x-2.8", - "shasum": "4fdcf7bc65e67063e5f266b733a93e8176ad7a79" - }, - "require": { - "drupal/core": "^9 || ^10", - "ext-json": "*", - "php": ">=7.4" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-2.8", - "datestamp": "1697496069", - "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": "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.2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/hal.git", - "reference": "2.0.2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/hal-2.0.2.zip", - "reference": "2.0.2", - "shasum": "9ec3ad376678941bae2e0eae0c980c42cddfc8b2" - }, - "require": { - "drupal/core": "^10" - }, - "require-dev": { - "drupal/aggregator": "2.x-dev", - "drupal/entity_reference_revisions": "1.x-dev", - "drupal/rdf": "2.x-dev" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.2", - "datestamp": "1700523711", - "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.1.3", + "version": "2.0.1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/honeypot.git", - "reference": "2.1.3" + "reference": "2.0.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/honeypot-2.1.3.zip", - "reference": "2.1.3", - "shasum": "101105029a10a574ef6017824182500ab9905856" + "url": "https://ftp.drupal.org/files/projects/honeypot-2.0.1.zip", + "reference": "2.0.1", + "shasum": "c29d248c0fdcdf733a31b9214355acfa73716632" }, "require": { - "drupal/core": "^9.2 || ^10" - }, - "require-dev": { - "drupal/rules": "^3.0" + "drupal/core": "^8.0 || ^9.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.1.3", - "datestamp": "1695604754", + "version": "2.0.1", + "datestamp": "1597855128", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -11207,16 +6967,12 @@ "authors": [ { "name": "Jeff Geerling", - "homepage": "https://www.drupal.org/user/389011", + "homepage": "https://www.drupal.org/user/213194", "email": "geerlingguy@mac.com" }, { - "name": "Manuel Garcia", - "homepage": "https://www.drupal.org/user/213194" - }, - { - "name": "TR", - "homepage": "https://www.drupal.org/user/202830" + "name": "geerlingguy", + "homepage": "https://www.drupal.org/user/389011" }, { "name": "vijaycs85", @@ -11239,27 +6995,78 @@ } }, { - "name": "drupal/http_cache_control", - "version": "2.1.0", + "name": "drupal/hotjar", + "version": "1.5.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/http_cache_control.git", - "reference": "8.x-2.1" + "url": "https://git.drupalcode.org/project/hotjar.git", + "reference": "8.x-1.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/http_cache_control-8.x-2.1.zip", - "reference": "8.x-2.1", - "shasum": "6a6864ab39fc2110cc8705e51f5106aa90362df5" + "url": "https://ftp.drupal.org/files/projects/hotjar-8.x-1.5.zip", + "reference": "8.x-1.5", + "shasum": "ae4af1d169ccb5d99af04d01dff450805297ce08" }, "require": { - "drupal/core": "^9 || ^10" + "drupal/core": "~8.0" + }, + "type": "drupal-module", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.5", + "datestamp": "1551102784", + "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": "csakiistvan", + "homepage": "https://www.drupal.org/user/491514" + }, + { + "name": "tikaszvince", + "homepage": "https://www.drupal.org/user/337178" + } + ], + "description": "Allows your site to be tracked by Hotjar by adding a Javascript tracking code to every page.", + "homepage": "https://www.drupal.org/project/hotjar", + "support": { + "source": "http://cgit.drupalcode.org/hotjar" + } + }, + { + "name": "drupal/http_cache_control", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/http_cache_control.git", + "reference": "8.x-1.0" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/http_cache_control-8.x-1.0.zip", + "reference": "8.x-1.0", + "shasum": "91e160fd1f944f9058d8bf27b092e29b169b88e0" + }, + "require": { + "drupal/core": "~8.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.1", - "datestamp": "1666053697", + "version": "8.x-1.0", + "datestamp": "1536274980", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -11276,7 +7083,7 @@ "homepage": "https://www.drupal.org/user/188162" } ], - "description": "Module for controlling HTTP Cache Control response headers.", + "description": "Module for implementing s-max-age", "homepage": "https://www.drupal.org/project/http_cache_control", "support": { "source": "https://git.drupalcode.org/project/http_cache_control" @@ -11284,26 +7091,26 @@ }, { "name": "drupal/http_client_error_status", - "version": "3.0.0", + "version": "2.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/http_client_error_status.git", - "reference": "3.0.0" + "reference": "8.x-2.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/http_client_error_status-3.0.0.zip", - "reference": "3.0.0", - "shasum": "317b20d9520cb6210851ae6b9fec36dce73c631f" + "url": "https://ftp.drupal.org/files/projects/http_client_error_status-8.x-2.2.zip", + "reference": "8.x-2.2", + "shasum": "d51475a027b3e2389d9d23d87bf2d73be263ac96" }, "require": { - "drupal/core": "^8.7.7 || ^9 || ^10" + "drupal/core": "^8.7.7 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "3.0.0", - "datestamp": "1655679055", + "version": "8.x-2.2", + "datestamp": "1590401502", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -11329,218 +7136,39 @@ "irc": "irc://irc.freenode.org/drupal-contribute" } }, - { - "name": "drupal/ief_complex_open", - "version": "1.0.1", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/ief_complex_open.git", - "reference": "1.0.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/ief_complex_open-1.0.1.zip", - "reference": "1.0.1", - "shasum": "abac70022e17d7a2b007ac1587826822433b0346" - }, - "require": { - "drupal/core": "^8.8 || ^9 || ^10", - "drupal/inline_entity_form": "^1" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "1.0.1", - "datestamp": "1687803317", - "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": "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": "2.0.2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/image_field_to_media.git", - "reference": "2.0.2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/image_field_to_media-2.0.2.zip", - "reference": "2.0.2", - "shasum": "7026c58a18c8bf9f02e631a5365c2b898916f478" - }, - "require": { - "drupal/core": "^9.3 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.2", - "datestamp": "1696623512", - "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" - } - ], - "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 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.21.0", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/indieweb.git", - "reference": "8.x-1.21" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/indieweb-8.x-1.21.zip", - "reference": "8.x-1.21", - "shasum": "7629d70d84614cc372525906d3705dff83258cb7" + "reference": "a07a1d3396d8e6aebcbea9974f5fb4297a73b80d" }, "require": { - "drupal/core": "^9 || ^10", - "indieauth/client": "^1.1", + "drupal/core": "^8.7|^9.0", + "indieauth/client": "^0.4.1", "indieweb/mention-client": "^1.2", - "lcobucci/jwt": "4.0.*", - "p3k/micropub": "^0.0.3", + "lcobucci/jwt": "^3.0", + "p3k/micropub": "^0.0.2", "p3k/websub": "^0.0.1", - "p3k/xray": "^1.12" + "p3k/xray": "^1.7" }, "require-dev": { - "drupal/classy": "*", "drupal/externalauth": "*", "drupal/indieweb_indieauth": "*", - "drupal/stable": "*" + "drupal/rabbit_hole": "*" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.21", - "datestamp": "1707057267", + "version": "8.x-1.10+13-dev", + "datestamp": "1591896740", "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": { @@ -11551,7 +7179,7 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { @@ -11565,243 +7193,31 @@ "homepage": "http://drupal.org/project/indieweb", "support": { "source": "https://git.drupalcode.org/project/indieweb" - } - }, - { - "name": "drupal/inline_entity_form", - "version": "1.0.0-rc17", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/inline_entity_form.git", - "reference": "8.x-1.0-rc17" }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc17.zip", - "reference": "8.x-1.0-rc17", - "shasum": "626622e01cf7a2d2977fdc06ae09afd5a814e09b" - }, - "require": { - "drupal/core": "^8.8 || ^9 || ^10", - "php": ">=7.1" - }, - "require-dev": { - "drupal/entity_reference_revisions": "^1.0" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.0-rc17", - "datestamp": "1703020130", - "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-or-later" - ], - "authors": [ - { - "name": "bojanz", - "homepage": "https://www.drupal.org/user/86106" - }, - { - "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" - } - ], - "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.", - "homepage": "https://www.drupal.org/project/inline_entity_form", - "support": { - "source": "https://git.drupalcode.org/project/inline_entity_form" - } - }, - { - "name": "drupal/inotherwords", - "version": "3.0.1", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/inotherwords.git", - "reference": "3.0.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/inotherwords-3.0.1.zip", - "reference": "3.0.1", - "shasum": "bb9abce972fffc662affe34d691fa6d1c6da6709" - }, - "require": { - "agaric/oxford-comma": "^1.2", - "drupal/core": "^8 || ^9 || ^10", - "kwn/number-to-words": "^1.8" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "3.0.1", - "datestamp": "1686885306", - "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": "cedewey", - "homepage": "https://www.drupal.org/user/38694" - }, - { - "name": "gnuget", - "homepage": "https://www.drupal.org/user/992990" - }, - { - "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" - } - ], - "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.0-beta3", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/insert.git", - "reference": "3.0.0-beta3" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/insert-3.0.0-beta3.zip", - "reference": "3.0.0-beta3", - "shasum": "07b54a3d7cf518c105853a8aa2657d95e2a063e2" - }, - "require": { - "drupal/core": "^10" - }, - "require-dev": { - "drupal/colorbox": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "3.0.0-beta3", - "datestamp": "1704123693", - "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": "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" - } + "time": "2020-06-13T11:55:06+00:00" }, { "name": "drupal/jquery_ui", - "version": "1.6.0", + "version": "1.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/jquery_ui.git", - "reference": "8.x-1.6" + "reference": "8.x-1.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.6.zip", - "reference": "8.x-1.6", - "shasum": "0ddccdcf35a066de1843e1d9670677ee1a2faac0" + "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.4.zip", + "reference": "8.x-1.4", + "shasum": "64c19ecc8902e2b4b1ab0cc5f5fe28dbc83bfebe" }, "require": { - "drupal/core": "^9.2 || ^10" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.6", - "datestamp": "1668521197", + "version": "8.x-1.4", + "datestamp": "1582149957", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -11814,8 +7230,8 @@ ], "authors": [ { - "name": "bnjmnm", - "homepage": "https://www.drupal.org/user/2369194" + "name": "RobLoach", + "homepage": "https://www.drupal.org/user/61114" }, { "name": "jjeff", @@ -11841,18 +7257,6 @@ "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" @@ -11861,10 +7265,6 @@ "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" @@ -11878,27 +7278,27 @@ }, { "name": "drupal/jquery_ui_accordion", - "version": "2.0.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/jquery_ui_accordion.git", - "reference": "2.0.0" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/jquery_ui_accordion-2.0.0.zip", - "reference": "2.0.0", - "shasum": "47f3983502a5be5a8c201b54aa18e20f1e595477" + "url": "https://ftp.drupal.org/files/projects/jquery_ui_accordion-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "988a3da3b0bc3042e2f42fd20e401272f8369bbd" }, "require": { - "drupal/core": "^9.2 || ^10", - "drupal/jquery_ui": "^1.6" + "drupal/core": "^8 || ^9", + "drupal/jquery_ui": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.0", - "datestamp": "1670871459", + "version": "8.x-1.1", + "datestamp": "1584106477", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -11930,331 +7330,28 @@ } }, { - "name": "drupal/jquery_ui_autocomplete", - "version": "2.0.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/jquery_ui_autocomplete.git", - "reference": "2.0.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/jquery_ui_autocomplete-2.0.0.zip", - "reference": "2.0.0", - "shasum": "927d312a74002f99e1c971d3d268be1b0a532fc7" - }, - "require": { - "drupal/core": "^9.2 || ^10", - "drupal/jquery_ui": "^1.6", - "drupal/jquery_ui_menu": "^2" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.0", - "datestamp": "1670871461", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "bnjmnm", - "homepage": "https://www.drupal.org/user/2369194" - }, - { - "name": "lauriii", - "homepage": "https://www.drupal.org/user/1078742" - }, - { - "name": "nod_", - "homepage": "https://www.drupal.org/user/598310" - }, - { - "name": "phenaproxima", - "homepage": "https://www.drupal.org/user/205645" - }, - { - "name": "Wim Leers", - "homepage": "https://www.drupal.org/user/99777" - }, - { - "name": "zrpnr", - "homepage": "https://www.drupal.org/user/1448368" - } - ], - "description": "Provides jQuery UI Autocomplete library.", - "homepage": "https://www.drupal.org/project/jquery_ui_autocomplete", - "support": { - "source": "https://git.drupalcode.org/project/jquery_ui_autocomplete" - } - }, - { - "name": "drupal/jquery_ui_datepicker", - "version": "2.0.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git", - "reference": "2.0.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-2.0.0.zip", - "reference": "2.0.0", - "shasum": "ce40cf8ab400866bffda1ac3f7e4a5ac20bb3ae5" - }, - "require": { - "drupal/core": "^9.2 || ^10", - "drupal/jquery_ui": "^1.6" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.0", - "datestamp": "1670871494", - "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_draggable", - "version": "2.0.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git", - "reference": "2.0.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-2.0.0.zip", - "reference": "2.0.0", - "shasum": "13a8f4bf037449cd176ddb967fc9cba9a466a705" - }, - "require": { - "drupal/core": "^9.2 || ^10", - "drupal/jquery_ui": "^1.6" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.0", - "datestamp": "1670871516", - "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 Draggable library.", - "homepage": "https://www.drupal.org/project/jquery_ui_draggable", - "support": { - "source": "https://git.drupalcode.org/project/jquery_ui_draggable" - } - }, - { - "name": "drupal/jquery_ui_menu", - "version": "2.0.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/jquery_ui_menu.git", - "reference": "2.0.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/jquery_ui_menu-2.0.0.zip", - "reference": "2.0.0", - "shasum": "5e1b56bf457669c7779a81784f49da63e3956854" - }, - "require": { - "drupal/core": "^9.2 || ^10", - "drupal/jquery_ui": "^1.6" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.0", - "datestamp": "1670871546", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" - } - } - }, - "notification-url": "https://packages.drupal.org/8/downloads", - "license": [ - "GPL-2.0-or-later" - ], - "authors": [ - { - "name": "bnjmnm", - "homepage": "https://www.drupal.org/user/2369194" - }, - { - "name": "lauriii", - "homepage": "https://www.drupal.org/user/1078742" - }, - { - "name": "nod_", - "homepage": "https://www.drupal.org/user/598310" - }, - { - "name": "phenaproxima", - "homepage": "https://www.drupal.org/user/205645" - }, - { - "name": "Wim Leers", - "homepage": "https://www.drupal.org/user/99777" - }, - { - "name": "zrpnr", - "homepage": "https://www.drupal.org/user/1448368" - } - ], - "description": "Provides jQuery UI Menu library.", - "homepage": "https://www.drupal.org/project/jquery_ui_menu", - "support": { - "source": "https://git.drupalcode.org/project/jquery_ui_menu" - } - }, - { - "name": "drupal/jquery_ui_slider", - "version": "2.0.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/jquery_ui_slider.git", - "reference": "2.0.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-2.0.0.zip", - "reference": "2.0.0", - "shasum": "86b7d71e91013cffafb8021dbf8047745ebc5fd6" - }, - "require": { - "drupal/core": "^9.2 || ^10", - "drupal/jquery_ui": "^1.6" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.0", - "datestamp": "1670871571", - "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", + "name": "drupal/jquery_ui_tabs", "version": "1.1.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git", - "reference": "1.1.0" + "url": "https://git.drupalcode.org/project/jquery_ui_tabs.git", + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.1.0.zip", - "reference": "1.1.0", - "shasum": "4b7e50a98246dfa6ef48e5b12c70277873902824" + "url": "https://ftp.drupal.org/files/projects/jquery_ui_tabs-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "511ffb8258f60e7e180bed1f7447203423e58da3" }, "require": { - "drupal/core": "^8 || ^9 || ^10", - "drupal/jquery_ui": "^1.0", - "politsin/jquery-ui-touch-punch": "^1.0" + "drupal/core": "^8 || ^9", + "drupal/jquery_ui": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "1.1.0", - "datestamp": "1662744607", + "version": "8.x-1.1", + "datestamp": "1590102797", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -12267,165 +7364,47 @@ ], "authors": [ { - "name": "Naveen Valecha", - "homepage": "https://drupal.org/u/naveenvalecha", - "role": "Maintainer" + "name": "bnjmnm", + "homepage": "https://www.drupal.org/user/2369194" }, { - "name": "naveenvalecha", - "homepage": "https://www.drupal.org/user/2665733" + "name": "lauriii", + "homepage": "https://www.drupal.org/user/1078742" + }, + { + "name": "zrpnr", + "homepage": "https://www.drupal.org/user/1448368" } ], - "description": "Provides jQuery UI Touch Punch library.", - "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch", - "keywords": [ - "Drupal", - "jquery_ui_touch_punch" - ], + "description": "Provides jQuery UI Tabs library.", + "homepage": "https://www.drupal.org/project/jquery_ui_tabs", "support": { - "source": "https://www.drupal.org/project/jquery_ui_touch_punch", - "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch" + "source": "https://git.drupalcode.org/project/jquery_ui_tabs" } }, { - "name": "drupal/key", - "version": "1.17.0", + "name": "drupal/jquery_ui_tooltip", + "version": "1.1.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/key.git", - "reference": "8.x-1.17" + "url": "https://git.drupalcode.org/project/jquery_ui_tooltip.git", + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/key-8.x-1.17.zip", - "reference": "8.x-1.17", - "shasum": "fa9f606d2ba0e20693e12040004e2ed31302ed03" + "url": "https://ftp.drupal.org/files/projects/jquery_ui_tooltip-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "5a1d79d27c61a4cc80c1b256154aecfd0079d88c" }, "require": { - "drupal/core": ">=8.9 <11" + "drupal/core": "^8 || ^9", + "drupal/jquery_ui": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.17", - "datestamp": "1674343967", - "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": "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" - } - }, - { - "name": "drupal/key_value_field", - "version": "1.3.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/key_value_field.git", - "reference": "8.x-1.3" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/key_value_field-8.x-1.3.zip", - "reference": "8.x-1.3", - "shasum": "f76d97da2f4a2a3b4f3ee0b35cf5b1f9e77dc767" - }, - "require": { - "drupal/core": ">=8.9 <11.0.0-stable" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.3", - "datestamp": "1661273961", - "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+" - ], - "authors": [ - { - "name": "dawehner", - "homepage": "https://www.drupal.org/user/99340" - }, - { - "name": "japerry", - "homepage": "https://www.drupal.org/user/45640" - } - ], - "description": "Provides a field with a key, value pair along with a description.", - "homepage": "https://www.drupal.org/project/key_value_field", - "support": { - "source": "https://git.drupalcode.org/project/key_value_field", - "issues": "https://www.drupal.org/project/issues/key_value_field" - } - }, - { - "name": "drupal/link_attributes", - "version": "1.14.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/link_attributes.git", - "reference": "8.x-1.14" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.14.zip", - "reference": "8.x-1.14", - "shasum": "fa4f27ecaed7e6b3c58c0adc679918a9beb7ded5" - }, - "require": { - "drupal/core": "^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.14", - "datestamp": "1687393687", + "version": "8.x-1.1", + "datestamp": "1584107978", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -12438,180 +7417,73 @@ ], "authors": [ { - "name": "larowlan", - "homepage": "https://www.drupal.org/user/395439" - } - ], - "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": "6.1.2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/linkit.git", - "reference": "6.1.2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/linkit-6.1.2.zip", - "reference": "6.1.2", - "shasum": "63fb311d2b78df81a9a588330429b640ec7da0e8" - }, - "require": { - "drupal/core": "^10.1" - }, - "require-dev": { - "drupal/ckeditor": "*", - "drupal/imce": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "6.1.2", - "datestamp": "1696865478", - "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": "bnjmnm", + "homepage": "https://www.drupal.org/user/2369194" }, { - "name": "johnwebdev", - "homepage": "https://www.drupal.org/user/3331569" + "name": "lauriii", + "homepage": "https://www.drupal.org/user/1078742" }, { - "name": "mark_fullmer", - "homepage": "https://www.drupal.org/user/2612816" + "name": "zrpnr", + "homepage": "https://www.drupal.org/user/1448368" } ], - "description": "Linkit - Enriched linking experience", - "homepage": "http://drupal.org/project/linkit", + "description": "Provides jQuery UI Tooltip library.", + "homepage": "https://www.drupal.org/project/jquery_ui_tooltip", "support": { - "source": "http://cgit.drupalcode.org/linkit", - "issues": "http://drupal.org/project/linkit" - } - }, - { - "name": "drupal/mail_login", - "version": "2.9.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/mail_login.git", - "reference": "8.x-2.9" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/mail_login-8.x-2.9.zip", - "reference": "8.x-2.9", - "shasum": "13c0271001f1f317d625891475a08309e669146b" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-2.9", - "datestamp": "1696437251", - "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": "Mohammad AlQanneh", - "homepage": "https://www.drupal.org/u/mqanneh", - "role": "Maintainer" - }, - { - "name": "mqanneh", - "homepage": "https://www.drupal.org/user/2833163" - } - ], - "description": "This module enables users to login by email address.", - "homepage": "https://www.drupal.org/project/mail_login", - "keywords": [ - "drupal", - "php", - "user" - ], - "support": { - "source": "https://git.drupalcode.org/project/mail_login", - "issues": "http://drupal.org/project/issues/mail_login", - "email": "mqanneh@gmail.com" + "source": "https://git.drupalcode.org/project/jquery_ui_tooltip" } }, { "name": "drupal/mailchimp", - "version": "2.2.2", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/mailchimp.git", - "reference": "2.2.2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/mailchimp-2.2.2.zip", - "reference": "2.2.2", - "shasum": "8d4fcf460cea550d74ad6ff7e140341f4363cdb1" + "reference": "9ce6e548f11b36236c9c30179f9595f382ede780" }, "require": { - "drupal/core": "^8.7.7 || ^9 || ^10", - "thinkshout/mailchimp-api-php": "3.0.0" + "drupal/core": "^8.7.7 || ^9", + "thinkshout/mailchimp-api-php": "2.0.0" }, "require-dev": { - "drupal/mailchimp_events": "*", "drupal/mailchimp_lists": "*" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "2.2.2", - "datestamp": "1687974651", + "version": "8.x-1.11+25-dev", + "datestamp": "1589809374", "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." } + }, + "patches_applied": { + "Drupal 9 compatibility": "https://www.drupal.org/files/issues/2020-07-16/mailchimp-d9-3138909-9.patch" + } + }, + "autoload": { + "psr-0": { + "Mailchimp": "src/" } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { - "name": "aprice42", - "homepage": "https://www.drupal.org/user/369147" + "name": "amyvs", + "homepage": "https://www.drupal.org/user/3181721" }, { - "name": "bdimaggio", - "homepage": "https://www.drupal.org/user/70688" + "name": "aprice42", + "homepage": "https://www.drupal.org/user/369147" }, { "name": "brendanthinkshout", @@ -12621,204 +7493,127 @@ "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" + }, + "time": "2020-08-19T21:41:47+00:00" + }, + { + "name": "drupal/mailsystem", + "version": "4.3.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/mailsystem.git", + "reference": "8.x-4.3" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.3.zip", + "reference": "8.x-4.3", + "shasum": "1a74016e268ff207535be5d5e42ac8f72ac89050" + }, + "require": { + "drupal/core": "^8.7.7 || ^9" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-4.3", + "datestamp": "1586203024", + "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": "Les Lim", + "homepage": "https://www.drupal.org/user/84263" + }, + { + "name": "Manuel Garcia", + "homepage": "https://www.drupal.org/user/213194" + }, + { + "name": "Nafes", + "homepage": "https://www.drupal.org/user/2489926" + }, + { + "name": "miro_dietiker", + "homepage": "https://www.drupal.org/user/227761" + }, + { + "name": "pillarsdotnet", + "homepage": "https://www.drupal.org/user/36148" + } + ], + "description": "Mail System", + "homepage": "https://www.drupal.org/project/mailsystem", + "support": { + "source": "https://git.drupalcode.org/project/mailsystem" } }, { "name": "drupal/markdown", - "version": "3.0.1", + "version": "dev-2.x", "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" + "reference": "56083169130b9592f2b0950be707e7224602b4c0" }, "require": { - "composer/semver": "^1.0 || ^2.0 || ^3.0", - "drupal/core": "^9.1 || ^10", + "composer/semver": "^1.0 || ^2.0", + "drupal/core": "^8", "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" - } - ], - "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": "dev-1.2.x", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/media_contextual_crop.git", - "reference": "3193fb963b46a5c9d045cd61acba78fc8ae0e88e" - }, - "require": { - "drupal/core": "^9.4 || ^10" - }, - "require-dev": { - "drupal/advanced_help": "^1" + "league/commonmark": "The PHP CommonMark parser is a robust, highly-extensible Markdown parser for PHP based on the CommonMark and Github-Flavored Markdown specifications (version 1.3.0 and higher is supported).", + "webuni/commonmark-attributes-extension": "The Attributes extension adds a syntax to define attributes on the various HTML elements in markdown's output." }, "type": "drupal-module", "extra": { "branch-alias": { - "dev-1.2.x": "1.2.x-dev" + "dev-2.x": "2.x-dev" }, "drupal": { - "version": "1.2.1+5-dev", - "datestamp": "1697791918", + "version": "8.x-2.0-rc1+21-dev", + "datestamp": "1595475565", "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": "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": "1.3.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/media_contextual_crop_field_formatter.git", - "reference": "1.3.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/media_contextual_crop_field_formatter-1.3.0.zip", - "reference": "1.3.0", - "shasum": "7e09a051247c22e83a665ab9538c7e18779d93d2" - }, - "require": { - "composer/installers": "^1.9 || ^2.0", - "cweagans/composer-patches": "^1.7", - "drupal/core": "^9.4 || ^10", - "drupal/media_contextual_crop": "~1.2", - "drupal/media_library_media_modify": "^1.0@beta" - }, - "require-dev": { - "drupal/advanced_help": "^1" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "1.3.0", - "datestamp": "1692266180", - "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + }, + "drush": { + "services": { + "drush.services.yml": "^8 || ^9 || ^10" } }, - "enable-patching": true, - "patches": { - "drupal/media_library_media_modify": { - "#3270150 Add alteration": "https://www.drupal.org/files/issues/2022-06-08/manage_crops_3270150-7.patch" - } + "patches_applied": { + "[markdown] Drupal 9 Support": "https://www.drupal.org/files/issues/2020-05-14/3103679-18.patch" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -12827,259 +7622,50 @@ ], "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": "1.1.1", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/media_contextual_crop_fp_adapter.git", - "reference": "1.1.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/media_contextual_crop_fp_adapter-1.1.1.zip", - "reference": "1.1.1", - "shasum": "b42f7d09e270becdc317bf832156b00cc1b90d12" - }, - "require": { - "drupal/core": "^9.4 || ^10", - "drupal/focal_point": "^1.5 || ^2.0@alpha", - "drupal/media_contextual_crop": "~1.2" - }, - "require-dev": { - "drupal/advanced_help": "^1" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "1.1.1", - "datestamp": "1692689051", - "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": "1.1.1", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/media_contextual_crop_iwc_adapter.git", - "reference": "1.1.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/media_contextual_crop_iwc_adapter-1.1.1.zip", - "reference": "1.1.1", - "shasum": "7f8e58070560b675cca8eb5b32b8f967532f72b0" - }, - "require": { - "drupal/core": "^9.4 || ^10", - "drupal/image_widget_crop": "^2.3", - "drupal/media_contextual_crop": "~1.2" - }, - "require-dev": { - "drupal/advanced_help": "^1" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "1.1.1", - "datestamp": "1692689056", - "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-beta15", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/media_library_media_modify.git", - "reference": "1.0.0-beta15" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/media_library_media_modify-1.0.0-beta15.zip", - "reference": "1.0.0-beta15", - "shasum": "fb0273e19c2b840cf4e4420b883dd9a192babf22" - }, - "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-beta15", - "datestamp": "1704817926", - "security-coverage": { - "status": "not-covered", - "message": "Beta releases are not covered by Drupal security advisories." - } - }, - "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": { - "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": "Mark Carver (markcarver)", + "homepage": "https://www.drupal.org/u/markcarver", + "role": "Maintainer" }, { - "name": "chr.fritsch", - "homepage": "https://www.drupal.org/user/2103716" + "name": "Gisle Hannemyr (gisle)", + "homepage": "https://www.drupal.org/u/gisle", + "role": "Co-Maintainer" }, { - "name": "daniel.bosen", - "homepage": "https://www.drupal.org/user/404865" - }, - { - "name": "volkerk", - "homepage": "https://www.drupal.org/user/57527" + "name": "markcarver", + "homepage": "https://www.drupal.org/user/501638" } ], - "description": "Store context specific overrides for entity reference fields.", - "homepage": "https://www.drupal.org/project/media_library_media_modify", + "description": "Allows content to be submitted using Markdown, 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/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" + "source": "https://git.drupalcode.org/project/markdown", + "issues": "https://www.drupal.org/project/markdown" }, - "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": "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" - } + "time": "2020-08-10T17:20:57+00:00" }, { "name": "drupal/menu_admin_per_menu", - "version": "1.5.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git", - "reference": "8.x-1.5" + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.5.zip", - "reference": "8.x-1.5", - "shasum": "ec8c7a4a064aa285dfb722dad264da9936fc81b6" + "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "cb967bdd9ca6f5692d670d5c7c8d77587e7fd38c" }, "require": { - "drupal/core": "^9 || ^10" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.5", - "datestamp": "1660918821", + "version": "8.x-1.3", + "datestamp": "1593436060", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -13091,14 +7677,14 @@ "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": "anrikun", + "homepage": "https://www.drupal.org/user/410199" + }, { "name": "jonas139", "homepage": "https://www.drupal.org/user/2873401" @@ -13116,26 +7702,26 @@ }, { "name": "drupal/menu_block", - "version": "1.10.0", + "version": "1.6.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/menu_block.git", - "reference": "8.x-1.10" + "reference": "8.x-1.6" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/menu_block-8.x-1.10.zip", - "reference": "8.x-1.10", - "shasum": "97de632d77448ae0a974e20c2ffbe42c7ddd4633" + "url": "https://ftp.drupal.org/files/projects/menu_block-8.x-1.6.zip", + "reference": "8.x-1.6", + "shasum": "3da96af15c3a5f5f1966e28b6e87b74228617998" }, "require": { - "drupal/core": "^9.1 || ^10" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.10", - "datestamp": "1667434255", + "version": "8.x-1.6", + "datestamp": "1587721600", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -13151,21 +7737,17 @@ "name": "Dave Reid", "homepage": "https://www.drupal.org/user/53892" }, - { - "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": "joelpittet", + "homepage": "https://www.drupal.org/user/160302" }, { - "name": "RenatoG", - "homepage": "https://www.drupal.org/user/3326031" + "name": "kim.pepper", + "homepage": "https://www.drupal.org/user/370574" }, { "name": "rrrob", @@ -13178,165 +7760,28 @@ "source": "https://git.drupalcode.org/project/menu_block" } }, - { - "name": "drupal/menu_item_extras", - "version": "2.19.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/menu_item_extras.git", - "reference": "8.x-2.19" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/menu_item_extras-8.x-2.19.zip", - "reference": "8.x-2.19", - "shasum": "4b3f6c1db6f6678438aebddea42f6101ae43bccb" - }, - "require": { - "drupal/core": "^9.4 || ^10.0" - }, - "require-dev": { - "drupal/ckeditor": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-2.19", - "datestamp": "1671971153", - "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+" - ], - "authors": [ - { - "name": "Andriy Khomych", - "homepage": "https://www.drupal.org/u/andriy-khomych", - "role": "Maintainer" - }, - { - "name": "Bogdan Hepting", - "homepage": "https://www.drupal.org/u/bogdan-hepting", - "role": "Maintainer" - }, - { - "name": "Oleh Vehera", - "homepage": "https://www.drupal.org/u/voleger", - "role": "Maintainer" - }, - { - "name": "Mykhailo Gurei", - "homepage": "https://www.drupal.org/u/ozin", - "role": "Maintainer" - } - ], - "description": "Provide an additional custom fields which can be used on Menu link", - "homepage": "https://www.drupal.org/project/menu_item_extras", - "keywords": [ - "Drupal", - "Mega Menu" - ], - "support": { - "source": "https://git.drupalcode.org/project/menu_item_extras", - "issues": "https://www.drupal.org/project/issues/menu_item_extras" - } - }, - { - "name": "drupal/menu_link_config", - "version": "1.0.0-alpha8", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/menu_link_config.git", - "reference": "8.x-1.0-alpha8" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/menu_link_config-8.x-1.0-alpha8.zip", - "reference": "8.x-1.0-alpha8", - "shasum": "864799692dc6eb310cd90e50aaa2cc88c954d7ec" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.0-alpha8", - "datestamp": "1677846082", - "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": "dawehner", - "homepage": "https://www.drupal.org/user/99340" - }, - { - "name": "geek-merlin", - "homepage": "https://www.drupal.org/user/229048" - }, - { - "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.0.1", + "version": "1.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/menu_trail_by_path.git", - "reference": "2.0.1" + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/menu_trail_by_path-2.0.1.zip", - "reference": "2.0.1", - "shasum": "3c2c1b0ee669c26e6ccba8a345605b7c932be2bf" + "url": "https://ftp.drupal.org/files/projects/menu_trail_by_path-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "64ba3a163302ff132c29a75b75ca4f6cce6b24dd" }, "require": { - "drupal/core": "^8.8 || ^9.0 || ^10" + "drupal/core": "^8.8|^9.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.1", - "datestamp": "1701298206", + "version": "8.x-1.3", + "datestamp": "1586900806", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -13352,6 +7797,10 @@ "name": "Berdir", "homepage": "https://www.drupal.org/user/214652" }, + { + "name": "SeriousMatters", + "homepage": "https://www.drupal.org/user/290439" + }, { "name": "davy-r", "homepage": "https://www.drupal.org/user/3278771" @@ -13363,10 +7812,6 @@ { "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.", @@ -13377,29 +7822,32 @@ }, { "name": "drupal/message", - "version": "1.4.0", + "version": "1.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/message.git", - "reference": "8.x-1.4" + "reference": "8.x-1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/message-8.x-1.4.zip", - "reference": "8.x-1.4", - "shasum": "4158df35b5506fc88061358624589c4a04c414a2" + "url": "https://ftp.drupal.org/files/projects/message-8.x-1.0.zip", + "reference": "8.x-1.0", + "shasum": "873b3d8030d47bd472d75472f293b7631a59eeaf" }, "require": { - "drupal/core": "^9 || ^10" + "drupal/core": "*" }, "require-dev": { "drupal/token": "*" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.4", - "datestamp": "1667584508", + "version": "8.x-1.0", + "datestamp": "1570139286", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -13408,28 +7856,28 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "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": "jhedstrom", - "homepage": "https://www.drupal.org/user/208732" - }, { "name": "RoySegall", "homepage": "https://www.drupal.org/user/1812910" + }, + { + "name": "amitaibu", + "homepage": "https://www.drupal.org/user/57511" + }, + { + "name": "itamar", + "homepage": "https://www.drupal.org/user/1757910" + }, + { + "name": "jhedstrom", + "homepage": "https://www.drupal.org/user/208732" } ], "description": "Message", @@ -13440,38 +7888,34 @@ }, { "name": "drupal/metatag", - "version": "1.26.0", + "version": "1.14.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/metatag.git", - "reference": "8.x-1.26" + "reference": "8.x-1.14" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.26.zip", - "reference": "8.x-1.26", - "shasum": "afa4a37422748baa2f0c35b13961438668ef3be8" + "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.14.zip", + "reference": "8.x-1.14", + "shasum": "9bf9f1517ad015d0c93ca1460e284c557624aa90" }, "require": { - "drupal/core": "^9.3 || ^10", + "drupal/core": "^8 || ^9", "drupal/token": "^1.0" }, "require-dev": { - "drupal/devel": "^4.0 || ^5.0", - "drupal/hal": "^9 || ^1 || ^2", "drupal/metatag_dc": "*", "drupal/metatag_open_graph": "*", - "drupal/page_manager": "^4.0", - "drupal/panelizer": "^4.0", - "drupal/redirect": "^1.0", - "drupal/webprofiler": "^9 || ^10", - "mpyw/phpunit-patch-serializable-comparison": "*" + "drupal/page_manager": "4.x-dev", + "drupal/panelizer": "4.x-dev", + "drupal/redirect": "1.x-dev" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.26", - "datestamp": "1687856123", + "version": "8.x-1.14", + "datestamp": "1597183852", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -13506,32 +7950,44 @@ } }, { - "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": "not-covered", - "message": "Beta releases are not covered by Drupal security advisories." + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, @@ -13539,78 +7995,12 @@ "license": [ "GPL-2.0+" ], - "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.2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/migrate_plus.git", - "reference": "6.0.2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/migrate_plus-6.0.2.zip", - "reference": "6.0.2", - "shasum": "4315bc293aa75ea9247582d5d1925b075865e467" - }, - "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.2", - "datestamp": "1705424638", - "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" @@ -13619,94 +8009,42 @@ "description": "Enhancements to core migration support.", "homepage": "https://www.drupal.org/project/migrate_plus", "support": { - "source": "https://git.drupalcode.org/project/migrate_plus", + "source": "https://cgit.drupalcode.org/migrate_plus", "issues": "https://www.drupal.org/project/issues/migrate_plus", - "slack": "#migrate" - } - }, - { - "name": "drupal/migrate_source_csv", - "version": "3.6.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/migrate_source_csv.git", - "reference": "8.x-3.6" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/migrate_source_csv-8.x-3.6.zip", - "reference": "8.x-3.6", - "shasum": "60b5e7dcb5d7a68ed0a43693fe67e7d26b1a9d83" - }, - "require": { - "drupal/core": ">=9.1", - "league/csv": "^9.1", - "php": ">=7.1" - }, - "require-dev": { - "drupal/migrate_plus": ">=5.0" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-3.6", - "datestamp": "1702995930", - "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" + "irc": "irc://irc.freenode.org/drupal-migrate" } }, { "name": "drupal/migrate_tools", - "version": "6.0.4", + "version": "4.5.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/migrate_tools.git", - "reference": "6.0.4" + "reference": "8.x-4.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/migrate_tools-6.0.4.zip", - "reference": "6.0.4", - "shasum": "63c571aefece96b199ce8b8f90da648186502be4" + "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-4.5.zip", + "reference": "8.x-4.5", + "shasum": "06390b359bf53c50a30f2d6dc4c7542bfb1fe7ca" }, "require": { - "drupal/core": ">=9.1", - "php": ">=7.4" + "drupal/core": "^8 || ^9", + "drupal/migrate_plus": "^4 || ^5" }, "require-dev": { - "drupal/migrate_plus": ">=5", - "drupal/migrate_source_csv": ">=3", - "drush/drush": ">=11" - }, - "suggest": { - "drupal/migrate_plus": ">=5", - "drush/drush": ">=11" + "drupal/migrate_plus": "4.x-dev", + "drupal/migrate_source_csv": "^2.2", + "drush/drush": "^10" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-4.x": "4.x-dev" + }, "drupal": { - "version": "6.0.4", - "datestamp": "1707330330", + "version": "8.x-4.5", + "datestamp": "1574693285", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -13714,7 +8052,7 @@ }, "drush": { "services": { - "drush.services.yml": ">=9" + "drush.services.yml": "^9 || ^10" } } }, @@ -13724,56 +8062,52 @@ ], "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": "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": "https://git.drupalcode.org/project/migrate_tools", - "issues": "https://www.drupal.org/project/issues/migrate_tools", - "slack": "#migrate" + "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": "4.0.1", + "name": "drupal/mimemail", + "version": "1.0.0-alpha3", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/migrate_upgrade.git", - "reference": "4.0.1" + "url": "https://git.drupalcode.org/project/mimemail.git", + "reference": "8.x-1.0-alpha3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/migrate_upgrade-4.0.1.zip", - "reference": "4.0.1", - "shasum": "e9507affa61ae27adb1ea6e0d55f3bb32506ddfc" + "url": "https://ftp.drupal.org/files/projects/mimemail-8.x-1.0-alpha3.zip", + "reference": "8.x-1.0-alpha3", + "shasum": "5e02422aa7ea56411c10086c56a5033558eccfa4" }, "require": { - "drupal/core": ">=9", - "drupal/migrate_plus": ">=5", - "drush/drush": ">=9", - "php": ">7.3" + "drupal/core": "^8 || ^9", + "drupal/mailsystem": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "4.0.1", - "datestamp": "1672260874", + "version": "8.x-1.0-alpha3", + "datestamp": "1591399267", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Alpha releases are not covered by Drupal security advisories." } } }, @@ -13783,55 +8117,57 @@ ], "authors": [ { - "name": "Mike Ryan", - "homepage": "https://www.drupal.org/u/mikeryan", - "role": "Maintainer" + "name": "Allie Micka", + "homepage": "https://www.drupal.org/user/15091" }, { - "name": "Lucas Hedding", - "homepage": "https://www.drupal.org/u/heddn", - "role": "Maintainer" + "name": "TR", + "homepage": "https://www.drupal.org/user/202830" + }, + { + "name": "jerdavis", + "homepage": "https://www.drupal.org/user/228997" + }, + { + "name": "sgabe", + "homepage": "https://www.drupal.org/user/232117" } ], - "description": "Drush support for direct upgrades from older Drupal versions.", - "homepage": "https://www.drupal.org/project/migrate_upgrade", + "description": "Sends MIME-encoded emails with embedded images and attachments.", + "homepage": "https://www.drupal.org/project/mimemail", "support": { - "source": "https://git.drupalcode.org/project/migrate_upgrade", - "issues": "https://www.drupal.org/project/issues/migrate_upgrade", - "slack": "#migrate" + "source": "https://git.drupalcode.org/project/mimemail" } }, { "name": "drupal/minimalhtml", - "version": "2.0.2", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/minimalhtml.git", - "reference": "2.0.2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/minimalhtml-2.0.2.zip", - "reference": "2.0.2", - "shasum": "1dc75beafb5d392fc63648826e8cecfad1a97c37" + "reference": "572b5f20d9906f3c0f4171fbf353228033dd6b34" }, "require": { - "drupal/core": "^8 || ^9 || ^10", - "drupal/wysiwyg_linebreaks": "2.0.x-dev@dev" + "drupal/core": "^8 || ^9", + "drupal/wysiwyg_linebreaks": "^1.9" }, "require-dev": { - "drupal/ckeditor": "*" + "drupal/wysiwyg_linebreaks": "*" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "2.0.2", - "datestamp": "1690397749", + "version": "8.x-1.1+3-dev", + "datestamp": "1599750815", "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." } - } + }, + "patches_applied": [] }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ @@ -13847,10 +8183,6 @@ { "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.", @@ -13858,200 +8190,19 @@ "support": { "source": "https://git.drupalcode.org/project/minimalhtml", "issues": "https://www.drupal.org/project/issues/minimalhtml" - } + }, + "time": "2020-09-10T15:13:16+00:00" }, { - "name": "drupal/minimalhtmltitle", - "version": "2.0.2", - "require": { - "drupal/ckeditor": "*", - "drupal/core": "^8 || ^9 || ^10", - "drupal/minimalhtml": "^2" - }, - "type": "metapackage", - "extra": { - "drupal": { - "version": "2.0.2", - "datestamp": "1690397749", - "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": "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" - } - ], - "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/multiparagraph_flow", - "version": "dev-1.0.x", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/multiparagraph_flow.git", - "reference": "3f431ae615356964ceb93f9198fe41b6c9bbff7c" - }, - "require": { - "drupal/core": "^9.3 || ^10", - "drupal/paragraphs": "*", - "drupal/paragraphs_browser": "*" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-1.0.x": "1.0.x-dev" - }, - "drupal": { - "version": "1.0.x-dev", - "datestamp": "1708020867", - "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": "MegaKeegMan", - "homepage": "https://www.drupal.org/user/3620027" - } - ], - "description": "Provides a paragraph type that contains a css grid of other paragraphs.", - "homepage": "https://www.drupal.org/project/multiparagraph_flow", - "support": { - "source": "https://git.drupalcode.org/project/multiparagraph_flow" - } - }, - { - "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.16.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/noreferrer.git", - "reference": "8.x-1.16" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/noreferrer-8.x-1.16.zip", - "reference": "8.x-1.16", - "shasum": "f02e76504bfc0a3313fde6e6a0333501921a13c7" - }, - "require": { - "drupal/core": "^8.7.7 || ^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.16", - "datestamp": "1673521010", - "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": "mfb", - "homepage": "https://www.drupal.org/user/12302" - } - ], - "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" - } - }, - { - "name": "drupal/notfoundpassthrough", + "name": "drupal/multiline_config", "version": "dev-1.x", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/notfoundpassthrough.git", - "reference": "0482dc146ebfbc842274ac9513d675efee8b8f6d" + "url": "https://git.drupalcode.org/project/multiline_config.git", + "reference": "c34c51b92b79ea27f326b6b20fc3e23b4802e482" }, "require": { - "drupal/core": "^8.8 || ^9 || ^10" + "drupal/core": "^8.7.10 || ^9" }, "type": "drupal-module", "extra": { @@ -14059,8 +8210,61 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "1.0.0-beta4+1-dev", - "datestamp": "1682098409", + "version": "8.x-1.0+4-dev", + "datestamp": "1579606383", + "security-coverage": { + "status": "not-covered", + "message": "Dev releases are not covered by Drupal security advisories." + } + }, + "patches_applied": { + "Drupal 9 readiness for Multiline Config": "https://www.drupal.org/files/issues/2020-07-22/3109713-Drupal-support-13.patch" + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0+" + ], + "authors": [ + { + "name": "Pedro Cambra", + "homepage": "https://www.drupal.org/u/pcambra" + }, + { + "name": "Manuel Egío", + "homepage": "https://www.drupal.org/u/facine" + } + ], + "description": "This module allows you export configuration strings as multiline.", + "homepage": "http://drupal.org/project/multiline_config", + "support": { + "source": "https://cgit.drupalcode.org/multiline_config", + "issues": "https://www.drupal.org/project/issues/multiline_config" + }, + "time": "2020-01-21T11:28:39+00:00" + }, + { + "name": "drupal/octavia", + "version": "dev-1.x", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/octavia.git", + "reference": "1031b7a2e90b5299546819e2fae5307ecaa643b1" + }, + "require": { + "drupal/bulma": "^1.0-beta4", + "drupal/core": "^8 || ^9", + "drupal/skins": "^1.0-alpha4", + "drupal/twigsuggest": "^1.0-beta1" + }, + "type": "drupal-theme", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, + "drupal": { + "version": "8.x-1.0+8-dev", + "datestamp": "1596662742", "security-coverage": { "status": "not-covered", "message": "Dev releases are not covered by Drupal security advisories." @@ -14073,88 +8277,13 @@ ], "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": "ba8cee423b1f4e749c3db4608dac6bb2f36b07ee" - }, - "require": { - "drupal/bulma": "^3.0", - "drupal/components": "^3", - "drupal/core": "^9 || ^10", - "drupal/skins": "^2.0-alpha1", - "drupal/twigsuggest": "^1.0-beta2" - }, - "type": "drupal-theme", - "extra": { - "branch-alias": { - "dev-2.0.x": "2.0.x-dev" - }, - "drupal": { - "version": "2.0.0-alpha1+20-dev", - "datestamp": "1705514242", - "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": "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" @@ -14163,10 +8292,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" @@ -14189,108 +8314,38 @@ "support": { "source": "https://gitlab.com/drutopia/octavia/tree/8.x-1.x", "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": "e0f08290fd3c86525847f260f15f2e0aaa10e69c" }, - "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": "1706247233", - "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": "freescholar", - "homepage": "https://www.drupal.org/user/69463" - }, - { - "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": "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" - } + "time": "2020-08-10T05:57:31+00:00" }, { "name": "drupal/paragraphs", - "version": "1.17.0", + "version": "1.12.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/paragraphs.git", - "reference": "8.x-1.17" + "reference": "8.x-1.12" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.17.zip", - "reference": "8.x-1.17", - "shasum": "81c05f6a1eb59ab957c9ac97b2e79d6c9837bd72" + "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.12.zip", + "reference": "8.x-1.12", + "shasum": "3b67d8af1160af42d93a4610be1e02869e428965" }, "require": { - "drupal/core": "^9.3 || ^10", + "drupal/core": "^8.8 || ^9", "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/field_group": "3.x-dev", - "drupal/inline_entity_form": "1.x-dev", + "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": { @@ -14299,8 +8354,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.17", - "datestamp": "1705234146", + "version": "8.x-1.12", + "datestamp": "1590140081", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -14320,6 +8375,10 @@ "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" @@ -14331,10 +8390,6 @@ { "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.", @@ -14343,80 +8398,23 @@ "source": "https://git.drupalcode.org/project/paragraphs" } }, - { - "name": "drupal/paragraphs_browser", - "version": "1.1.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/paragraphs_browser.git", - "reference": "8.x-1.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/paragraphs_browser-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "79d34a4885c7c669bb3a481f9aa25b91cad7aab0" - }, - "require": { - "drupal/core": "^9.3 || ^10", - "drupal/paragraphs": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.1", - "datestamp": "1673972153", - "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": "Deciphered", - "homepage": "https://www.drupal.org/user/103796" - }, - { - "name": "michaellander", - "homepage": "https://www.drupal.org/user/636494" - }, - { - "name": "Mojiferous", - "homepage": "https://www.drupal.org/user/1678298" - }, - { - "name": "tandroid", - "homepage": "https://www.drupal.org/user/2879591" - } - ], - "description": "Provides browser for adding additional paragraphs.", - "homepage": "https://www.drupal.org/project/paragraphs_browser", - "support": { - "source": "https://git.drupalcode.org/project/paragraphs_browser" - } - }, { "name": "drupal/paragraphs_features", - "version": "2.0.0-beta4", + "version": "1.10.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/paragraphs_features.git", - "reference": "2.0.0-beta4" + "reference": "8.x-1.10" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/paragraphs_features-2.0.0-beta4.zip", - "reference": "2.0.0-beta4", - "shasum": "c3137491ba5f73e8395d9c2178beac3a10e33f7d" + "url": "https://ftp.drupal.org/files/projects/paragraphs_features-8.x-1.10.zip", + "reference": "8.x-1.10", + "shasum": "beb2824be45d79904b1710e440b5220ca4bd7090" }, "require": { - "drupal/core": "^9.2 || ^10", - "drupal/paragraphs": "^1.13" + "drupal/core": "^8.7.7 || ^9", + "drupal/paragraphs": "^1.12" }, "require-dev": { "drupal/gin": "^3.0" @@ -14424,11 +8422,11 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.0-beta4", - "datestamp": "1705329204", + "version": "8.x-1.10", + "datestamp": "1599831679", "security-coverage": { - "status": "not-covered", - "message": "Beta releases are not covered by Drupal security advisories." + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, @@ -14449,16 +8447,17 @@ }, { "name": "Christian Fritsch", - "homepage": "https://www.drupal.org/user/3511180", + "homepage": "https://www.drupal.org/user/3453049", "email": "christian.fritsch@burda.com" }, { "name": "Volker Killesreiter", - "homepage": "https://www.drupal.org/user/57527", + "homepage": "https://www.drupal.org/user/3511180", "email": "volker.killesreiter@burda.com" }, { "name": "Alex Pott", + "homepage": "https://www.drupal.org/user/57527", "email": "alex.a.pott@gmail.com" } ], @@ -14470,29 +8469,32 @@ }, { "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." } } }, @@ -14501,10 +8503,6 @@ "GPL-2.0-or-later" ], "authors": [ - { - "name": "banviktor", - "homepage": "https://www.drupal.org/user/3176333" - }, { "name": "greggles", "homepage": "https://www.drupal.org/user/36762" @@ -14513,10 +8511,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" @@ -14525,94 +8519,25 @@ "description": "Protects a site from some insecure configurations.", "homepage": "https://www.drupal.org/project/paranoia", "support": { - "source": "https://git.drupalcode.org/project/paranoia" - } - }, - { - "name": "drupal/password_policy", - "version": "4.0.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/password_policy.git", - "reference": "4.0.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/password_policy-4.0.0.zip", - "reference": "4.0.0", - "shasum": "ed55a1441bc7fad0dcb0aea7d2bfecc88a156c83" - }, - "require": { - "drupal/core": "^9.1 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "4.0.0", - "datestamp": "1668191689", - "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" - } - ], - "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" + "source": "http://cgit.drupalcode.org/paranoia" } }, { "name": "drupal/pathauto", - "version": "1.12.0", + "version": "1.8.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/pathauto.git", - "reference": "8.x-1.12" + "reference": "8.x-1.8" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.12.zip", - "reference": "8.x-1.12", - "shasum": "b7b6432e315e38e59a7c6cc117134326c580de4c" + "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.8.zip", + "reference": "8.x-1.8", + "shasum": "ede3216abb9c4f77709338d9147334c595046329" }, "require": { - "drupal/core": "^9.3 || ^10", + "drupal/core": "^8.8 || ^9", "drupal/ctools": "*", "drupal/token": "*" }, @@ -14622,8 +8547,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.12", - "datestamp": "1696776683", + "version": "8.x-1.8", + "datestamp": "1588103046", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -14665,224 +8590,46 @@ "documentation": "https://www.drupal.org/docs/8/modules/pathauto" } }, - { - "name": "drupal/pdf_api", - "version": "2.4.2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/pdf_api.git", - "reference": "2.4.2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/pdf_api-2.4.2.zip", - "reference": "2.4.2", - "shasum": "b7c63f1744037e54237b8d3ed8c66c8396207827" - }, - "require": { - "dompdf/dompdf": ">=2.0.4", - "drupal/core": "^8.8 || ^9 || ^10", - "mikehaertl/phpwkhtmltopdf": "^2.3", - "mpdf/mpdf": "^8.2.0", - "tecnickcom/tcpdf": "^6.2" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.4.2", - "datestamp": "1702690871", - "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": "Nigel Cunningham", - "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.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/plausible.git", - "reference": "2.1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/plausible-2.1.0.zip", - "reference": "2.1.0", - "shasum": "7c9ab067bf07882aad4a2f8236050efc8376d66a" - }, - "require": { - "drupal/core": "^8.8.6 || ^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.1.0", - "datestamp": "1687203441", - "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.4.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/prepopulate.git", - "reference": "8.x-2.4" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/prepopulate-8.x-2.4.zip", - "reference": "8.x-2.4", - "shasum": "5e82bd6cbbaafc8320e8b3e48bc3862de4964e00" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10" - }, - "require-dev": { - "drupal/inline_entity_form": "^1.0@beta", - "drupal/og": "^1.0@alpha" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-2.4", - "datestamp": "1678728834", - "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.1.0-alpha2", + "version": "1.7.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/preview_link.git", - "reference": "2.1.0-alpha2" + "reference": "8.x-1.7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/preview_link-2.1.0-alpha2.zip", - "reference": "2.1.0-alpha2", - "shasum": "9e077ecb0f43e9bf5e6d5fba2520b0b46846a5e8" + "url": "https://ftp.drupal.org/files/projects/preview_link-8.x-1.7.zip", + "reference": "8.x-1.7", + "shasum": "bfed04e554864f9c3fb5d7a758bc27f5041f1518" }, "require": { - "drupal/core": "^9.4 || ^10", - "drupal/dynamic_entity_reference": "^1 || ^2 || ^3 || ^4", - "php": ">=8.0" + "drupal/core": "^8.7.7 || ^9" }, "require-dev": { "drupal/entity_reference_revisions": "*", - "drupal/paragraphs": "^1" + "drupal/paragraphs": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.1.0-alpha2", - "datestamp": "1698724706", + "version": "8.x-1.7", + "datestamp": "1593052165", "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" } } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { - "name": "acbramley", - "homepage": "https://www.drupal.org/user/1036766" + "name": "Sam152", + "homepage": "https://www.drupal.org/user/1485048" }, { "name": "benjy", @@ -14895,423 +8642,36 @@ { "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.0.2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/printable.git", - "reference": "3.0.2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/printable-3.0.2.zip", - "reference": "3.0.2", - "shasum": "abf887dda994a23c0cca2f282510880e23fb28e4" - }, - "require": { - "drupal/core": "^9.4 || ^10", - "drupal/pdf_api": "^2.3.1", - "wa72/htmlpagedom": "^1.3 || ^2.0 || 3.0" - }, - "require-dev": { - "drupal/pdf_api": "*", - "smalot/pdfparser": "^1" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "3.0.2", - "datestamp": "1693234627", - "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": "Nigel Cunningham", - "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/quickedit", - "version": "1.0.3", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/quickedit.git", - "reference": "1.0.3" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/quickedit-1.0.3.zip", - "reference": "1.0.3", - "shasum": "2fb9eb812010743949dd7ec1a9fc0cff4c1fb4ce" - }, - "require": { - "drupal/core": "^9.4 || ^10" - }, - "require-dev": { - "drupal/ckeditor": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "1.0.3", - "datestamp": "1663069901", - "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": "Devin Carlson", - "homepage": "https://www.drupal.org/user/290182" - }, - { - "name": "dww", - "homepage": "https://www.drupal.org/user/46549" - }, - { - "name": "Gábor Hojtsy", - "homepage": "https://www.drupal.org/user/4166" - }, - { - "name": "jessebeach", - "homepage": "https://www.drupal.org/user/748566" - }, - { - "name": "nod_", - "homepage": "https://www.drupal.org/user/598310" - }, - { - "name": "tkoleary", - "homepage": "https://www.drupal.org/user/627430" - }, - { - "name": "webchick", - "homepage": "https://www.drupal.org/user/24967" - }, - { - "name": "Wim Leers", - "homepage": "https://www.drupal.org/user/99777" - } - ], - "description": "In-place content editing (contrib).", - "homepage": "https://www.drupal.org/project/quickedit", - "support": { - "source": "https://git.drupalcode.org/project/quickedit" - } - }, - { - "name": "drupal/r4032login", - "version": "2.2.1", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/r4032login.git", - "reference": "2.2.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/r4032login-2.2.1.zip", - "reference": "2.2.1", - "shasum": "b1ee040ec84a1feee28ed9ac6c8576f6e9edfd3a" - }, - "require": { - "drupal/core": "^9.3 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.2.1", - "datestamp": "1680284411", - "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": "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-beta11", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/rabbit_hole.git", - "reference": "8.x-1.0-beta11" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/rabbit_hole-8.x-1.0-beta11.zip", - "reference": "8.x-1.0-beta11", - "shasum": "a5c3bd5d1a190e25bb4d339525dd71918015fea2" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10" - }, - "require-dev": { - "drupal/commerce": "*", - "drupal/commerce_product": "*", - "drupal/file_entity": "*", - "drupal/group": "*", - "drupal/paragraphs-paragraphs_library": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.0-beta11", - "datestamp": "1670668459", - "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": "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": "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/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/preview_link" } }, { "name": "drupal/redirect", - "version": "1.9.0", + "version": "1.6.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/redirect.git", - "reference": "8.x-1.9" + "reference": "8.x-1.6" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.9.zip", - "reference": "8.x-1.9", - "shasum": "2987de20f509e9f7cec8a0f81d3a6774f9b0ba3e" + "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.6.zip", + "reference": "8.x-1.6", + "shasum": "f848e001deac8425ae57d4b9397087c491d37294" }, "require": { - "drupal/core": "^9.2 || ^10" + "drupal/core": "^8.8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.9", - "datestamp": "1693393506", + "version": "8.x-1.6", + "datestamp": "1589312204", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -15331,10 +8691,6 @@ "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" @@ -15348,16 +8704,16 @@ }, { "name": "drupal/redirect_404", - "version": "1.9.0", + "version": "1.6.0", "require": { - "drupal/core": "^9.2 || ^10", - "drupal/redirect": "*" + "drupal/core": "^8.8 || ^9", + "drupal/redirect": "self.version" }, "type": "metapackage", "extra": { "drupal": { - "version": "8.x-1.9", - "datestamp": "1693393506", + "version": "8.x-1.6", + "datestamp": "1589312204", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -15377,10 +8733,6 @@ "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" @@ -15394,30 +8746,30 @@ }, { "name": "drupal/regionincontent", - "version": "1.1.0", + "version": "dev-1.x", "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" + "reference": "4fd0de51df740df35be37c41f3fb069405030245" }, "require": { - "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.1", - "datestamp": "1699306875", + "version": "8.x-1.x-dev", + "datestamp": "1545088080", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Project has not opted into security advisory coverage!" } + }, + "patches_applied": { + "Region In Content Template": "https://www.drupal.org/files/issues/2020-06-06/regionincontent.1.x-dev.rector.patch" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -15425,10 +8777,6 @@ "GPL-2.0-or-later" ], "authors": [ - { - "name": "MegaKeegMan", - "homepage": "https://www.drupal.org/user/3620027" - }, { "name": "mlncn", "homepage": "https://www.drupal.org/user/64383" @@ -15438,156 +8786,35 @@ "homepage": "https://www.drupal.org/project/regionincontent", "support": { "source": "https://git.drupalcode.org/project/regionincontent" - } - }, - { - "name": "drupal/registration_role", - "version": "2.0.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/registration_role.git", - "reference": "2.0.0" }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/registration_role-2.0.0.zip", - "reference": "2.0.0", - "shasum": "3d3b9d1068e80a47e14e0e1d64498bf1e0d3075c" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.0", - "datestamp": "1689039865", - "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": "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" - } + "time": "2018-12-17T22:12:17+00:00" }, { "name": "drupal/riddler", - "version": "3.0.1", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/riddler.git", - "reference": "3.0.1" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/riddler-3.0.1.zip", - "reference": "3.0.1", - "shasum": "dc758aece996787a3429c61aa534df87ccf770a3" + "url": "https://ftp.drupal.org/files/projects/riddler-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "a52a0cb56bb927d17b103053570b7524c725e30b" }, "require": { - "drupal/captcha": "^2", - "drupal/core": "^10" + "drupal/captcha": "*", + "drupal/core": "~8.0" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "3.0.1", - "datestamp": "1686732873", + "version": "8.x-1.1", + "datestamp": "1534623481", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -15603,59 +8830,46 @@ "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" + "source": "https://git.drupalcode.org/project/riddler" } }, { "name": "drupal/role_delegation", - "version": "1.2.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/role_delegation.git", - "reference": "8.x-1.2" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/role_delegation-8.x-1.2.zip", - "reference": "8.x-1.2", - "shasum": "08095bada0f492e70d32fcf357a8c01825ca81fc" + "url": "https://ftp.drupal.org/files/projects/role_delegation-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "a63b548056cc729beacfd385625fafb983e0f73e" }, "require": { - "drupal/core": "^9.2 || ^10" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "8.x-1.2", - "datestamp": "1644487627", + "version": "8.x-1.1", + "datestamp": "1580498751", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -15673,8 +8887,8 @@ "role": "Maintainer" }, { - "name": "JeroenT", - "homepage": "https://www.drupal.org/user/2228934" + "name": "benjy", + "homepage": "https://www.drupal.org/user/1852732" } ], "description": "Allows site administrators to grant some roles the authority to assign selected roles to users.", @@ -15686,31 +8900,31 @@ }, { "name": "drupal/scheduler", - "version": "1.5.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/scheduler.git", - "reference": "8.x-1.5" + "reference": "8.x-1.3" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/scheduler-8.x-1.5.zip", - "reference": "8.x-1.5", - "shasum": "206a9b6e348273aa2cf97ba429d437112b47469b" + "url": "https://ftp.drupal.org/files/projects/scheduler-8.x-1.3.zip", + "reference": "8.x-1.3", + "shasum": "704f9e289c7a42ddfb65297beb0be02e324f02c6" }, "require": { - "drupal/core": "^8 || ^9 || ^10" + "drupal/core": "^8 || ^9" }, "require-dev": { - "drupal/devel_generate": "^2.0 || >=4", + "drupal/devel_generate": "^2.0 || 3.x-dev", "drupal/rules": "^3", - "drush/drush": ">=9" + "drush/drush": "^9.0 || ^10" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.5", - "datestamp": "1683719323", + "version": "8.x-1.3", + "datestamp": "1591436219", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -15718,7 +8932,7 @@ }, "drush": { "services": { - "drush.services.yml": "^9 || ^10" + "drush.services.yml": "^9" } } }, @@ -15755,92 +8969,28 @@ "issues": "https://www.drupal.org/project/issues/scheduler" } }, - { - "name": "drupal/schema_metatag", - "version": "2.5.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/schema_metatag.git", - "reference": "8.x-2.5" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/schema_metatag-8.x-2.5.zip", - "reference": "8.x-2.5", - "shasum": "543b9d624711379e29dde58c22e2cc0a66822c87" - }, - "require": { - "drupal/core": "^9.0 || ^10", - "drupal/metatag": "^1.0" - }, - "require-dev": { - "drupal/coder": "^8.3", - "drupal/metatag_views": "*", - "drupal/schema_article": "*", - "drupal/schema_organization": "*", - "phpcompatibility/php-compatibility": "^9.3" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-2.5", - "datestamp": "1687460392", - "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": "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", + "version": "1.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/scn.git", - "reference": "2.0.3" + "reference": "8.x-1.4" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/scn-2.0.3.zip", - "reference": "2.0.3", - "shasum": "f13d261528b5a61884ece9deb660c8e64c7d9ce7" + "url": "https://ftp.drupal.org/files/projects/scn-8.x-1.4.zip", + "reference": "8.x-1.4", + "shasum": "993d414e277bb99dc44bbb580c4a68687e9a7534" }, "require": { - "drupal/core": "^8 || ^9 || ^10" + "drupal/core": "^8.7.7 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.3", - "datestamp": "1689485714", + "version": "8.x-1.4", + "datestamp": "1589449016", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -15853,44 +9003,48 @@ ], "authors": [ { - "name": "Andrei Ivnitskii", - "homepage": "https://www.drupal.org/u/ivnish", - "role": "Maintainer" + "name": "ivnish", + "homepage": "https://www.drupal.org/user/3547706" } ], "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" + "source": "https://git.drupalcode.org/project/scn" } }, { "name": "drupal/search404", - "version": "2.1.2", + "version": "1.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/search404.git", - "reference": "2.1.2" + "reference": "8.x-1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/search404-2.1.2.zip", - "reference": "2.1.2", - "shasum": "1bd271486856e33a23c394849503477b97fbe25f" + "url": "https://ftp.drupal.org/files/projects/search404-8.x-1.0.zip", + "reference": "8.x-1.0", + "shasum": "9265e2f5faee198c764fa281a3c9668de5ef76fe" }, "require": { - "drupal/core": "^8 || ^9 || ^10" + "drupal/core": "*" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "2.1.2", - "datestamp": "1677067806", + "version": "8.x-1.0", + "datestamp": "1528785184", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } + }, + "patches_applied": { + "Remove search module dependency": "https://www.drupal.org/files/issues/2018-07-09/search404-core-search-dependency-9.patch" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -15902,38 +9056,10 @@ "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" @@ -15942,25 +9068,25 @@ "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" + "source": "http://cgit.drupalcode.org/search404" } }, { "name": "drupal/search_api", - "version": "1.31.0", + "version": "1.17.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/search_api.git", - "reference": "8.x-1.31" + "reference": "8.x-1.17" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.31.zip", - "reference": "8.x-1.31", - "shasum": "ec8436744c34de2ede6370d4dd26875489e761bc" + "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.17.zip", + "reference": "8.x-1.17", + "shasum": "a9f3352f1c8c893c7032c11f00a23f76b9733b56" }, "require": { - "drupal/core": "^10.0" + "drupal/core": "^8.8 || ^9" }, "conflict": { "drupal/search_api_solr": "2.* || 3.0 || 3.1" @@ -15978,8 +9104,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.31", - "datestamp": "1700926323", + "version": "8.x-1.17", + "datestamp": "1591128369", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -15987,13 +9113,13 @@ }, "drush": { "services": { - "drush.services.yml": "^9 || ^10 || ^11" + "drush.services.yml": "^9" } } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { @@ -16017,72 +9143,18 @@ "irc": "irc://irc.freenode.org/drupal-search-api" } }, - { - "name": "drupal/search_api_autocomplete", - "version": "1.8.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/search_api_autocomplete.git", - "reference": "8.x-1.8" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/search_api_autocomplete-8.x-1.8.zip", - "reference": "8.x-1.8", - "shasum": "80f75774776cee193624fe5731906e35bff160f6" - }, - "require": { - "drupal/core": "^9.2 || ^10", - "drupal/search_api": "^1.0" - }, - "require-dev": { - "drupal/search_api_page": "1.x-dev" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.8", - "datestamp": "1697366383", - "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.31.0", + "version": "1.17.0", "require": { - "drupal/core": "^10.0", - "drupal/search_api": "*" + "drupal/core": "^8.8 || ^9", + "drupal/search_api": "self.version" }, "type": "metapackage", "extra": { "drupal": { - "version": "8.x-1.31", - "datestamp": "1700926323", + "version": "8.x-1.17", + "datestamp": "1591128369", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -16094,6 +9166,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" @@ -16101,10 +9177,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.", @@ -16113,367 +9185,34 @@ "source": "https://git.drupalcode.org/project/search_api" } }, - { - "name": "drupal/search_api_entity_multiselect", - "version": "1.0.x-dev", - "source": { - "type": "git", - "url": "https://codeberg.org/agaric/search_api_entity_multiselect.git", - "reference": "8045ed91a6d4d2e62d9cddb217373a2b7dba3062" - }, - "default-branch": true, - "type": "drupal-module", - "license": [ - "GPL-2.0+" - ], - "description": "Create multiselect form field for entities", - "time": "2023-08-02T16:03:56+00:00" - }, - { - "name": "drupal/search_api_saved_searches", - "version": "1.0.0-beta1", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/search_api_saved_searches.git", - "reference": "8.x-1.0-beta1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/search_api_saved_searches-8.x-1.0-beta1.zip", - "reference": "8.x-1.0-beta1", - "shasum": "4650a8536cb7b1568b6e4f29b00c8d2461ca7ea5" - }, - "require": { - "drupal/core": "^9.2 || ^10", - "drupal/search_api": "^1.20" - }, - "require-dev": { - "drupal/facets": "@dev", - "drupal/search_api_page": "@dev" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.0-beta1", - "datestamp": "1703694223", - "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": "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.1", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/seckit.git", - "reference": "2.0.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/seckit-2.0.1.zip", - "reference": "2.0.1", - "shasum": "2eee3b9719bdd5951c2b78f419c86f4765010439" - }, - "require": { - "drupal/core": "^9.3 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.1", - "datestamp": "1671195208", - "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": "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": "http://cgit.drupalcode.org/seckit", - "issues": "http://drupal.org/project/issues/seckit" - } - }, - { - "name": "drupal/select_or_other", - "version": "4.1.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/select_or_other.git", - "reference": "4.1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/select_or_other-4.1.0.zip", - "reference": "4.1.0", - "shasum": "ff73f610623c16ee27ac2afdc2f18e3d3d934081" - }, - "require": { - "drupal/core": "^8.8 || ^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "4.1.0", - "datestamp": "1686871176", - "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": "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/seven", - "version": "1.0.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/seven.git", - "reference": "1.0.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/seven-1.0.0.zip", - "reference": "1.0.0", - "shasum": "88e86926388c7e6cf66b0502d13a0470ce2399cd" - }, - "require": { - "drupal/core": "^9 || ^10" - }, - "type": "drupal-theme", - "extra": { - "drupal": { - "version": "1.0.0", - "datestamp": "1683652106", - "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": "mcrittenden", - "homepage": "https://www.drupal.org/user/420631" - }, - { - "name": "mrfelton", - "homepage": "https://www.drupal.org/user/305669" - }, - { - "name": "TravisCarden", - "homepage": "https://www.drupal.org/user/236758" - } - ], - "description": "The Seven theme from Drupal 8/9 moved to contrib", - "homepage": "https://www.drupal.org/project/seven", - "support": { - "source": "https://git.drupalcode.org/project/seven" - } - }, - { - "name": "drupal/shield", - "version": "1.7.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/shield.git", - "reference": "8.x-1.7" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/shield-8.x-1.7.zip", - "reference": "8.x-1.7", - "shasum": "dcb77778aaffd39a9bb80c123f086358ad1c8bf9" - }, - "require": { - "drupal/core": "^9.2 || ^10" - }, - "require-dev": { - "drupal/key": "^1.16" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.7", - "datestamp": "1661968920", - "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.8.0", + "version": "1.5.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/similarterms.git", - "reference": "8.x-1.8" + "reference": "8.x-1.5" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/similarterms-8.x-1.8.zip", - "reference": "8.x-1.8", - "shasum": "12a28514dfee98bb723e6eed772f5eeeb525de54" + "url": "https://ftp.drupal.org/files/projects/similarterms-8.x-1.5.zip", + "reference": "8.x-1.5", + "shasum": "78371fbdfbb610d6403457220f5b144558636474" }, "require": { - "drupal/core": "^8 || ^9 || ^10" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.8", - "datestamp": "1699725697", + "version": "8.x-1.5", + "datestamp": "1595442658", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } - } + }, + "patches_applied": [] }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ @@ -16481,12 +9220,12 @@ ], "authors": [ { - "name": "rmiddle", - "homepage": "https://www.drupal.org/user/192183" + "name": "ericpugh", + "homepage": "https://www.drupal.org/user/130084" }, { - "name": "shelane", - "homepage": "https://www.drupal.org/user/2674989" + "name": "rmiddle", + "homepage": "https://www.drupal.org/user/192183" }, { "name": "takim", @@ -16501,145 +9240,26 @@ }, { "name": "drupal/skins", - "version": "2.0.0-alpha1", + "version": "1.0.0-rc1", "source": { "type": "git", "url": "https://git.drupalcode.org/project/skins.git", - "reference": "2.0.0-alpha1" + "reference": "8.x-1.0-rc1" }, "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/skins-8.x-1.0-rc1.zip", + "reference": "8.x-1.0-rc1", + "shasum": "46b18de0b68487cf7620c3b0d87276b3bb8045b8" }, "require": { - "drupal/core": "^9.3 || ^10" + "drupal/core": "^8.8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.0-alpha1", - "datestamp": "1687484216", - "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": "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.0.3", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/smart_date.git", - "reference": "4.0.3" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/smart_date-4.0.3.zip", - "reference": "4.0.3", - "shasum": "9f8fd56690eae5b5ae7231ab17641fa1d57ec261" - }, - "require": { - "drupal/core": "^9 || ^10", - "php": ">=8.0", - "simshaun/recurr": "^5" - }, - "suggest": { - "drupal/multiple_fields_remove_button": "Provides a button for editors to remove unwanted rows." - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "4.0.3", - "datestamp": "1689755800", - "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.2.0-rc1", - "require": { - "drupal/core": "^9.5 || ^10", - "drupal/dynamic_entity_reference": "^3 || ^4", - "drupal/smsframework": "^2", - "php": ">=8" - }, - "type": "metapackage", - "extra": { - "drupal": { - "version": "2.2.0-rc1", - "datestamp": "1670241566", + "version": "8.x-1.0-rc1", + "datestamp": "1593962621", "security-coverage": { "status": "not-covered", "message": "RC releases are not covered by Drupal security advisories." @@ -16652,181 +9272,42 @@ ], "authors": [ { - "name": "Aniebiet Udoh", - "homepage": "https://www.drupal.org/u/almaudoh", - "role": "Maintainer" + "name": "Poieo", + "homepage": "https://www.drupal.org/user/303228" }, { - "name": "Daniel Phin", - "homepage": "http://danielph.in", - "role": "Maintainer" - }, - { - "name": "dpi", - "homepage": "https://www.drupal.org/user/81431" + "name": "nedjo", + "homepage": "https://www.drupal.org/user/4481" } ], - "description": "Provides an extensible API that facilitates communication between Drupal and various SMS gateways.", - "homepage": "http://drupal.org/project/smsframework", + "description": "Enable themes or modules to provide a set of skins with distinct stylesheets and templates.", + "homepage": "https://www.drupal.org/project/skins", "support": { - "source": "https://git.drupalcode.org/project/smsframework", - "issues": "https://www.drupal.org/project/issues/smsframework" - } - }, - { - "name": "drupal/smsframework", - "version": "2.1.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/smsframework.git", - "reference": "2.1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/smsframework-2.1.0.zip", - "reference": "2.1.0", - "shasum": "a929db8db5ed2b82b87d371e36d746bd1270a7e3" - }, - "require": { - "drupal/core": ">=9.2" - }, - "require-dev": { - "drupal/dynamic_entity_reference": "*", - "drupal/sms": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.1.0", - "datestamp": "1670240395", - "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": "almaudoh", - "homepage": "https://www.drupal.org/user/488082" - }, - { - "name": "batje", - "homepage": "https://www.drupal.org/user/2696" - }, - { - "name": "dpi", - "homepage": "https://www.drupal.org/user/81431" - } - ], - "homepage": "https://www.drupal.org/project/smsframework", - "support": { - "source": "https://git.drupalcode.org/project/smsframework" - } - }, - { - "name": "drupal/social_api", - "version": "3.1.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/social_api.git", - "reference": "3.1.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/social_api-3.1.0.zip", - "reference": "3.1.0", - "shasum": "ceb8b35f718657a8f3d67d2e9a8384d4b35687ea" - }, - "require": { - "drupal/core": "^9.1 || ^10", - "ext-openssl": "*", - "league/oauth2-client": "^2.0" - }, - "require-dev": { - "drupal/coder": "^8.3", - "phpcompatibility/php-compatibility": "^9.3" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "3.1.0", - "datestamp": "1660188487", - "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" + "source": "https://git.drupalcode.org/project/skins" } }, { "name": "drupal/social_media_links", - "version": "2.9.0", + "version": "2.7.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/social_media_links.git", - "reference": "8.x-2.9" + "reference": "8.x-2.7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/social_media_links-8.x-2.9.zip", - "reference": "8.x-2.9", - "shasum": "d73ea6199b48e11e57fe8a2aeb2afbf3c295704a" + "url": "https://ftp.drupal.org/files/projects/social_media_links-8.x-2.7.zip", + "reference": "8.x-2.7", + "shasum": "132db954d880c743bd6316f7fecd0b085bb73f91" }, "require": { - "drupal/core": "^8 || ^9 || ^10" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.9", - "datestamp": "1665768361", + "version": "8.x-2.7", + "datestamp": "1595616928", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -16844,9 +9325,8 @@ "role": "Maintainer" }, { - "name": "Christian Beier", - "homepage": "https://www.drupal.org/u/cbeier", - "role": "Maintainer" + "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.", @@ -16856,299 +9336,32 @@ "issues": "https://www.drupal.org/project/issues/social_media_links" } }, - { - "name": "drupal/social_post", - "version": "3.0.1", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/social_post.git", - "reference": "3.0.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/social_post-3.0.1.zip", - "reference": "3.0.1", - "shasum": "9976ba61dcba635f09d5d499ea6cb4ee9122cbe6" - }, - "require": { - "drupal/core": "^8.8 || ^9.0 || ^10", - "drupal/social_api": "^3" - }, - "require-dev": { - "drupal/coder": "^8.3", - "phpcompatibility/php-compatibility": "10.x-dev" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "3.0.1", - "datestamp": "1665165035", - "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": "6286f5bc5891c08665b5a14390b746634435e1f5" - }, - "require": { - "agaric/php-facebook": "dev-main", - "drupal/core": "^8 || ^9 || ^10", - "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": "1707335201", - "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": "18ade93bd62d2ceaf0d9dc927371fd847e37a0b7" - }, - "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-beta4+1-dev", - "datestamp": "1665164947", - "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/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/stripe", - "version": "2.0.0-beta4", + "version": "1.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/stripe.git", - "reference": "2.0.0-beta4" + "reference": "8.x-1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/stripe-2.0.0-beta4.zip", - "reference": "2.0.0-beta4", - "shasum": "fda2de1e566690b86044832af3b105a783c13369" + "url": "https://ftp.drupal.org/files/projects/stripe-8.x-1.0.zip", + "reference": "8.x-1.0", + "shasum": "de84804416c278ea90d13ba7c824e23483349a1f" }, "require": { - "drupal/core": "^9 || ^10", + "drupal/core": "^8 || ^9", "stripe/stripe-php": "^7.0" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.0.0-beta4", - "datestamp": "1678224485", + "version": "8.x-1.0", + "datestamp": "1598551119", "security-coverage": { - "status": "not-covered", - "message": "Beta releases are not covered by Drupal security advisories." + "status": "covered", + "message": "Covered by Drupal's security advisory policy" } } }, @@ -17157,6 +9370,10 @@ "GPL-2.0+" ], "authors": [ + { + "name": "Sebastien @Hubside", + "homepage": "https://www.drupal.org/user/380104" + }, { "name": "hamrant", "homepage": "https://www.drupal.org/user/3204205" @@ -17165,10 +9382,6 @@ "name": "hanoii", "homepage": "https://www.drupal.org/user/23157" }, - { - "name": "heddn", - "homepage": "https://www.drupal.org/user/1463982" - }, { "name": "lliss", "homepage": "https://www.drupal.org/user/724750" @@ -17185,10 +9398,6 @@ "name": "scotthooker", "homepage": "https://www.drupal.org/user/1347442" }, - { - "name": "Sebastien M.", - "homepage": "https://www.drupal.org/user/380104" - }, { "name": "sirkitree", "homepage": "https://www.drupal.org/user/59025" @@ -17218,32 +9427,32 @@ }, { "name": "drupal/stripe_webform", - "version": "2.0.0-beta4", + "version": "dev-1.x", "source": { "type": "git", "url": "https://git.drupalcode.org/project/stripe_webform.git", - "reference": "2.0.0-beta4" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/stripe_webform-2.0.0-beta4.zip", - "reference": "2.0.0-beta4", - "shasum": "050d409e1d3747eb1671e4a5f211bb7975fae2cb" + "reference": "27195c21e1f545f0b2c0edac275deb06812b8d11" }, "require": { - "drupal/core": "^8.8 || ^9 || ^10", - "drupal/stripe": "^2.0.0", + "drupal/core": "~8.0", + "drupal/stripe": "*", "drupal/webform": "*" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + }, "drupal": { - "version": "2.0.0-beta4", - "datestamp": "1677789872", + "version": "8.x-1.1+1-dev", + "datestamp": "1557924186", "security-coverage": { "status": "not-covered", - "message": "Beta releases are not covered by Drupal security advisories." + "message": "Dev releases are not covered by Drupal security advisories." } + }, + "patches_applied": { + "Automated Drupal 9 compatibility fixes": "https://www.drupal.org/files/issues/2020-09-09/stripe_webform.1.x-dev.rector.patch" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -17254,96 +9463,40 @@ { "name": "hanoii", "homepage": "https://www.drupal.org/user/23157" - }, - { - "name": "heddn", - "homepage": "https://www.drupal.org/user/1463982" } ], "description": "Provides a stripe webform element and default handlers", "homepage": "https://www.drupal.org/project/stripe_webform", "support": { "source": "https://git.drupalcode.org/project/stripe_webform" - } - }, - { - "name": "drupal/subpathauto", - "version": "1.3.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/subpathauto.git", - "reference": "8.x-1.3" }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/subpathauto-8.x-1.3.zip", - "reference": "8.x-1.3", - "shasum": "b94e4ec3c8dcd42aa04b6796ae48a9aa1848862d" - }, - "require": { - "drupal/core": "^8.8 || ^9 || ^10" - }, - "require-dev": { - "drupal/redirect": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.3", - "datestamp": "1676316639", - "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" - } + "time": "2019-05-15T12:41:19+00:00" }, { "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." @@ -17352,113 +9505,52 @@ }, "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" + "source": "http://cgit.drupalcode.org/subprofiles" } }, { - "name": "drupal/super_login", - "version": "2.1.2", + "name": "drupal/swiftmailer", + "version": "1.0.0-beta2", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/super_login.git", - "reference": "2.1.2" + "url": "https://git.drupalcode.org/project/swiftmailer.git", + "reference": "8.x-1.0-beta2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/super_login-2.1.2.zip", - "reference": "2.1.2", - "shasum": "28c0667ea9ad0bfb689a5a17e9b2a8b186426397" + "url": "https://ftp.drupal.org/files/projects/swiftmailer-8.x-1.0-beta2.zip", + "reference": "8.x-1.0-beta2", + "shasum": "a63a91e7816a06bf8e52ac9b5e48a892a1e6b1d4" }, "require": { - "drupal/core": "^8.8 || ^9 || ^10" + "drupal/core": "~8.0", + "drupal/mailsystem": "*", + "html2text/html2text": "~4.0.1", + "swiftmailer/swiftmailer": "~5.4.5" }, "type": "drupal-module", "extra": { "drupal": { - "version": "2.1.2", - "datestamp": "1691620459", + "version": "8.x-1.0-beta2", + "datestamp": "1519655459", "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": "3CWebDev", - "homepage": "https://www.drupal.org/user/61221" - } - ], - "description": "Improves the Drupal login and registration forms.", - "homepage": "https://www.drupal.org/project/super_login", - "support": { - "source": "https://git.drupalcode.org/project/super_login" - } - }, - { - "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" + "status": "not-covered", + "message": "Beta releases are not covered by Drupal security advisories." } } }, @@ -17468,200 +9560,65 @@ ], "authors": [ { - "name": "AswathyAjish", - "homepage": "https://www.drupal.org/user/2584696" + "name": "AdamPS", + "homepage": "https://www.drupal.org/user/2650563" }, { - "name": "colan", - "homepage": "https://www.drupal.org/user/58704" + "name": "Anybody", + "homepage": "https://www.drupal.org/user/291091" }, { - "name": "neethups", - "homepage": "https://www.drupal.org/user/3516137" + "name": "B-Prod", + "homepage": "https://www.drupal.org/user/407852" }, { - "name": "sajiniantony", - "homepage": "https://www.drupal.org/user/2603884" + "name": "geek-merlin", + "homepage": "https://www.drupal.org/user/229048" }, { - "name": "TolstoyDotCom", - "homepage": "https://www.drupal.org/user/103055" + "name": "sbrattla", + "homepage": "https://www.drupal.org/user/53422" }, { - "name": "vuil", - "homepage": "https://www.drupal.org/user/3568458" + "name": "webflo", + "homepage": "https://www.drupal.org/user/254778" } ], - "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" - ], + "description": "Swiftmailer", + "homepage": "https://www.drupal.org/project/swiftmailer", "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.9", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/taxonomy_manager.git", - "reference": "2.0.9" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/taxonomy_manager-2.0.9.zip", - "reference": "2.0.9", - "shasum": "c1956d809ba2149b294eb68fe2f06ada34f4cadc" - }, - "require": { - "drupal/core": "^9.3 || ^10", - "drupal/jquery_ui": "^1.4" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.9", - "datestamp": "1691588453", - "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": "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": "This module provides a powerful interface for managing taxonomies.", - "homepage": "https://www.drupal.org/project/taxonomy_manager", - "keywords": [ - "Drupal" - ], - "support": { - "source": "https://git.drupalcode.org/project/taxonomy_manager", - "issues": "https://www.drupal.org/project/issues/taxonomy_manager" - } - }, - { - "name": "drupal/telegram_api", - "version": "1.0.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/telegram_api.git", - "reference": "1.0.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/telegram_api-1.0.0.zip", - "reference": "1.0.0", - "shasum": "d1825eb653389fe35e6085d066442dbb910b5c2c" - }, - "require": { - "drupal/core": "^9 || ^10", - "ext-curl": "*" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "1.0.0", - "datestamp": "1685431953", - "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": "Add some telegram integration for your site.", - "homepage": "https://www.drupal.org/project/telegram_api", - "support": { - "source": "https://git.drupalcode.org/project/telegram_api", - "issues": "https://www.drupal.org/project/issues/telegram_api" + "source": "https://git.drupalcode.org/project/swiftmailer" } }, { "name": "drupal/textarea_widget_for_text", - "version": "1.3.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/textarea_widget_for_text.git", - "reference": "8.x-1.3" + "reference": "8.x-1.1" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/textarea_widget_for_text-8.x-1.3.zip", - "reference": "8.x-1.3", - "shasum": "4bd7c1b0eb25574efa1b959636eb7445f6ba5596" + "url": "https://ftp.drupal.org/files/projects/textarea_widget_for_text-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "2b5dd3b90fb01695c8173aa37c5934f98527de7d" }, "require": { - "drupal/core": "^8 || ^9 || ^10" + "drupal/core": "^8" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.3", - "datestamp": "1699891368", + "version": "8.x-1.1", + "datestamp": "1513904284", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } + }, + "patches_applied": { + "Automated Drupal Rector fixes": "https://www.drupal.org/files/issues/2020-05-23/textarea_widget_for_text.1.1.rector.patch" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -17669,10 +9626,6 @@ "GPL-2.0-or-later" ], "authors": [ - { - "name": "gnuget", - "homepage": "https://www.drupal.org/user/992990" - }, { "name": "junaidpv", "homepage": "https://www.drupal.org/user/255728" @@ -17690,26 +9643,26 @@ }, { "name": "drupal/token", - "version": "1.13.0", + "version": "1.7.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/token.git", - "reference": "8.x-1.13" + "reference": "8.x-1.7" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/token-8.x-1.13.zip", - "reference": "8.x-1.13", - "shasum": "f2a074b51726de3727c1d900237d6d471806a4d2" + "url": "https://ftp.drupal.org/files/projects/token-8.x-1.7.zip", + "reference": "8.x-1.7", + "shasum": "c7e3a3757282e4c94e3c1fff08d01e22155cb853" }, "require": { - "drupal/core": "^9.2 || ^10" + "drupal/core": "^8.7.7 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.13", - "datestamp": "1697885927", + "version": "8.x-1.7", + "datestamp": "1587893588", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -17717,13 +9670,13 @@ }, "drush": { "services": { - "drush.services.yml": ">=9" + "drush.services.yml": "^9 || ^10" } } }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { @@ -17758,188 +9711,27 @@ } }, { - "name": "drupal/tomselect", - "version": "dev-1.0.x", + "name": "drupal/twigsuggest", + "version": "dev-1.x", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/tomselect.git", - "reference": "745ac18bc0ff358574891e875026923dcae563b8" + "url": "https://git.drupalcode.org/project/twigsuggest.git", + "reference": "ba046efc221688e1dacd77d1f6b9cccd715aa7e1" }, "require": { - "drupal/core": "^8.8 || ^9 || ^10" + "drupal/core": "^8 || ^9" }, "type": "drupal-module", "extra": { "branch-alias": { - "dev-1.0.x": "1.0.x-dev" + "dev-1.x": "1.x-dev" }, "drupal": { - "version": "1.0.0-alpha1+1-dev", - "datestamp": "1704733540", + "version": "8.x-1.0-beta1+4-dev", + "datestamp": "1592181211", "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": "lelkneralfaro", - "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.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/trim.git", - "reference": "2.0.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/trim-2.0.0.zip", - "reference": "2.0.0", - "shasum": "7550d1c93c4694e4e1221d3cbd5577db31fabace" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "2.0.0", - "datestamp": "1695245036", - "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": "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.2.1", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/twig_tweak.git", - "reference": "3.2.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/twig_tweak-3.2.1.zip", - "reference": "3.2.1", - "shasum": "89fc08b60f494a7d786251b6c2c493c536218222" - }, - "require": { - "drupal/core": "^9.3 || ^10.0", - "ext-json": "*", - "php": ">=7.3", - "symfony/polyfill-php80": "^1.17", - "twig/twig": "^2.12 || ^3.3.8" - }, - "suggest": { - "symfony/var-dumper": "Better dump() function for debugging Twig variables" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "3.2.1", - "datestamp": "1677404306", - "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": "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": "1.0.0-rc2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/twigsuggest.git", - "reference": "8.x-1.0-rc2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/twigsuggest-8.x-1.0-rc2.zip", - "reference": "8.x-1.0-rc2", - "shasum": "69d765e40b9eb2e423d63378c69acf8a0248bffb" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.0-rc2", - "datestamp": "1682360823", - "security-coverage": { - "status": "not-covered", - "message": "RC releases are not covered by Drupal security advisories." + "message": "Dev releases are not covered by Drupal security advisories." } } }, @@ -17949,17 +9741,13 @@ ], "authors": [ { - "name": "beunerd", + "name": "beuner", "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" @@ -17977,73 +9765,107 @@ "support": { "source": "https://git.drupalcode.org/project/twigsuggest.git", "issues": "https://www.drupal.org/project/issues/twigsuggest" - } + }, + "time": "2020-08-18T05:41:00+00:00" }, { "name": "drupal/ui_patterns", - "version": "1.8.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/ui_patterns.git", - "reference": "8.x-1.8" + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/ui_patterns-8.x-1.8.zip", - "reference": "8.x-1.8", - "shasum": "120d90db34296500a1ae8094cd0cc23983e951ab" + "url": "https://ftp.drupal.org/files/projects/ui_patterns-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "c792d38a1511e1c24386af5a8da8181d0394b824" }, "require": { - "drupal/core": "^9 || ^10" + "drupal/core": "^8 || ^9" }, "require-dev": { - "drupal/ds": "^3.18", - "drupal/field_group": "^3.4" + "composer/installers": "^1.2", + "cweagans/composer-patches": "~1.4", + "drupal/config_devel": "~1", + "drupal/core-composer-scaffold": "^8.0", + "drupal/core-dev": "^8.0", + "drupal/core-recommended": "~9.0", + "drupal/ds": "~3", + "drupal/field_group": "~3", + "drupal/page_manager": "*", + "drupal/panels": "~4", + "drupal/paragraphs": "~1", + "drupal/token": "~1", + "drush/drush": "~10", + "openeuropa/task-runner": "~1.0-beta3", + "phpro/grumphp": "~0.14" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.8", - "datestamp": "1706780549", + "version": "8.x-1.2", + "datestamp": "1591882155", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" } + }, + "composer-exit-on-patch-failure": true, + "enable-patching": true, + "drupal-scaffold": { + "locations": { + "web-root": "build/" + } + }, + "installer-paths": { + "build/core": [ + "type:drupal-core" + ], + "build/modules/contrib/{$name}": [ + "type:drupal-module" + ], + "build/profiles/contrib/{$name}": [ + "type:drupal-profile" + ], + "build/themes/contrib/{$name}": [ + "type:drupal-theme" + ] + } + }, + "autoload": { + "psr-4": { + "Drupal\\ui_patterns\\": "./src" + } + }, + "autoload-dev": { + "psr-4": { + "Drupal\\Tests\\ui_patterns\\": "./tests/src" } }, "notification-url": "https://packages.drupal.org/8/downloads", + "scripts": { + "post-install-cmd": [ + "./vendor/bin/run drupal:site-setup" + ], + "post-update-cmd": [ + "./vendor/bin/run drupal:site-setup" + ] + }, "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { - "name": "ademarco", - "homepage": "https://www.drupal.org/user/186696" + "name": "Nuvole Web", + "homepage": "https://www.drupal.org/user/186696", + "email": "info@nuvole.org" }, { "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": "pdureau", - "homepage": "https://www.drupal.org/user/1903334" - }, { "name": "pescetti", "homepage": "https://www.drupal.org/user/436244" @@ -18051,223 +9873,51 @@ ], "description": "UI Patterns.", "homepage": "https://www.drupal.org/project/ui_patterns", + "keywords": [ + "drupal", + "ui", + "web" + ], "support": { "source": "https://git.drupalcode.org/project/ui_patterns" } }, { - "name": "drupal/ui_patterns_ds", - "version": "1.8.0", - "require": { - "drupal/core": "^9 || ^10", - "drupal/ds": "*", - "drupal/ui_patterns": "*" - }, - "type": "metapackage", - "extra": { - "drupal": { - "version": "8.x-1.8", - "datestamp": "1706780549", - "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": "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": "1.8.0", - "require": { - "drupal/core": "^9 || ^10", - "drupal/ui_patterns": "*" - }, - "type": "metapackage", - "extra": { - "drupal": { - "version": "8.x-1.8", - "datestamp": "1706780549", - "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": "pdureau", - "homepage": "https://www.drupal.org/user/1903334" - }, - { - "name": "pescetti", - "homepage": "https://www.drupal.org/user/436244" - } - ], - "description": "Use patterns as layouts via the Layout Discovery module.", - "homepage": "https://www.drupal.org/project/ui_patterns", - "support": { - "source": "https://git.drupalcode.org/project/ui_patterns" - } - }, - { - "name": "drupal/ui_patterns_library", - "version": "1.8.0", - "require": { - "drupal/core": "^9 || ^10", - "drupal/ui_patterns": "*" - }, - "type": "metapackage", - "extra": { - "drupal": { - "version": "8.x-1.8", - "datestamp": "1706780549", - "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": "pdureau", - "homepage": "https://www.drupal.org/user/1903334" - }, - { - "name": "pescetti", - "homepage": "https://www.drupal.org/user/436244" - } - ], - "description": "Exposed patterns in you modules and themes and display them in a pattern library page.", - "homepage": "https://www.drupal.org/project/ui_patterns", - "support": { - "source": "https://git.drupalcode.org/project/ui_patterns" - } - }, - { - "name": "drupal/unique_content_field_validation", - "version": "1.1.1", + "name": "drupal/upgrade_status", + "version": "2.9.0", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/unique_content_field_validation.git", - "reference": "1.1.1" + "url": "https://git.drupalcode.org/project/upgrade_status.git", + "reference": "8.x-2.9" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/unique_content_field_validation-1.1.1.zip", - "reference": "1.1.1", - "shasum": "a6fdc0b33e3a022fbc8f2decc8b0488ebe79cb82" + "url": "https://ftp.drupal.org/files/projects/upgrade_status-8.x-2.9.zip", + "reference": "8.x-2.9", + "shasum": "3751062ba6192cbed94c3c970fa3adbe308fb450" }, "require": { - "drupal/core": "^9.1 || ^10" + "drupal/core": "^8.7.7 || ^9", + "mathieuviossat/arraytotexttable": "~1.0.0", + "mglaman/phpstan-drupal": "^0.12.0", + "nikic/php-parser": "^4.0.0", + "phpstan/phpstan-deprecation-rules": "^0.12.0", + "webflo/drupal-finder": "^1.2" }, "type": "drupal-module", "extra": { "drupal": { - "version": "1.1.1", - "datestamp": "1688169108", + "version": "8.x-2.9", + "datestamp": "1592678651", "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", @@ -18276,40 +9926,58 @@ ], "authors": [ { - "name": "Fabian Sierra", - "homepage": "https://www.drupal.org/u/fabiansierra5191", - "role": "Maintainer" + "name": "Gábor Hojtsy", + "homepage": "https://www.drupal.org/user/4166" + }, + { + "name": "colan", + "homepage": "https://www.drupal.org/user/58704" + }, + { + "name": "herczogzoltan", + "homepage": "https://www.drupal.org/user/3528391" + }, + { + "name": "sun", + "homepage": "https://www.drupal.org/user/54136" + }, + { + "name": "webchick", + "homepage": "https://www.drupal.org/user/24967" + }, + { + "name": "xjm", + "homepage": "https://www.drupal.org/user/65776" } ], - "description": "Validate the uniqueness of the entities fields or title.", - "homepage": "http://drupal.org/project/unique_content_field_validation", + "description": "Review current status of known Drupal 9 incompatibilities on the site.", + "homepage": "http://drupal.org/project/upgrade_status", "support": { - "source": "https://cgit.drupalcode.org/unique_content_field_validation", - "issues": "https://drupal.org/project/issues/unique_content_field_validation" + "source": "https://git.drupalcode.org/project/upgrade_status" } }, { "name": "drupal/variationcache", - "version": "1.5.0", + "version": "1.0.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/variationcache.git", - "reference": "8.x-1.5" + "reference": "8.x-1.0" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/variationcache-8.x-1.5.zip", - "reference": "8.x-1.5", - "shasum": "6165baee8c6fe5a7773f3499896e8fb464607a32" + "url": "https://ftp.drupal.org/files/projects/variationcache-8.x-1.0.zip", + "reference": "8.x-1.0", + "shasum": "302bcd0bc4d7c12a9d18ad4f531d1c65fdac65b1" }, "require": { - "drupal/core": "^9.5 || ^10" + "drupal/core": "^8.8 || ^9" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.5", - "datestamp": "1705485386", + "version": "8.x-1.0", + "datestamp": "1588927568", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -18341,31 +10009,30 @@ }, { "name": "drupal/video_embed_field", - "version": "2.5.0", + "version": "2.4.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/video_embed_field.git", - "reference": "8.x-2.5" + "reference": "8.x-2.4" }, "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" + "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.4.zip", + "reference": "8.x-2.4", + "shasum": "96b14bb93c1bb6a07b84315a4f87367870f8b574" }, "require": { - "drupal/core": "^9.2 || ^10" + "drupal/core": "^8.8 || ^9" }, "require-dev": { - "drupal/ckeditor": "^1", - "drupal/colorbox": "^2", + "drupal/colorbox": "^1.0", "drupal/video_embed_media": "*" }, "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-2.5", - "datestamp": "1671413311", + "version": "8.x-2.4", + "datestamp": "1587686284", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -18374,12 +10041,12 @@ }, "notification-url": "https://packages.drupal.org/8/downloads", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { - "name": "abhinesh", - "homepage": "https://www.drupal.org/user/3645979" + "name": "Sam152", + "homepage": "https://www.drupal.org/user/1485048" }, { "name": "jec006", @@ -18388,10 +10055,6 @@ { "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.", @@ -18400,385 +10063,117 @@ "source": "https://git.drupalcode.org/project/video_embed_field" } }, - { - "name": "drupal/view_password", - "version": "6.0.3", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/view_password.git", - "reference": "6.0.3" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/view_password-6.0.3.zip", - "reference": "6.0.3", - "shasum": "e1a3fb300f7ce22d003eadd22a30a02b51417c5f" - }, - "require": { - "drupal/core": "^8 || ^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "6.0.3", - "datestamp": "1677609028", - "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.1.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/view_unpublished.git", - "reference": "8.x-1.1" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/view_unpublished-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "f9f5e88cbaf1a1e71952d94cf67ef2f180e292be" - }, - "require": { - "drupal/core": "^9.4 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.1", - "datestamp": "1681757575", - "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_daterange_filters", - "version": "1.0.0-alpha2", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/views_daterange_filters.git", - "reference": "8.x-1.0-alpha2" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/views_daterange_filters-8.x-1.0-alpha2.zip", - "reference": "8.x-1.0-alpha2", - "shasum": "db49e4478723d7c0be7f6cf01d03ab667285b4a1" - }, - "require": { - "drupal/core": "^8.7.7 || ^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-1.0-alpha2", - "datestamp": "1676585416", - "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": "imclean", - "homepage": "https://www.drupal.org/user/112588" - } - ], - "description": "Views filters for date ranges.", - "homepage": "https://www.drupal.org/project/views_daterange_filters", - "support": { - "source": "https://git.drupalcode.org/project/views_daterange_filters" - } - }, - { - "name": "drupal/views_field_compare", - "version": "1.0.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/views_field_compare.git", - "reference": "1.0.0" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/views_field_compare-1.0.0.zip", - "reference": "1.0.0", - "shasum": "3660611c5e81bfecab1cfb98fb96883171167fa6" - }, - "require": { - "drupal/core": "^8.8 || ^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "1.0.0", - "datestamp": "1662526624", - "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": "jlscott", - "homepage": "https://www.drupal.org/user/213325" - } - ], - "description": "Provide views filter plugins for comparing two database fields.", - "homepage": "https://www.drupal.org/project/views_field_compare", - "support": { - "source": "https://git.drupalcode.org/project/views_field_compare" - } - }, - { - "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", + "version": "2.0.0-beta2", "source": { "type": "git", "url": "https://git.drupalcode.org/project/viewsreference.git", - "reference": "2ee107cd681a00f26ffe5382660d2298283ec978" + "reference": "8.x-2.0-beta2" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/viewsreference-8.x-2.0-beta2.zip", + "reference": "8.x-2.0-beta2", + "shasum": "146bf8c68e6cbb3805b4368b508d43931fe77c67" }, "require": { - "drupal/core": "^9.3 || ^10", - "php": "^7.0|^8.0" + "drupal/core": "^8 || ^9" }, "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", + "version": "8.x-2.0-beta2", + "datestamp": "1597241500", "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." } - }, - "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+" + "GPL-2.0-or-later" ], "authors": [ { - "name": "joekers", - "homepage": "https://www.drupal.org/user/2229066" + "name": "New Zeal", + "homepage": "https://www.drupal.org/user/93571" }, { - "name": "NewZeal", - "homepage": "https://www.drupal.org/user/93571" + "name": "jasonawant", + "homepage": "https://www.drupal.org/user/589890" + }, + { + "name": "joekers", + "homepage": "https://www.drupal.org/user/2229066" }, { "name": "seanB", "homepage": "https://www.drupal.org/user/545912" } ], - "description": "Views Reference", + "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" + "source": "https://git.drupalcode.org/project/viewsreference", + "issues": "https://www.drupal.org/project/issues/viewsreference" } }, { "name": "drupal/webform", - "version": "6.2.2", + "version": "6.0.0-alpha16", "source": { "type": "git", "url": "https://git.drupalcode.org/project/webform.git", - "reference": "6.2.2" + "reference": "6.0.0-alpha16" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/webform-6.2.2.zip", - "reference": "6.2.2", - "shasum": "cfd766802232dfdf39edd5a1acf7c738d14dc6eb" + "url": "https://ftp.drupal.org/files/projects/webform-6.0.0-alpha16.zip", + "reference": "6.0.0-alpha16", + "shasum": "6652fb4f50dc7168b1ace5fe24fbad2945f22754" }, "require": { - "drupal/core": "^9.4 || ^10", - "php": ">=8.1" + "drupal/core": "^8.8 || ^9", + "drupal/jquery_ui": "~1.0", + "drupal/jquery_ui_tabs": "~1.0", + "drupal/jquery_ui_tooltip": "~1.0" }, "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/address": "~1.0", + "drupal/bootstrap": "~3.0", + "drupal/captcha": "~1.0", + "drupal/clientside_validation": "~3.0", "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_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/devel": "~3.0", + "drupal/entity": "~1.0", + "drupal/entity_print": "~2.0", + "drupal/gnode": "*", + "drupal/group": "1.0", + "drupal/jquery_ui_checkboxradio": "~1.0", + "drupal/jquery_ui_datepicker": "~1.0", + "drupal/lingotek": "~3.0", + "drupal/mailsystem": "~4.0", + "drupal/paragraphs": "~1.0", + "drupal/select2": "~1.0", + "drupal/smtp": "~1.0", + "drupal/styleguide": "~1.0", + "drupal/telephone_validation": "~2.0", + "drupal/token": "~1.0", + "drupal/variationcache": "~1.0", "drupal/webform_access": "*", "drupal/webform_attachment": "*", "drupal/webform_clientside_validation": "*", "drupal/webform_devel": "*", "drupal/webform_entity_print": "*", + "drupal/webform_group": "*", "drupal/webform_node": "*", "drupal/webform_options_limit": "*", "drupal/webform_scheduled_email": "*", @@ -18792,16 +10187,21 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "6.2.2", - "datestamp": "1701948363", + "version": "6.0.0-alpha16", + "datestamp": "1599851828", "security-coverage": { - "status": "covered", - "message": "Covered by Drupal's security advisory policy" + "status": "not-covered", + "message": "Alpha releases are not covered by Drupal security advisories." } }, "drush": { "services": { - "drush.services.yml": ">=9" + "drush.services.yml": "^9" + } + }, + "Issue #3110478: [Webform 8.x-6.x] Track the D9 readiness state of the Webform module's (optional) dependencies": { + "require-dev": { + "drupal/chosen": "~2.0" } } }, @@ -18815,19 +10215,40 @@ "homepage": "https://www.drupal.org/u/jrockowitz", "role": "Maintainer" }, + { + "name": "Alexander Trotsenko (bucefal91)", + "homepage": "https://www.drupal.org/u/bucefal91", + "role": "Co-maintainer" + }, { "name": "Contributors", "homepage": "https://www.drupal.org/node/7404/committers", "role": "Contributor" }, { - "name": "Liam Morland", - "homepage": "https://www.drupal.org/user/493050" + "name": "fenstrat", + "homepage": "https://www.drupal.org/user/362649" + }, + { + "name": "jrockowitz", + "homepage": "https://www.drupal.org/user/371407" + }, + { + "name": "podarok", + "homepage": "https://www.drupal.org/user/116002" }, { "name": "quicksketch", "homepage": "https://www.drupal.org/user/35821" }, + { + "name": "sanchiz", + "homepage": "https://www.drupal.org/user/1671246" + }, + { + "name": "tedbow", + "homepage": "https://www.drupal.org/user/240860" + }, { "name": "torotil", "homepage": "https://www.drupal.org/user/865256" @@ -18844,28 +10265,31 @@ }, { "name": "drupal/webform_mailchimp", - "version": "5.10.0", + "version": "5.9.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/webform_mailchimp.git", - "reference": "8.x-5.10" + "reference": "8.x-5.9" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/webform_mailchimp-8.x-5.10.zip", - "reference": "8.x-5.10", - "shasum": "7bb6feb71207de8ca80f4e86adf773019dad39e7" + "url": "https://ftp.drupal.org/files/projects/webform_mailchimp-8.x-5.9.zip", + "reference": "8.x-5.9", + "shasum": "d39d231d6381306d7c92b3fa55c135e934740ea4" }, "require": { - "drupal/core": "^8 || ^9 || ^10", + "drupal/core": "^8 || ^9", "drupal/mailchimp": "*", "drupal/webform": "*" }, "type": "drupal-module", "extra": { + "branch-alias": { + "dev-5.x": "5.x-dev" + }, "drupal": { - "version": "8.x-5.10", - "datestamp": "1684354891", + "version": "8.x-5.9", + "datestamp": "1579957681", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -18881,6 +10305,10 @@ "name": "Berdir", "homepage": "https://www.drupal.org/user/214652" }, + { + "name": "Todd Zebert", + "homepage": "https://www.drupal.org/user/762250" + }, { "name": "blackdog", "homepage": "https://www.drupal.org/user/110169" @@ -18908,10 +10336,6 @@ { "name": "miro_dietiker", "homepage": "https://www.drupal.org/user/227761" - }, - { - "name": "Todd Zebert", - "homepage": "https://www.drupal.org/user/762250" } ], "description": "Allows to send Webform submissions to MailChimp lists.", @@ -18921,79 +10345,15 @@ } }, { - "name": "drupal/weight", - "version": "3.4.0", - "source": { - "type": "git", - "url": "https://git.drupalcode.org/project/weight.git", - "reference": "8.x-3.4" - }, - "dist": { - "type": "zip", - "url": "https://ftp.drupal.org/files/projects/weight-8.x-3.4.zip", - "reference": "8.x-3.4", - "shasum": "d53f3df1643993e87e2265953d8aea43b7cc041a" - }, - "require": { - "drupal/core": "^8.8 || ^9 || ^10" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "8.x-3.4", - "datestamp": "1676997696", - "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", + "name": "drupal/wysiwyg_linebreaks", "version": "dev-1.x", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/workflow_buttons.git", - "reference": "96e0a4db7345088817d80463bf6d944b5408d3b0" + "url": "https://git.drupalcode.org/project/wysiwyg_linebreaks.git", + "reference": "a95e89898af2797601b8f8fd282c7a57746065f5" }, "require": { - "drupal/core": "^9 || ^10" + "drupal/core": "^8" }, "type": "drupal-module", "extra": { @@ -19001,113 +10361,16 @@ "dev-1.x": "1.x-dev" }, "drupal": { - "version": "8.x-1.0-beta5+6-dev", - "datestamp": "1702437628", + "version": "8.x-1.10+0-dev", + "datestamp": "1542910380", "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": "gnuget", - "homepage": "https://www.drupal.org/user/992990" - }, - { - "name": "mlncn", - "homepage": "https://www.drupal.org/user/64383" - } - ], - "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-beta6", - "require": { - "drupal/core": "^9 || ^10", - "drupal/workflow_buttons": "^1" - }, - "type": "metapackage", - "extra": { - "drupal": { - "version": "8.x-1.0-beta6", - "datestamp": "1702440893", - "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": "gnuget", - "homepage": "https://www.drupal.org/user/992990" - }, - { - "name": "mlncn", - "homepage": "https://www.drupal.org/user/64383" - } - ], - "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": "b21621d823865c28584dbe0f876a16e00d9050ee" - }, - "require": { - "drupal/core": "^9.3 || ^10" - }, - "type": "drupal-module", - "extra": { - "branch-alias": { - "dev-2.0.x": "2.0.x-dev" - }, - "drupal": { - "version": "2.0.0+1-dev", - "datestamp": "1672022257", - "security-coverage": { - "status": "not-covered", - "message": "Dev releases are not covered by Drupal security advisories." - } + "patches_applied": { + "Drupal 9 readiness and code standars": "https://www.drupal.org/files/issues/2020-04-21/drupal_9_readiness_and_code_standarts_3129608-7.patch", + "Excess line breaks keep getting added": "https://www.drupal.org/files/issues/2018-11-18/excess-line-breaks-keep-getting-added-3013853-5.patch" } }, "notification-url": "https://packages.drupal.org/8/downloads", @@ -19118,34 +10381,31 @@ { "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.", + "description": "Plugin to allow legacy content editing and more sane formatting in wysiwyg editors.", "homepage": "https://www.drupal.org/project/wysiwyg_linebreaks", "support": { "source": "https://git.drupalcode.org/project/wysiwyg_linebreaks" - } + }, + "time": "2018-11-22T18:09:54+00:00" }, { "name": "drupal/yaml_content", - "version": "1.0.0-alpha9", + "version": "1.0.0-alpha7", "source": { "type": "git", "url": "https://git.drupalcode.org/project/yaml_content.git", - "reference": "8.x-1.0-alpha9" + "reference": "8.x-1.0-alpha7" }, "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" + "url": "https://ftp.drupal.org/files/projects/yaml_content-8.x-1.0-alpha7.zip", + "reference": "8.x-1.0-alpha7", + "shasum": "9aaf271446a64c9bffc5639589d5c8e6dc40c06c" }, "require": { - "drupal/core": "^9 || ^10" + "drupal/core": "^8.7.7 || ^9" }, "require-dev": { "mikey179/vfsstream": "^1.0" @@ -19153,8 +10413,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.0-alpha9", - "datestamp": "1690397386", + "version": "8.x-1.0-alpha7", + "datestamp": "1588173300", "security-coverage": { "status": "not-covered", "message": "Project has not opted into security advisory coverage!" @@ -19192,55 +10452,51 @@ }, { "name": "drush/drush", - "version": "12.4.3", + "version": "10.3.4", "source": { "type": "git", "url": "https://github.com/drush-ops/drush.git", - "reference": "8245acede57ecc62a90aa0f19ff3b29e5f11f971" + "reference": "802419a6eb0232bdb977788e6a828cd4fa5bdb11" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drush-ops/drush/zipball/8245acede57ecc62a90aa0f19ff3b29e5f11f971", - "reference": "8245acede57ecc62a90aa0f19ff3b29e5f11f971", + "url": "https://api.github.com/repos/drush-ops/drush/zipball/802419a6eb0232bdb977788e6a828cd4fa5bdb11", + "reference": "802419a6eb0232bdb977788e6a828cd4fa5bdb11", "shasum": "" }, "require": { - "chi-teck/drupal-code-generator": "^3.0", - "composer-runtime-api": "^2.2", - "composer/semver": "^1.4 || ^3", - "consolidation/annotated-command": "^4.9.1", - "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.32.1", + "composer/semver": "^1.4", + "consolidation/config": "^1.2", + "consolidation/filter-via-dot-access-data": "^1", + "consolidation/robo": "^1.4.11 || ^2", + "consolidation/site-alias": "^3.0.0@stable", + "consolidation/site-process": "^2.1 || ^4", "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", + "guzzlehttp/guzzle": "^6.3", + "league/container": "~2", + "php": ">=7.1.3", + "psr/log": "~1.0", + "psy/psysh": "~0.6", + "symfony/event-dispatcher": "^3.4 || ^4.0", + "symfony/finder": "^3.4 || ^4.0", + "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0", + "symfony/yaml": "^3.4 || ^4.0", + "webflo/drupal-finder": "^1.2", + "webmozart/path-util": "^2.1.0" }, "require-dev": { - "composer/installers": "^2", + "composer/installers": "^1.7", "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" + "david-garcia/phpwhois": "4.3.0", + "drupal/alinks": "1.0.0", + "drupal/core-recommended": "^8.8", + "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" }, "bin": [ "drush" @@ -19272,11 +10528,15 @@ "sut/drush/contrib/{$name}": [ "type:drupal-drush" ] + }, + "branch-alias": { + "dev-master": "10.x-dev" } }, "autoload": { "psr-4": { - "Drush\\": "src/" + "Drush\\": "src/", + "Drush\\Internal\\": "src/internal-forks" } }, "notification-url": "https://packagist.org/downloads/", @@ -19319,82 +10579,78 @@ ], "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.4.3" - }, "funding": [ { "url": "https://github.com/weitzman", "type": "github" } ], - "time": "2023-11-16T22:57:24+00:00" + "time": "2020-08-20T19:27:28+00:00" }, { "name": "drutopia/drutopia", - "version": "2.0.x-dev", + "version": "dev-update-to-drupal9", "source": { "type": "git", - "url": "git@gitlab.com:drutopia/drutopia.git", - "reference": "04f95b36c8fb2a227fd4bf4526566feacb1dd81b" + "url": "https://gitlab.com/drutopia/drutopia.git", + "reference": "5e62c445ec30acf290f24d552ef943e5aff37699" }, "dist": { "type": "zip", - "url": "https://gitlab.com/api/v4/projects/drutopia%2Fdrutopia/repository/archive.zip?sha=04f95b36c8fb2a227fd4bf4526566feacb1dd81b", - "reference": "04f95b36c8fb2a227fd4bf4526566feacb1dd81b", + "url": "https://gitlab.com/api/v4/projects/drutopia%2Fdrutopia/repository/archive.zip?sha=5e62c445ec30acf290f24d552ef943e5aff37699", + "reference": "5e62c445ec30acf290f24d552ef943e5aff37699", "shasum": "" }, "require": { - "cweagans/composer-patches": "^1", - "drupal/antibot": "^2", - "drupal/block_visibility_groups": "^2", - "drupal/bulma_components": "^1.0@alpha", - "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", + "cweagans/composer-patches": "^1.6", + "drupal/antibot": "^1.4", + "drupal/better_normalizers": "^1.0-beta4", + "drupal/block_visibility_groups": "1.x-dev", + "drupal/bulma": "dev-1.x", + "drupal/components": "^2.0", + "drupal/config_actions_provider": "1.x-dev", + "drupal/config_sync": "^2.0-beta5", + "drupal/config_update": "^1.7", + "drupal/core": "^8.0||^9.0", + "drupal/core-composer-scaffold": "^8.9", + "drupal/default_content": "^1.0-alpha9", + "drupal/drutopia_action": "dev-1.x", + "drupal/drutopia_article": "dev-1.x", + "drupal/drutopia_blog": "dev-1.x", + "drupal/drutopia_campaign": "dev-1.x", + "drupal/drutopia_comment": "dev-1.x", + "drupal/drutopia_core": "^1.0", + "drupal/drutopia_event": "dev-1.x", + "drupal/drutopia_group": "dev-1.x", + "drupal/drutopia_landing_page": "dev-1.x", + "drupal/drutopia_page": "dev-1.x", + "drupal/drutopia_people": "dev-1.x", + "drupal/drutopia_related_content": "dev-1.x", + "drupal/drutopia_resource": "dev-1.x", + "drupal/drutopia_search": "dev-1.x", + "drupal/drutopia_seo": "dev-1.x", + "drupal/drutopia_site": "dev-1.x", + "drupal/drutopia_social": "dev-1.x", + "drupal/drutopia_storyline": "dev-1.x", + "drupal/drutopia_user": "dev-1.x", "drupal/eu_cookie_compliance": "^1.9", - "drupal/features": "^3", - "drupal/gdpr": "^3.0@alpha", - "drupal/gin": "^3.0", - "drupal/gin_toolbar": "^1.0@beta", + "drupal/features": "^3.11", + "drupal/gdpr": "^2.0-alpha7", "drupal/honeypot": "^2.0", "drupal/menu_block": "^1.6", - "drupal/octavia": "^2", - "drupal/paranoia": "^1.0-rc1", - "drupal/riddler": "^3", - "drupal/subprofiles": "^2", - "drupal/twigsuggest": "^1.0", + "drupal/octavia": "dev-1.x", + "drupal/paranoia": "^1.0-alpha1", + "drupal/riddler": "^1.1", + "drupal/subprofiles": "^1.0-alpha2", "drupal/yaml_content": "^1.0-alpha7", "geeks4change/composer-pin": "*" }, "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/devel": "^2.0", + "drush/drush": "^9.0", "jcalderonzumba/gastonjs": "~1.0.2", "mikey179/vfsstream": "~1.2", "se/selenium-server-standalone": "^2.53", @@ -19410,59 +10666,48 @@ }, "enable-patching": true, "patches": { - "drupal/core": { - "Invoke hook after a site install is complete": "https://git.drupalcode.org/project/drupal/-/merge_requests/1512.diff" - }, "drupal/ds": { - "Parent theme template inheritance bug": "https://www.drupal.org/files/issues/2021-02-22/2895316-12.patch" + "Parent theme template inheritance bug": "https://www.drupal.org/files/issues/2020-04-30/2895316-10.patch" } } }, - "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.", - "time": "2023-11-30T23:44:28+00:00" + "time": "2020-09-14T19:48:30+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" + "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/easyrdf/easyrdf/zipball/c7b0a9dbcb211eb7de03ee99ff5b52d17f2a8e64", - "reference": "c7b0a9dbcb211eb7de03ee99ff5b52d17f2a8e64", + "url": "https://api.github.com/repos/easyrdf/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/", @@ -19479,7 +10724,6 @@ { "name": "Alexey Zakhlestin", "email": "indeyets@gmail.com", - "homepage": "http://indeyets.ru/", "role": "Developer" } ], @@ -19493,35 +10737,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.2", + "version": "2.1.17", "source": { "type": "git", "url": "https://github.com/egulias/EmailValidator.git", - "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e" + "reference": "ade6887fd9bd74177769645ab5c474824f8a418a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e", - "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ade6887fd9bd74177769645ab5c474824f8a418a", + "reference": "ade6887fd9bd74177769645ab5c474824f8a418a", "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", + "symfony/polyfill-intl-idn": "^1.10" }, "require-dev": { - "phpunit/phpunit": "^10.2", - "vimeo/psalm": "^5.12" + "dominicsayers/isemail": "^3.0.7", + "phpunit/phpunit": "^4.8.36|^7.5.15", + "satooshi/php-coveralls": "^1.0.1" }, "suggest": { "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation" @@ -19529,12 +10769,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/", @@ -19555,53 +10795,36 @@ "validation", "validator" ], - "support": { - "issues": "https://github.com/egulias/EmailValidator/issues", - "source": "https://github.com/egulias/EmailValidator/tree/4.0.2" - }, - "funding": [ - { - "url": "https://github.com/egulias", - "type": "github" - } - ], - "time": "2023-10-06T06:47:41+00:00" + "time": "2020-02-13T22:36:52+00:00" }, { "name": "ezyang/htmlpurifier", - "version": "v4.17.0", + "version": "v4.13.0", "source": { "type": "git", "url": "https://github.com/ezyang/htmlpurifier.git", - "reference": "bbc513d79acf6691fa9cf10f192c90dd2957f18c" + "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/bbc513d79acf6691fa9cf10f192c90dd2957f18c", - "reference": "bbc513d79acf6691fa9cf10f192c90dd2957f18c", + "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75", + "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75", "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" + "php": ">=5.2" }, "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" + "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd" }, "type": "library", "autoload": { - "files": [ - "library/HTMLPurifier.composer.php" - ], "psr-0": { "HTMLPurifier": "library/" }, + "files": [ + "library/HTMLPurifier.composer.php" + ], "exclude-from-classmap": [ "/library/HTMLPurifier/Language/" ] @@ -19622,11 +10845,65 @@ "keywords": [ "html" ], - "support": { - "issues": "https://github.com/ezyang/htmlpurifier/issues", - "source": "https://github.com/ezyang/htmlpurifier/tree/v4.17.0" + "time": "2020-06-29T00:56:53+00:00" + }, + { + "name": "facebook/graph-sdk", + "version": "5.7.0", + "source": { + "type": "git", + "url": "https://github.com/facebook/php-graph-sdk.git", + "reference": "2d8250638b33d73e7a87add65f47fabf91f8ad9b" }, - "time": "2023-11-17T15:01:25+00:00" + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/facebook/php-graph-sdk/zipball/2d8250638b33d73e7a87add65f47fabf91f8ad9b", + "reference": "2d8250638b33d73e7a87add65f47fabf91f8ad9b", + "shasum": "" + }, + "require": { + "php": "^5.4|^7.0" + }, + "require-dev": { + "guzzlehttp/guzzle": "~5.0", + "mockery/mockery": "~0.8", + "phpunit/phpunit": "~4.0" + }, + "suggest": { + "guzzlehttp/guzzle": "Allows for implementation of the Guzzle HTTP client", + "paragonie/random_compat": "Provides a better CSPRNG option in PHP 5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.x-dev" + } + }, + "autoload": { + "psr-4": { + "Facebook\\": "src/Facebook/" + }, + "files": [ + "src/Facebook/polyfills.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Facebook Platform" + ], + "authors": [ + { + "name": "Facebook", + "homepage": "https://github.com/facebook/php-graph-sdk/contributors" + } + ], + "description": "Facebook SDK for PHP", + "homepage": "https://github.com/facebook/php-graph-sdk", + "keywords": [ + "facebook", + "sdk" + ], + "time": "2018-12-11T22:56:31+00:00" }, { "name": "geeks4change/composer-pin", @@ -19642,7 +10919,6 @@ "reference": "e5c37b2b1c6041f6c5e1a86dc1c1c15dc7879ba8", "shasum": "" }, - "default-branch": true, "bin": [ "composer-pin-apply" ], @@ -19663,98 +10939,31 @@ } ], "description": "Provides helper commands to do project level version/hash pinning.", - "support": { - "issues": "https://gitlab.com/api/v4/projects/12048815/issues", - "source": "https://gitlab.com/geeks4change/packages/composer-pin/-/tree/master" - }, "time": "2020-06-02T10:38:25+00:00" }, - { - "name": "graham-campbell/result-type", - "version": "v1.1.2", - "source": { - "type": "git", - "url": "https://github.com/GrahamCampbell/Result-Type.git", - "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862", - "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862", - "shasum": "" - }, - "require": { - "php": "^7.2.5 || ^8.0", - "phpoption/phpoption": "^1.9.2" - }, - "require-dev": { - "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2" - }, - "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.2" - }, - "funding": [ - { - "url": "https://github.com/GrahamCampbell", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type", - "type": "tidelift" - } - ], - "time": "2023-11-12T22:16:48+00:00" - }, { "name": "grasmash/expander", - "version": "3.0.0", + "version": "1.0.0", "source": { "type": "git", "url": "https://github.com/grasmash/expander.git", - "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82" + "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/grasmash/expander/zipball/bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82", - "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82", + "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": { @@ -19777,50 +10986,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.0" - }, - "time": "2022-05-10T13:14:49+00:00" + "time": "2017-12-21T22:14:55+00:00" }, { - "name": "grasmash/yaml-cli", - "version": "3.1.0", + "name": "grasmash/yaml-expander", + "version": "1.4.0", "source": { "type": "git", - "url": "https://github.com/grasmash/yaml-cli.git", - "reference": "00f3fd775f6abbfacd44432f1999c3c3b02791f0" + "url": "https://github.com/grasmash/yaml-expander.git", + "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/grasmash/yaml-cli/zipball/00f3fd775f6abbfacd44432f1999c3c3b02791f0", - "reference": "00f3fd775f6abbfacd44432f1999c3c3b02791f0", + "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", - "symfony/filesystem": "^6", - "symfony/yaml": "^6" + "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/", @@ -19832,305 +11033,183 @@ "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.1.0" - }, - "time": "2022-05-09T20:22:34+00:00" + "description": "Expands internal property references in a yaml file.", + "time": "2017-12-16T16:06:03+00:00" }, { "name": "guzzlehttp/guzzle", - "version": "7.8.1", + "version": "6.5.4", "source": { "type": "git", "url": "https://github.com/guzzle/guzzle.git", - "reference": "41042bc7ab002487b876a0683fc8dce04ddce104" + "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104", - "reference": "41042bc7ab002487b876a0683fc8dce04ddce104", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a4a1b6930528a8f7ee03518e6442ec7a44155d9d", + "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d", "shasum": "" }, "require": { "ext-json": "*", - "guzzlehttp/promises": "^1.5.3 || ^2.0.1", - "guzzlehttp/psr7": "^1.9.1 || ^2.5.1", - "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.6.1", + "php": ">=5.5", + "symfony/polyfill-intl-idn": "1.17.0" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.8.2", "ext-curl": "*", - "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999", - "php-http/message-factory": "^1.1", - "phpunit/phpunit": "^8.5.36 || ^9.6.15", - "psr/log": "^1.1 || ^2.0 || ^3.0" + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0", + "psr/log": "^1.1" }, "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.5-dev" } }, "autoload": { - "files": [ - "src/functions_include.php" - ], "psr-4": { "GuzzleHttp\\": "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": "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.8.1" - }, - "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": "2023-12-03T20:35:24+00:00" + "time": "2020-05-25T19:35:05+00:00" }, { "name": "guzzlehttp/promises", - "version": "2.0.2", + "version": "v1.3.1", "source": { "type": "git", "url": "https://github.com/guzzle/promises.git", - "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223" + "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223", - "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223", + "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.36 || ^9.6.15" + "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.0.2" - }, - "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": "2023-12-03T20:19:20+00:00" + "time": "2016-12-20T10:07:11+00:00" }, { "name": "guzzlehttp/psr7", - "version": "2.6.2", + "version": "1.6.1", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221" + "reference": "239400de7a173fe9901b9ac7c06497751f00727a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221", - "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221", + "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", - "phpunit/phpunit": "^8.5.36 || ^9.6.15" + "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", @@ -20144,53 +11223,72 @@ "uri", "url" ], - "support": { - "issues": "https://github.com/guzzle/psr7/issues", - "source": "https://github.com/guzzle/psr7/tree/2.6.2" - }, - "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": "2023-12-03T20:05:35+00:00" + "time": "2019-07-01T23:21:34+00:00" }, { - "name": "indieauth/client", - "version": "1.1.6", + "name": "html2text/html2text", + "version": "4.0.1", "source": { "type": "git", - "url": "https://github.com/indieweb/indieauth-client-php.git", - "reference": "9f3f9cc71a752c371b44d40a979504ffd7026c7d" + "url": "https://github.com/mtibben/html2text.git", + "reference": "f55104b7c9f99b0937f0e20fe051b19f9c0ecad1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/indieweb/indieauth-client-php/zipball/9f3f9cc71a752c371b44d40a979504ffd7026c7d", - "reference": "9f3f9cc71a752c371b44d40a979504ffd7026c7d", + "url": "https://api.github.com/repos/mtibben/html2text/zipball/f55104b7c9f99b0937f0e20fe051b19f9c0ecad1", + "reference": "f55104b7c9f99b0937f0e20fe051b19f9c0ecad1", "shasum": "" }, - "require": { - "indieweb/representative-h-card": "^0.1.2", - "mf2/mf2": "^0.5", - "p3k/http": "^0.1", - "php": ">5.6.0" - }, "require-dev": { - "yoast/phpunit-polyfills": "^1.0" + "phpunit/phpunit": "~4" + }, + "suggest": { + "ext-mbstring": "For best performance", + "symfony/polyfill-mbstring": "If you can't install ext-mbstring" }, "type": "library", "autoload": { "psr-4": { - "IndieAuth\\": "src/IndieAuth/" + "Html2Text\\": [ + "src/", + "test/" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPLv2" + ], + "description": "Converts HTML to formatted plain text", + "time": "2016-03-16T23:24:34+00:00" + }, + { + "name": "indieauth/client", + "version": "0.4.2", + "source": { + "type": "git", + "url": "https://github.com/indieweb/indieauth-client-php.git", + "reference": "acad4c7a9ae61ae553f6136098666c49ef77631c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/indieweb/indieauth-client-php/zipball/acad4c7a9ae61ae553f6136098666c49ef77631c", + "reference": "acad4c7a9ae61ae553f6136098666c49ef77631c", + "shasum": "" + }, + "require": { + "indieweb/representative-h-card": "^0.1.2", + "mf2/mf2": ">=0.3.2", + "p3k/http": ">=0.1.6", + "php": ">5.3.0" + }, + "require-dev": { + "phpunit/phpunit": "4.8.*" + }, + "type": "library", + "autoload": { + "psr-0": { + "IndieAuth": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -20204,17 +11302,7 @@ } ], "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": "2019-02-08T16:56:14+00:00" }, { "name": "indieweb/link-rel-parser", @@ -20260,32 +11348,28 @@ "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", + "version": "1.2.0", "source": { "type": "git", "url": "https://github.com/indieweb/mention-client-php.git", - "reference": "6807f4b1b96df7f47ea425eebfc7c032768652cf" + "reference": "12e3dc4b3f8f9ae82fa7a3953792bea33f59118a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/indieweb/mention-client-php/zipball/6807f4b1b96df7f47ea425eebfc7c032768652cf", - "reference": "6807f4b1b96df7f47ea425eebfc7c032768652cf", + "url": "https://api.github.com/repos/indieweb/mention-client-php/zipball/12e3dc4b3f8f9ae82fa7a3953792bea33f59118a", + "reference": "12e3dc4b3f8f9ae82fa7a3953792bea33f59118a", "shasum": "" }, "require": { "mf2/mf2": ">=0.2", - "php": ">=5.6" + "php": ">=5.4" }, "require-dev": { - "phpunit/phpunit": "^6" + "phpunit/phpunit": "4.8.*" }, "type": "library", "autoload": { @@ -20306,24 +11390,20 @@ ], "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" + "time": "2018-10-27T19:41:41+00:00" }, { "name": "indieweb/representative-h-card", - "version": "0.1.3", + "version": "0.1.2", "source": { "type": "git", "url": "https://github.com/indieweb/representative-h-card-php.git", - "reference": "97731c6ccc0838418c775b867bf826aeaa91cd95" + "reference": "b70b01bd0dd7f2a940602137335dbf46ab6e2e38" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/indieweb/representative-h-card-php/zipball/97731c6ccc0838418c775b867bf826aeaa91cd95", - "reference": "97731c6ccc0838418c775b867bf826aeaa91cd95", + "url": "https://api.github.com/repos/indieweb/representative-h-card-php/zipball/b70b01bd0dd7f2a940602137335dbf46ab6e2e38", + "reference": "b70b01bd0dd7f2a940602137335dbf46ab6e2e38", "shasum": "" }, "require": { @@ -20355,37 +11435,209 @@ "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" + "time": "2015-12-23T18:11:19+00:00" }, { - "name": "johngrogg/ics-parser", - "version": "v3.3.1", + "name": "jquery/chosen", + "version": "1.8.7", + "dist": { + "type": "zip", + "url": "https://github.com/harvesthq/chosen/releases/download/v1.8.7/chosen_v1.8.7.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "drupal-library", + "extra": { + "installer-name": "jquery.chosen" + } + }, + { + "name": "jquery/geocomplete", + "version": "1.7.0", + "dist": { + "type": "zip", + "url": "https://github.com/ubilabs/geocomplete/archive/1.7.0.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "drupal-library", + "extra": { + "installer-name": "jquery.geocomplete" + } + }, + { + "name": "jquery/hotkeys", + "version": "0.2.0", + "dist": { + "type": "zip", + "url": "https://github.com/jeresig/jquery.hotkeys/archive/0.2.0.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "drupal-library", + "extra": { + "installer-name": "jquery.hotkeys" + } + }, + { + "name": "jquery/icheck", + "version": "1.0.2 ", + "dist": { + "type": "zip", + "url": "https://github.com/fronteed/icheck/archive/1.0.2.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "drupal-library", + "extra": { + "installer-name": "jquery.icheck" + } + }, + { + "name": "jquery/image-picker", + "version": "0.3.1", + "dist": { + "type": "zip", + "url": "https://github.com/rvera/image-picker/archive/0.3.1.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "drupal-library", + "extra": { + "installer-name": "jquery.image-picker" + } + }, + { + "name": "jquery/inputmask", + "version": "5.0.5", + "dist": { + "type": "zip", + "url": "https://github.com/RobinHerbots/jquery.inputmask/archive/5.0.5.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "drupal-library", + "extra": { + "installer-name": "jquery.inputmask" + } + }, + { + "name": "jquery/intl-tel-input", + "version": "16.1.0", + "dist": { + "type": "zip", + "url": "https://github.com/jackocnr/intl-tel-input/archive/v16.1.0.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "drupal-library", + "extra": { + "installer-name": "jquery.intl-tel-input" + } + }, + { + "name": "jquery/rateit", + "version": "1.1.3", + "dist": { + "type": "zip", + "url": "https://github.com/gjunge/rateit.js/archive/1.1.3.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "drupal-library", + "extra": { + "installer-name": "jquery.rateit" + } + }, + { + "name": "jquery/select2", + "version": "4.0.13", + "dist": { + "type": "zip", + "url": "https://github.com/select2/select2/archive/4.0.13.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "drupal-library", + "extra": { + "installer-name": "jquery.select2" + } + }, + { + "name": "jquery/textcounter", + "version": "0.9.0", + "dist": { + "type": "zip", + "url": "https://github.com/ractoon/jQuery-Text-Counter/archive/0.9.0.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "drupal-library", + "extra": { + "installer-name": "jquery.textcounter" + } + }, + { + "name": "jquery/timepicker", + "version": "1.13.14", + "dist": { + "type": "zip", + "url": "https://github.com/jonthornton/jquery-timepicker/archive/1.13.14.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "drupal-library", + "extra": { + "installer-name": "jquery.timepicker" + } + }, + { + "name": "jquery/toggles", + "version": "4.0.0", + "dist": { + "type": "zip", + "url": "https://github.com/simontabor/jquery-toggles/archive/v4.0.0.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "drupal-library", + "extra": { + "installer-name": "jquery.toggles" + } + }, + { + "name": "kub-at/php-simple-html-dom-parser", + "version": "1.9.1", "source": { "type": "git", - "url": "https://github.com/u01jmg3/ics-parser.git", - "reference": "eeb51c4c0c06e6df3266f85ea774ca314536aba4" + "url": "https://github.com/Kub-AT/php-simple-html-dom-parser.git", + "reference": "ff22f98bfd9235115c128059076f3eb740d66913" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/u01jmg3/ics-parser/zipball/eeb51c4c0c06e6df3266f85ea774ca314536aba4", - "reference": "eeb51c4c0c06e6df3266f85ea774ca314536aba4", + "url": "https://api.github.com/repos/Kub-AT/php-simple-html-dom-parser/zipball/ff22f98bfd9235115c128059076f3eb740d66913", + "reference": "ff22f98bfd9235115c128059076f3eb740d66913", "shasum": "" }, "require": { - "ext-mbstring": "*", - "php": ">=5.6.40" - }, - "require-dev": { - "phpunit/phpunit": "^5|^9|^10" + "php": ">=5.3.2" }, "type": "library", "autoload": { "psr-0": { - "ICal": "src/" + "KubAT\\PhpSimple\\HtmlDomParser": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -20394,121 +11646,130 @@ ], "authors": [ { - "name": "Jonathan Goode", - "role": "Developer/Owner" + "name": "S.C. Chen", + "email": "me578022@gmail.com" }, { - "name": "John Grogg", - "email": "john.grogg@gmail.com", - "role": "Developer/Prior Owner" + "name": "Jakub Stawowy", + "email": "Kub-AT@users.noreply.github.com" } ], - "description": "ICS Parser", - "homepage": "https://github.com/u01jmg3/ics-parser", + "description": "PHP Simple HTML DOM Parser with namespace and PHP 7.3 compatible", + "homepage": "http://simplehtmldom.sourceforge.net/", "keywords": [ - "iCalendar", - "ical", - "ical-parser", - "ics", - "ics-parser", - "ifb" + "Simple", + "dom", + "html" ], - "support": { - "issues": "https://github.com/u01jmg3/ics-parser/issues", - "source": "https://github.com/u01jmg3/ics-parser/tree/v3.3.1" - }, - "funding": [ - { - "url": "https://github.com/sponsors/u01jmg3", - "type": "github" - } - ], - "time": "2023-10-10T09:58:49+00:00" + "time": "2019-10-25T12:34:43+00:00" }, { - "name": "kwn/number-to-words", - "version": "1.13.0", + "name": "laminas/laminas-diactoros", + "version": "1.8.7p2", "source": { "type": "git", - "url": "https://github.com/kwn/number-to-words.git", - "reference": "df61dc0f2fffe49f87319c9bcf1f7f44669152c7" + "url": "https://github.com/laminas/laminas-diactoros.git", + "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/kwn/number-to-words/zipball/df61dc0f2fffe49f87319c9bcf1f7f44669152c7", - "reference": "df61dc0f2fffe49f87319c9bcf1f7f44669152c7", + "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/6991c1af7c8d2c8efee81b22ba97024781824aaa", + "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa", "shasum": "" }, "require": { - "php": ">=5.6|>=7.1" + "laminas/laminas-zendframework-bridge": "^1.0", + "php": "^5.6 || ^7.0", + "psr/http-message": "^1.0" + }, + "provide": { + "psr/http-message-implementation": "1.0" + }, + "replace": { + "zendframework/zend-diactoros": "~1.8.7.0" }, "require-dev": { - "phpunit/phpunit": "^5.7.9", - "squizlabs/php_codesniffer": "^3.3.0" + "ext-dom": "*", + "ext-libxml": "*", + "laminas/laminas-coding-standard": "~1.0", + "php-http/psr7-integration-tests": "dev-master", + "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7" }, "type": "library", + "extra": { + "branch-alias": { + "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", + "src/functions/create_uploaded_file.legacy.php", + "src/functions/marshal_headers_from_sapi.legacy.php", + "src/functions/marshal_method_from_sapi.legacy.php", + "src/functions/marshal_protocol_version_from_sapi.legacy.php", + "src/functions/marshal_uri_from_sapi.legacy.php", + "src/functions/normalize_server.legacy.php", + "src/functions/normalize_uploaded_files.legacy.php", + "src/functions/parse_cookie_header.legacy.php" + ], "psr-4": { - "NumberToWords\\": "src" + "Laminas\\Diactoros\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], - "authors": [ - { - "name": "Karol Wnuk", - "email": "k.wnuk@ascetic.pl" - } - ], - "description": "Multi language standalone PHP number to words converter. Fully tested, open for extensions and new languages.", + "description": "PSR HTTP Message implementations", + "homepage": "https://laminas.dev", "keywords": [ - "currency", - "money", - "number", - "numbers", - "string", - "to", - "words" + "http", + "laminas", + "psr", + "psr-7" ], - "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" + "time": "2020-03-23T15:28:28+00:00" }, { "name": "laminas/laminas-escaper", - "version": "2.13.0", + "version": "2.6.1", "source": { "type": "git", "url": "https://github.com/laminas/laminas-escaper.git", - "reference": "af459883f4018d0f8a0c69c7a209daef3bf973ba" + "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/af459883f4018d0f8a0c69c7a209daef3bf973ba", - "reference": "af459883f4018d0f8a0c69c7a209daef3bf973ba", + "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/25f2a053eadfa92ddacb609dcbbc39362610da70", + "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70", "shasum": "" }, "require": { - "ext-ctype": "*", - "ext-mbstring": "*", - "php": "~8.1.0 || ~8.2.0 || ~8.3.0" + "laminas/laminas-zendframework-bridge": "^1.0", + "php": "^5.6 || ^7.0" }, - "conflict": { - "zendframework/zend-escaper": "*" + "replace": { + "zendframework/zend-escaper": "self.version" }, "require-dev": { - "infection/infection": "^0.27.0", - "laminas/laminas-coding-standard": "~2.5.0", - "maglnet/composer-require-checker": "^3.8.0", - "phpunit/phpunit": "^9.6.7", - "psalm/plugin-phpunit": "^0.18.4", - "vimeo/psalm": "^5.9" + "laminas/laminas-coding-standard": "~1.0.0", + "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.6.x-dev", + "dev-develop": "2.7.x-dev" + } + }, "autoload": { "psr-4": { "Laminas\\Escaper\\": "src/" @@ -20524,59 +11785,42 @@ "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": "2023-10-10T08:35:13+00:00" + "time": "2019-12-31T16:43:30+00:00" }, { "name": "laminas/laminas-feed", - "version": "2.22.0", + "version": "2.12.2", "source": { "type": "git", "url": "https://github.com/laminas/laminas-feed.git", - "reference": "669792b819fca7274698147ad7a2ecc1b0a9b141" + "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/669792b819fca7274698147ad7a2ecc1b0a9b141", - "reference": "669792b819fca7274698147ad7a2ecc1b0a9b141", + "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/8a193ac96ebcb3e16b6ee754ac2a889eefacb654", + "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654", "shasum": "" }, "require": { "ext-dom": "*", "ext-libxml": "*", - "laminas/laminas-escaper": "^2.9", - "laminas/laminas-stdlib": "^3.6", - "php": "~8.1.0 || ~8.2.0 || ~8.3.0" + "laminas/laminas-escaper": "^2.5.2", + "laminas/laminas-stdlib": "^3.2.1", + "laminas/laminas-zendframework-bridge": "^1.0", + "php": "^5.6 || ^7.0" }, - "conflict": { - "laminas/laminas-servicemanager": "<3.3", - "zendframework/zend-feed": "*" + "replace": { + "zendframework/zend-feed": "^2.12.0" }, "require-dev": { - "laminas/laminas-cache": "^2.13.2 || ^3.11", - "laminas/laminas-cache-storage-adapter-memory": "^1.1.0 || ^2.2", - "laminas/laminas-coding-standard": "~2.5.0", - "laminas/laminas-db": "^2.18", - "laminas/laminas-http": "^2.18", - "laminas/laminas-servicemanager": "^3.21.0", - "laminas/laminas-validator": "^2.38", - "phpunit/phpunit": "^10.3.1", - "psalm/plugin-phpunit": "^0.18.4", - "psr/http-message": "^2.0", - "vimeo/psalm": "^5.14.1" + "laminas/laminas-cache": "^2.7.2", + "laminas/laminas-coding-standard": "~1.0.0", + "laminas/laminas-db": "^2.8.2", + "laminas/laminas-http": "^2.7", + "laminas/laminas-servicemanager": "^2.7.8 || ^3.3", + "laminas/laminas-validator": "^2.10.1", + "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.20", + "psr/http-message": "^1.0.1" }, "suggest": { "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests", @@ -20587,6 +11831,12 @@ "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.12.x-dev", + "dev-develop": "2.13.x-dev" + } + }, "autoload": { "psr-4": { "Laminas\\Feed\\": "src/" @@ -20596,58 +11846,125 @@ "license": [ "BSD-3-Clause" ], - "description": "provides functionality for creating and consuming RSS and Atom feeds", + "description": "provides functionality for consuming RSS and Atom feeds", "homepage": "https://laminas.dev", "keywords": [ - "atom", "feed", - "laminas", - "rss" + "laminas" ], - "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" + "time": "2020-03-29T12:36:29+00:00" + }, + { + "name": "laminas/laminas-servicemanager", + "version": "3.4.1", + "source": { + "type": "git", + "url": "https://github.com/laminas/laminas-servicemanager.git", + "reference": "0d4c8628a71fae9f7bd0b1b74b76382e5e9a04b1" }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laminas/laminas-servicemanager/zipball/0d4c8628a71fae9f7bd0b1b74b76382e5e9a04b1", + "reference": "0d4c8628a71fae9f7bd0b1b74b76382e5e9a04b1", + "shasum": "" + }, + "require": { + "container-interop/container-interop": "^1.2", + "laminas/laminas-stdlib": "^3.2.1", + "laminas/laminas-zendframework-bridge": "^1.0", + "php": "^5.6 || ^7.0", + "psr/container": "^1.0" + }, + "provide": { + "container-interop/container-interop-implementation": "^1.2", + "psr/container-implementation": "^1.0" + }, + "replace": { + "zendframework/zend-servicemanager": "^3.4.0" + }, + "require-dev": { + "laminas/laminas-coding-standard": "~1.0.0", + "mikey179/vfsstream": "^1.6.5", + "ocramius/proxy-manager": "^1.0 || ^2.0", + "phpbench/phpbench": "^0.13.0", + "phpunit/phpunit": "^5.7.25 || ^6.4.4" + }, + "suggest": { + "laminas/laminas-stdlib": "laminas-stdlib ^2.5 if you wish to use the MergeReplaceKey or MergeRemoveKey features in Config instances", + "ocramius/proxy-manager": "ProxyManager 1.* to handle lazy initialization of services" + }, + "bin": [ + "bin/generate-deps-for-config-factory", + "bin/generate-factory-for-class" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.3-dev", + "dev-develop": "4.0-dev" + } + }, + "autoload": { + "psr-4": { + "Laminas\\ServiceManager\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Factory-Driven Dependency Injection Container", + "homepage": "https://laminas.dev", + "keywords": [ + "PSR-11", + "dependency-injection", + "di", + "dic", + "laminas", + "service-manager", + "servicemanager" + ], "funding": [ { "url": "https://funding.communitybridge.org/projects/laminas-project", "type": "community_bridge" } ], - "time": "2023-10-11T20:16:37+00:00" + "time": "2020-05-11T14:43:22+00:00" }, { "name": "laminas/laminas-stdlib", - "version": "3.19.0", + "version": "3.2.1", "source": { "type": "git", "url": "https://github.com/laminas/laminas-stdlib.git", - "reference": "6a192dd0882b514e45506f533b833b623b78fff3" + "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/6a192dd0882b514e45506f533b833b623b78fff3", - "reference": "6a192dd0882b514e45506f533b833b623b78fff3", + "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/2b18347625a2f06a1a485acfbc870f699dbe51c6", + "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6", "shasum": "" }, "require": { - "php": "~8.1.0 || ~8.2.0 || ~8.3.0" + "laminas/laminas-zendframework-bridge": "^1.0", + "php": "^5.6 || ^7.0" }, - "conflict": { - "zendframework/zend-stdlib": "*" + "replace": { + "zendframework/zend-stdlib": "self.version" }, "require-dev": { - "laminas/laminas-coding-standard": "^2.5", - "phpbench/phpbench": "^1.2.15", - "phpunit/phpunit": "^10.5.8", - "psalm/plugin-phpunit": "^0.18.4", - "vimeo/psalm": "^5.20.0" + "laminas/laminas-coding-standard": "~1.0.0", + "phpbench/phpbench": "^0.13", + "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.2.x-dev", + "dev-develop": "3.3.x-dev" + } + }, "autoload": { "psr-4": { "Laminas\\Stdlib\\": "src/" @@ -20663,51 +11980,92 @@ "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-01-19T12:39:49+00:00" + "time": "2019-12-31T17:51:15+00:00" }, { - "name": "laminas/laminas-xml", - "version": "1.6.0", + "name": "laminas/laminas-text", + "version": "2.7.1", "source": { "type": "git", - "url": "https://github.com/laminas/laminas-xml.git", - "reference": "c35aab57d1d0a970b53965046d535b88c3dc8bea" + "url": "https://github.com/laminas/laminas-text.git", + "reference": "3601b5eacb06ed0a12f658df860cc0f9613cf4db" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-xml/zipball/c35aab57d1d0a970b53965046d535b88c3dc8bea", - "reference": "c35aab57d1d0a970b53965046d535b88c3dc8bea", + "url": "https://api.github.com/repos/laminas/laminas-text/zipball/3601b5eacb06ed0a12f658df860cc0f9613cf4db", + "reference": "3601b5eacb06ed0a12f658df860cc0f9613cf4db", "shasum": "" }, "require": { - "ext-dom": "*", - "ext-simplexml": "*", - "php": "~8.1.0 || ~8.2.0 || ~8.3.0" + "laminas/laminas-servicemanager": "^2.7.5 || ^3.0.3", + "laminas/laminas-stdlib": "^2.7 || ^3.0", + "laminas/laminas-zendframework-bridge": "^1.0", + "php": "^5.6 || ^7.0" }, - "conflict": { - "zendframework/zendxml": "*" + "replace": { + "zendframework/zend-text": "self.version" }, "require-dev": { - "ext-iconv": "*", "laminas/laminas-coding-standard": "~1.0.0", - "phpunit/phpunit": "^9.5.8", - "squizlabs/php_codesniffer": "3.6.1 as 2.9999999.9999999" + "laminas/laminas-config": "^2.6", + "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.4" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.7.x-dev", + "dev-develop": "2.8.x-dev" + } + }, + "autoload": { + "psr-4": { + "Laminas\\Text\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "Create FIGlets and text-based tables", + "homepage": "https://laminas.dev", + "keywords": [ + "laminas", + "text" + ], + "time": "2019-12-31T17:54:52+00:00" + }, + { + "name": "laminas/laminas-xml", + "version": "1.2.0", + "source": { + "type": "git", + "url": "https://github.com/laminas/laminas-xml.git", + "reference": "879cc66d1bba6a37705e98074f52a6960c220020" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laminas/laminas-xml/zipball/879cc66d1bba6a37705e98074f52a6960c220020", + "reference": "879cc66d1bba6a37705e98074f52a6960c220020", + "shasum": "" + }, + "require": { + "laminas/laminas-zendframework-bridge": "^1.0", + "php": "^5.6 || ^7.0" + }, + "replace": { + "zendframework/zendxml": "self.version" + }, + "require-dev": { + "laminas/laminas-coding-standard": "~1.0.0", + "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.2.x-dev", + "dev-develop": "1.3.x-dev" + } + }, "autoload": { "psr-4": { "Laminas\\Xml\\": "src/" @@ -20724,122 +12082,90 @@ "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": "2023-11-23T10:03:52+00:00" + "time": "2019-12-31T18:05:42+00:00" }, { - "name": "lcobucci/clock", - "version": "2.3.0", + "name": "laminas/laminas-zendframework-bridge", + "version": "1.0.4", "source": { "type": "git", - "url": "https://github.com/lcobucci/clock.git", - "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876" + "url": "https://github.com/laminas/laminas-zendframework-bridge.git", + "reference": "fcd87520e4943d968557803919523772475e8ea3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/lcobucci/clock/zipball/c7aadcd6fd97ed9e199114269c0be3f335e38876", - "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876", + "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/fcd87520e4943d968557803919523772475e8ea3", + "reference": "fcd87520e4943d968557803919523772475e8ea3", "shasum": "" }, "require": { - "php": "~8.1.0 || ~8.2.0", - "stella-maris/clock": "^0.1.7" - }, - "provide": { - "psr/clock-implementation": "1.0" + "php": "^5.6 || ^7.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" + "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1", + "squizlabs/php_codesniffer": "^3.5" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev", + "dev-develop": "1.1.x-dev" + }, + "laminas": { + "module": "Laminas\\ZendFrameworkBridge" + } + }, "autoload": { + "files": [ + "src/autoload.php" + ], "psr-4": { - "Lcobucci\\Clock\\": "src" + "Laminas\\ZendFrameworkBridge\\": "src//" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause" ], - "authors": [ - { - "name": "Luís Cobucci", - "email": "lcobucci@gmail.com" - } + "description": "Alias legacy ZF class names to Laminas Project equivalents.", + "keywords": [ + "ZendFramework", + "autoloading", + "laminas", + "zf" ], - "description": "Yet another clock abstraction", - "support": { - "issues": "https://github.com/lcobucci/clock/issues", - "source": "https://github.com/lcobucci/clock/tree/2.3.0" - }, - "funding": [ - { - "url": "https://github.com/lcobucci", - "type": "github" - }, - { - "url": "https://www.patreon.com/lcobucci", - "type": "patreon" - } - ], - "time": "2022-12-19T14:38:11+00:00" + "time": "2020-05-20T16:45:56+00:00" }, { "name": "lcobucci/jwt", - "version": "4.0.4", + "version": "3.3.3", "source": { "type": "git", "url": "https://github.com/lcobucci/jwt.git", - "reference": "55564265fddf810504110bd68ca311932324b0e9" + "reference": "c1123697f6a2ec29162b82f170dd4a491f524773" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/lcobucci/jwt/zipball/55564265fddf810504110bd68ca311932324b0e9", - "reference": "55564265fddf810504110bd68ca311932324b0e9", + "url": "https://api.github.com/repos/lcobucci/jwt/zipball/c1123697f6a2ec29162b82f170dd4a491f524773", + "reference": "c1123697f6a2ec29162b82f170dd4a491f524773", "shasum": "" }, "require": { "ext-mbstring": "*", "ext-openssl": "*", - "lcobucci/clock": "^2.0", - "php": "^7.4 || ^8.0" + "php": "^5.6 || ^7.0" }, "require-dev": { - "infection/infection": "^0.20", - "lcobucci/coding-standard": "^6.0", - "mikey179/vfsstream": "^1.6", - "phpbench/phpbench": "^0.17", - "phpstan/extension-installer": "^1.0", - "phpstan/phpstan": "^0.12", - "phpstan/phpstan-deprecation-rules": "^0.12", - "phpstan/phpstan-phpunit": "^0.12", - "phpstan/phpstan-strict-rules": "^0.12", - "phpunit/php-invoker": "^3.1", - "phpunit/phpunit": "^9.4" + "mikey179/vfsstream": "~1.5", + "phpmd/phpmd": "~2.2", + "phpunit/php-invoker": "~1.1", + "phpunit/phpunit": "^5.7 || ^7.3", + "squizlabs/php_codesniffer": "~2.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.0-dev" + "dev-master": "3.1-dev" } }, "autoload": { @@ -20853,7 +12179,7 @@ ], "authors": [ { - "name": "Luís Cobucci", + "name": "Luís Otávio Cobucci Oblonczyk", "email": "lcobucci@gmail.com", "role": "Developer" } @@ -20863,10 +12189,6 @@ "JWS", "jwt" ], - "support": { - "issues": "https://github.com/lcobucci/jwt/issues", - "source": "https://github.com/lcobucci/jwt/tree/4.0.4" - }, "funding": [ { "url": "https://github.com/lcobucci", @@ -20877,20 +12199,20 @@ "type": "patreon" } ], - "time": "2021-09-28T19:18:28+00:00" + "time": "2020-08-20T13:22:28+00:00" }, { "name": "league/commonmark", - "version": "1.6.7", + "version": "1.5.5", "source": { "type": "git", "url": "https://github.com/thephpleague/commonmark.git", - "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b" + "reference": "45832dfed6007b984c0d40addfac48d403dc6432" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/2b8185c13bc9578367a5bf901881d1c1b5bbd09b", - "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b", + "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/45832dfed6007b984c0d40addfac48d403dc6432", + "reference": "45832dfed6007b984c0d40addfac48d403dc6432", "shasum": "" }, "require": { @@ -20908,7 +12230,7 @@ "github/gfm": "0.29.0", "michelf/php-markdown": "~1.4", "mikehaertl/php-shellcommand": "^1.4", - "phpstan/phpstan": "^0.12.90", + "phpstan/phpstan": "^0.12", "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2", "scrutinizer/ocular": "^1.5", "symfony/finder": "^4.2" @@ -20946,13 +12268,11 @@ "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://enjoy.gitstore.app/repositories/thephpleague/commonmark", + "type": "custom" + }, { "url": "https://www.colinodell.com/sponsor", "type": "custom" @@ -20965,52 +12285,48 @@ "url": "https://github.com/colinodell", "type": "github" }, + { + "url": "https://www.patreon.com/colinodell", + "type": "patreon" + }, { "url": "https://tidelift.com/funding/github/packagist/league/commonmark", "type": "tidelift" } ], - "time": "2022-01-13T17:18:13+00:00" + "time": "2020-09-13T14:44:46+00:00" }, { "name": "league/container", - "version": "4.2.0", + "version": "2.4.1", "source": { "type": "git", "url": "https://github.com/thephpleague/container.git", - "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab" + "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/container/zipball/375d13cb828649599ef5d48a339c4af7a26cd0ab", - "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab", + "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-master": "4.x-dev", - "dev-4.x": "4.x-dev", - "dev-3.x": "3.x-dev", "dev-2.x": "2.x-dev", "dev-1.x": "1.x-dev" } @@ -21027,7 +12343,8 @@ "authors": [ { "name": "Phil Bennett", - "email": "mail@philbennett.co.uk", + "email": "philipobenito@gmail.com", + "homepage": "http://www.philipobenito.com", "role": "Developer" } ], @@ -21042,258 +12359,35 @@ "provider", "service" ], - "support": { - "issues": "https://github.com/thephpleague/container/issues", - "source": "https://github.com/thephpleague/container/tree/4.2.0" - }, - "funding": [ - { - "url": "https://github.com/philipobenito", - "type": "github" - } - ], - "time": "2021-11-16T10:29:06+00:00" - }, - { - "name": "league/csv", - "version": "9.14.0", - "source": { - "type": "git", - "url": "https://github.com/thephpleague/csv.git", - "reference": "34bf0df7340b60824b9449b5c526fcc3325070d5" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/thephpleague/csv/zipball/34bf0df7340b60824b9449b5c526fcc3325070d5", - "reference": "34bf0df7340b60824b9449b5c526fcc3325070d5", - "shasum": "" - }, - "require": { - "ext-filter": "*", - "ext-json": "*", - "ext-mbstring": "*", - "php": "^8.1.2" - }, - "require-dev": { - "doctrine/collections": "^2.1.4", - "ext-dom": "*", - "ext-xdebug": "*", - "friendsofphp/php-cs-fixer": "^v3.22.0", - "phpbench/phpbench": "^1.2.15", - "phpstan/phpstan": "^1.10.50", - "phpstan/phpstan-deprecation-rules": "^1.1.4", - "phpstan/phpstan-phpunit": "^1.3.15", - "phpstan/phpstan-strict-rules": "^1.5.2", - "phpunit/phpunit": "^10.5.3", - "symfony/var-dumper": "^6.4.0" - }, - "suggest": { - "ext-dom": "Required to use the XMLConverter and the HTMLConverter classes", - "ext-iconv": "Needed to ease transcoding CSV using iconv stream filters" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "9.x-dev" - } - }, - "autoload": { - "files": [ - "src/functions_include.php" - ], - "psr-4": { - "League\\Csv\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Ignace Nyamagana Butera", - "email": "nyamsprod@gmail.com", - "homepage": "https://github.com/nyamsprod/", - "role": "Developer" - } - ], - "description": "CSV data manipulation made easy in PHP", - "homepage": "https://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": "2023-12-29T07:34:53+00:00" - }, - { - "name": "league/oauth2-client", - "version": "2.7.0", - "source": { - "type": "git", - "url": "https://github.com/thephpleague/oauth2-client.git", - "reference": "160d6274b03562ebeb55ed18399281d8118b76c8" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/thephpleague/oauth2-client/zipball/160d6274b03562ebeb55ed18399281d8118b76c8", - "reference": "160d6274b03562ebeb55ed18399281d8118b76c8", - "shasum": "" - }, - "require": { - "guzzlehttp/guzzle": "^6.0 || ^7.0", - "paragonie/random_compat": "^1 || ^2 || ^9.99", - "php": "^5.6 || ^7.0 || ^8.0" - }, - "require-dev": { - "mockery/mockery": "^1.3.5", - "php-parallel-lint/php-parallel-lint": "^1.3.1", - "phpunit/phpunit": "^5.7 || ^6.0 || ^9.5", - "squizlabs/php_codesniffer": "^2.3 || ^3.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-2.x": "2.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "League\\OAuth2\\Client\\": "src/" - } - }, - "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.7.0" - }, - "time": "2023-04-16T18:19:15+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": "2017-05-10T09:20:27+00:00" }, { "name": "masterminds/html5", - "version": "2.8.1", + "version": "2.3.0", "source": { "type": "git", "url": "https://github.com/Masterminds/html5-php.git", - "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf" + "reference": "2c37c6c520b995b761674de3be8455a381679067" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f47dcf3c70c584de14f21143c55d9939631bc6cf", - "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf", + "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/2c37c6c520b995b761674de3be8455a381679067", + "reference": "2c37c6c520b995b761674de3be8455a381679067", "shasum": "" }, "require": { - "ext-dom": "*", + "ext-libxml": "*", "php": ">=5.3.0" }, "require-dev": { - "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8" + "phpunit/phpunit": "4.*", + "sami/sami": "~2.0", + "satooshi/php-coveralls": "1.0.*" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.7-dev" + "dev-master": "2.2-dev" } }, "autoload": { @@ -21310,13 +12404,13 @@ "name": "Matt Butcher", "email": "technosophos@gmail.com" }, - { - "name": "Matt Farina", - "email": "matt@mattfarina.com" - }, { "name": "Asmir Mustafic", "email": "goetas@gmail.com" + }, + { + "name": "Matt Farina", + "email": "matt@mattfarina.com" } ], "description": "An HTML5 parser and serializer.", @@ -21330,84 +12424,76 @@ "serializer", "xml" ], - "support": { - "issues": "https://github.com/Masterminds/html5-php/issues", - "source": "https://github.com/Masterminds/html5-php/tree/2.8.1" - }, - "time": "2023-05-10T11:58:31+00:00" + "time": "2017-09-04T12:26:28+00:00" }, { - "name": "mck89/peast", - "version": "v1.15.4", + "name": "mathieuviossat/arraytotexttable", + "version": "v1.0.8", "source": { "type": "git", - "url": "https://github.com/mck89/peast.git", - "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18" + "url": "https://github.com/viossat/arraytotexttable.git", + "reference": "6b1af924478cb9c3a903269e304fff006fe0dbf4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mck89/peast/zipball/1df4dc28a6b5bb7ab117ab073c1712256e954e18", - "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18", + "url": "https://api.github.com/repos/viossat/arraytotexttable/zipball/6b1af924478cb9c3a903269e304fff006fe0dbf4", + "reference": "6b1af924478cb9c3a903269e304fff006fe0dbf4", "shasum": "" }, "require": { - "ext-mbstring": "*", - "php": ">=5.4.0" - }, - "require-dev": { - "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0" + "laminas/laminas-text": "^2.7", + "php": ">=5.3.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.15.4-dev" - } - }, "autoload": { "psr-4": { - "Peast\\": "lib/Peast/" + "MathieuViossat\\Util\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause" + "MIT" ], "authors": [ { - "name": "Marco Marchiò", - "email": "marco.mm89@gmail.com" + "name": "Mathieu Viossat", + "email": "mathieu@viossat.fr", + "homepage": "https://viossat.fr" } ], - "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.15.4" - }, - "time": "2023-08-12T08:29:29+00:00" + "description": "Display arrays in terminal", + "homepage": "https://github.com/viossat/arraytotexttable", + "keywords": [ + "array", + "ascii", + "table", + "terminal", + "text", + "unicode" + ], + "time": "2020-06-23T17:14:22+00:00" }, { "name": "mf2/mf2", - "version": "v0.5.0", + "version": "0.4.6", "source": { "type": "git", "url": "https://github.com/microformats/php-mf2.git", - "reference": "ddc56de6be62ed4a21f569de9b80e17af678ca50" + "reference": "00b70ee7eb7f5b0585b1bd467f6c9cbd75055d23" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/microformats/php-mf2/zipball/ddc56de6be62ed4a21f569de9b80e17af678ca50", - "reference": "ddc56de6be62ed4a21f569de9b80e17af678ca50", + "url": "https://api.github.com/repos/microformats/php-mf2/zipball/00b70ee7eb7f5b0585b1bd467f6c9cbd75055d23", + "reference": "00b70ee7eb7f5b0585b1bd467f6c9cbd75055d23", "shasum": "" }, "require": { - "php": ">=5.6.0" + "php": ">=5.4.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" + "mf2/tests": "@dev", + "phpdocumentor/phpdocumentor": "v2.8.4", + "phpunit/phpunit": "4.8.*" }, "suggest": { "barnabywalters/mf-cleaner": "To more easily handle the canonical data php-mf2 gives you", @@ -21441,36 +12527,72 @@ "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" + "time": "2018-08-24T14:47:04+00:00" }, { - "name": "mikehaertl/php-shellcommand", - "version": "1.7.0", + "name": "mglaman/phpstan-drupal", + "version": "0.12.5", "source": { "type": "git", - "url": "https://github.com/mikehaertl/php-shellcommand.git", - "reference": "e79ea528be155ffdec6f3bf1a4a46307bb49e545" + "url": "https://github.com/mglaman/phpstan-drupal.git", + "reference": "f7676482b39184270eaba25cbd5e491144814a93" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mikehaertl/php-shellcommand/zipball/e79ea528be155ffdec6f3bf1a4a46307bb49e545", - "reference": "e79ea528be155ffdec6f3bf1a4a46307bb49e545", + "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/f7676482b39184270eaba25cbd5e491144814a93", + "reference": "f7676482b39184270eaba25cbd5e491144814a93", "shasum": "" }, "require": { - "php": ">= 5.3.0" + "nette/finder": "^2.5", + "php": "^7.1", + "phpstan/phpstan": "^0.12.26", + "symfony/yaml": "~3.4.5|^4.2", + "webflo/drupal-finder": "^1.2" }, "require-dev": { - "phpunit/phpunit": ">4.0 <=9.4" + "composer/installers": "^1.6", + "drupal/core-recommended": "^8.8@alpha", + "drush/drush": "^9.6", + "phpstan/phpstan-deprecation-rules": "~0.12.0", + "phpstan/phpstan-strict-rules": "^0.12.0", + "phpunit/phpunit": "^7.5", + "squizlabs/php_codesniffer": "^3.3" + }, + "suggest": { + "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core." + }, + "type": "phpstan-extension", + "extra": { + "branch-alias": { + "dev-master": "0.12-dev" + }, + "installer-paths": { + "tests/fixtures/drupal/core": [ + "type:drupal-core" + ], + "tests/fixtures/drupal/libraries/{$name}": [ + "type:drupal-library" + ], + "tests/fixtures/drupal/modules/contrib/{$name}": [ + "type:drupal-module" + ], + "tests/fixtures/drupal/profiles/contrib/{$name}": [ + "type:drupal-profile" + ], + "tests/fixtures/drupal/themes/contrib/{$name}": [ + "type:drupal-theme" + ] + }, + "phpstan": { + "includes": [ + "extension.neon" + ] + } }, - "type": "library", "autoload": { "psr-4": { - "mikehaertl\\shellcommand\\": "src/" + "PHPStan\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -21479,114 +12601,26 @@ ], "authors": [ { - "name": "Michael Härtl", - "email": "haertl.mike@gmail.com" + "name": "Matt Glaman", + "email": "nmd.matt@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.2.1", - "source": { - "type": "git", - "url": "https://github.com/mikehaertl/php-tmpfile.git", - "reference": "70a5b70b17bc0d9666388e6a551ecc93d0b40a10" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/mikehaertl/php-tmpfile/zipball/70a5b70b17bc0d9666388e6a551ecc93d0b40a10", - "reference": "70a5b70b17bc0d9666388e6a551ecc93d0b40a10", - "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": [ + "description": "Drupal extension and rules for PHPStan", + "funding": [ { - "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.2.1" - }, - "time": "2021-03-01T18:26:25+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": [ + "url": "https://github.com/mglaman", + "type": "github" + }, { - "name": "Michael Haertl", - "email": "haertl.mike@gmail.com" + "url": "https://ko-fi.com/mglaman", + "type": "ko_fi" + }, + { + "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal", + "type": "tidelift" } ], - "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" + "time": "2020-07-26T17:10:56+00:00" }, { "name": "mkalkbrenner/php-htmldiff-advanced", @@ -21623,375 +12657,161 @@ "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.2", + "name": "nette/finder", + "version": "v2.5.2", "source": { "type": "git", - "url": "https://github.com/mpdf/mpdf.git", - "reference": "596a87b876d7793be7be060a8ac13424de120dd5" + "url": "https://github.com/nette/finder.git", + "reference": "4ad2c298eb8c687dd0e74ae84206a4186eeaed50" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mpdf/mpdf/zipball/596a87b876d7793be7be060a8ac13424de120dd5", - "reference": "596a87b876d7793be7be060a8ac13424de120dd5", + "url": "https://api.github.com/repos/nette/finder/zipball/4ad2c298eb8c687dd0e74ae84206a4186eeaed50", + "reference": "4ad2c298eb8c687dd0e74ae84206a4186eeaed50", "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", - "psr/http-message": "^1.0 || ^2.0", - "psr/log": "^1.0 || ^2.0 || ^3.0", - "setasign/fpdi": "^2.1" + "nette/utils": "^2.4 || ^3.0", + "php": ">=7.1" + }, + "conflict": { + "nette/nette": "<2.2" }, "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" + "nette/tester": "^2.0", + "phpstan/phpstan": "^0.12", + "tracy/tracy": "^2.3" }, - "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": "http://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": "2023-11-07T13:52:14+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": "mtdowling/jmespath.php", - "version": "2.7.0", - "source": { - "type": "git", - "url": "https://github.com/jmespath/jmespath.php.git", - "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/bbb69a935c2cbb0c03d7f481a238027430f6440b", - "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b", - "shasum": "" - }, - "require": { - "php": "^7.2.5 || ^8.0", - "symfony/polyfill-mbstring": "^1.17" - }, - "require-dev": { - "composer/xdebug-handler": "^3.0.3", - "phpunit/phpunit": "^8.5.33" - }, - "bin": [ - "bin/jp.php" - ], "type": "library", "extra": { "branch-alias": { - "dev-master": "2.7-dev" + "dev-master": "2.5-dev" } }, "autoload": { - "files": [ - "src/JmesPath.php" - ], - "psr-4": { - "JmesPath\\": "src/" - } + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause", + "GPL-2.0", + "GPL-3.0" ], "authors": [ { - "name": "Graham Campbell", - "email": "hello@gjcampbell.co.uk", - "homepage": "https://github.com/GrahamCampbell" + "name": "David Grudl", + "homepage": "https://davidgrudl.com" }, { - "name": "Michael Dowling", - "email": "mtdowling@gmail.com", - "homepage": "https://github.com/mtdowling" + "name": "Nette Community", + "homepage": "https://nette.org/contributors" } ], - "description": "Declaratively specify how to extract elements from a JSON document", + "description": "🔍 Nette Finder: find files and directories with an intuitive API.", + "homepage": "https://nette.org", "keywords": [ - "json", - "jsonpath" + "filesystem", + "glob", + "iterator", + "nette" ], - "support": { - "issues": "https://github.com/jmespath/jmespath.php/issues", - "source": "https://github.com/jmespath/jmespath.php/tree/2.7.0" - }, - "time": "2023-08-25T10:54:48+00:00" + "time": "2020-01-03T20:35:40+00:00" }, { - "name": "mtownsend/xml-to-array", - "version": "2.0.0", + "name": "nette/utils", + "version": "v3.1.3", "source": { "type": "git", - "url": "https://github.com/mtownsend5512/xml-to-array.git", - "reference": "0734720a8462dba36d90fb8b2723bf46af0091f4" + "url": "https://github.com/nette/utils.git", + "reference": "c09937fbb24987b2a41c6022ebe84f4f1b8eec0f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mtownsend5512/xml-to-array/zipball/0734720a8462dba36d90fb8b2723bf46af0091f4", - "reference": "0734720a8462dba36d90fb8b2723bf46af0091f4", + "url": "https://api.github.com/repos/nette/utils/zipball/c09937fbb24987b2a41c6022ebe84f4f1b8eec0f", + "reference": "c09937fbb24987b2a41c6022ebe84f4f1b8eec0f", "shasum": "" }, "require": { - "php": "~7.0|~8.0" + "php": ">=7.1" }, "require-dev": { - "phpunit/phpunit": "^6.4" + "nette/tester": "~2.0", + "phpstan/phpstan": "^0.12", + "tracy/tracy": "^2.3" + }, + "suggest": { + "ext-gd": "to use Image", + "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()", + "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()", + "ext-json": "to use Nette\\Utils\\Json", + "ext-mbstring": "to use Strings::lower() etc...", + "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()", + "ext-xml": "to use Strings::length() etc. when mbstring is not available" }, "type": "library", - "autoload": { - "files": [ - "src/helpers.php" - ], - "psr-4": { - "Mtownsend\\XmlToArray\\": "src" + "extra": { + "branch-alias": { + "dev-master": "3.1-dev" } }, + "autoload": { + "classmap": [ + "src/" + ] + }, "notification-url": "https://packagist.org/downloads/", "license": [ - "MIT" + "BSD-3-Clause", + "GPL-2.0-only", + "GPL-3.0-only" ], "authors": [ { - "name": "Mark Townsend", - "email": "mtownsend5512@gmail.com", - "role": "Developer" + "name": "David Grudl", + "homepage": "https://davidgrudl.com" + }, + { + "name": "Nette Community", + "homepage": "https://nette.org/contributors" } ], - "description": "Easily convert valid xml to a php array.", + "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.", + "homepage": "https://nette.org", "keywords": [ "array", - "convert", - "laravel", - "xml" + "core", + "datetime", + "images", + "json", + "nette", + "paginator", + "password", + "slugify", + "string", + "unicode", + "utf-8", + "utility", + "validation" ], - "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": "myclabs/deep-copy", - "version": "1.11.1", - "source": { - "type": "git", - "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", - "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c", - "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", - "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.11.1" - }, - "funding": [ - { - "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", - "type": "tidelift" - } - ], - "time": "2023-03-08T13:26:56+00:00" + "time": "2020-08-07T10:34:21+00:00" }, { "name": "nikic/php-parser", - "version": "v4.18.0", + "version": "v4.9.1", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999" + "reference": "88e519766fc58bd46b8265561fb79b54e2e00b28" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/1bcbb2179f97633e98bbbc87044ee2611c7d7999", - "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/88e519766fc58bd46b8265561fb79b54e2e00b28", + "reference": "88e519766fc58bd46b8265561fb79b54e2e00b28", "shasum": "" }, "require": { @@ -22030,24 +12850,20 @@ "parser", "php" ], - "support": { - "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v4.18.0" - }, - "time": "2023-12-10T21:03:43+00:00" + "time": "2020-08-30T16:15:20+00:00" }, { "name": "p3k/http", - "version": "0.1.12", + "version": "0.1.11", "source": { "type": "git", "url": "https://github.com/aaronpk/p3k-http.git", - "reference": "cf9c5b7cdbe1800bfb9587a20953ed8d20322e0b" + "reference": "24d28287e0c5606aa45b23c6e3c17628d89468f7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aaronpk/p3k-http/zipball/cf9c5b7cdbe1800bfb9587a20953ed8d20322e0b", - "reference": "cf9c5b7cdbe1800bfb9587a20953ed8d20322e0b", + "url": "https://api.github.com/repos/aaronpk/p3k-http/zipball/24d28287e0c5606aa45b23c6e3c17628d89468f7", + "reference": "24d28287e0c5606aa45b23c6e3c17628d89468f7", "shasum": "" }, "require": { @@ -22072,24 +12888,20 @@ ], "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.12" - }, - "time": "2021-10-12T14:12:29+00:00" + "time": "2020-02-19T03:00:09+00:00" }, { "name": "p3k/micropub", - "version": "0.0.3", + "version": "0.0.2", "source": { "type": "git", "url": "https://github.com/aaronpk/p3k-micropub.git", - "reference": "9e3b2f7c1d4d40fef5cbd955689b8e7392a6976d" + "reference": "a2ba03d6eb4d6ac2db7430f499c9ef26791d8cd6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aaronpk/p3k-micropub/zipball/9e3b2f7c1d4d40fef5cbd955689b8e7392a6976d", - "reference": "9e3b2f7c1d4d40fef5cbd955689b8e7392a6976d", + "url": "https://api.github.com/repos/aaronpk/p3k-micropub/zipball/a2ba03d6eb4d6ac2db7430f499c9ef26791d8cd6", + "reference": "a2ba03d6eb4d6ac2db7430f499c9ef26791d8cd6", "shasum": "" }, "require": { @@ -22120,11 +12932,7 @@ "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" + "time": "2018-02-06T16:53:58+00:00" }, { "name": "p3k/picofeed", @@ -22180,10 +12988,6 @@ ], "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" }, { @@ -22226,24 +13030,20 @@ "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", + "version": "1.2.0", "source": { "type": "git", "url": "https://github.com/aaronpk/p3k-utils.git", - "reference": "8436f02ec02d916177a23250ae32b34ae5316942" + "reference": "ecd0ba1afca8e586f09792f7be5052e142d3cbde" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aaronpk/p3k-utils/zipball/8436f02ec02d916177a23250ae32b34ae5316942", - "reference": "8436f02ec02d916177a23250ae32b34ae5316942", + "url": "https://api.github.com/repos/aaronpk/p3k-utils/zipball/ecd0ba1afca8e586f09792f7be5052e142d3cbde", + "reference": "ecd0ba1afca8e586f09792f7be5052e142d3cbde", "shasum": "" }, "require": { @@ -22276,11 +13076,7 @@ ], "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" + "time": "2018-03-28T13:44:56+00:00" }, { "name": "p3k/websub", @@ -22330,51 +13126,48 @@ "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.13.0", + "version": "v1.11.0", "source": { "type": "git", "url": "https://github.com/aaronpk/XRay.git", - "reference": "ea1f054bdc1e1008fc064d7cb3d44352992eb03b" + "reference": "9edc99ce3c9815c447ede66fc55fd52550391cfd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aaronpk/XRay/zipball/ea1f054bdc1e1008fc064d7cb3d44352992eb03b", - "reference": "ea1f054bdc1e1008fc064d7cb3d44352992eb03b", + "url": "https://api.github.com/repos/aaronpk/XRay/zipball/9edc99ce3c9815c447ede66fc55fd52550391cfd", + "reference": "9edc99ce3c9815c447ede66fc55fd52550391cfd", "shasum": "" }, "require": { - "cebe/markdown": "^1.1.0", - "dg/twitter-php": "^3.0.0", + "cebe/markdown": "1.1.*", + "dg/twitter-php": "3.6.*", "ezyang/htmlpurifier": "^4.10", - "indieweb/link-rel-parser": "^0.1.0", + "facebook/graph-sdk": "^5.5", + "indieweb/link-rel-parser": "0.1.*", "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" + "mf2/mf2": "^0.4", + "p3k/http": ">=0.1.11", + "p3k/picofeed": ">=0.1.39", + "p3k/timezone": "*" }, "require-dev": { - "league/plates": "^3.0", - "league/route": "^1.0", - "phpunit/phpunit": "^8.0.0|^9.0.0" + "league/plates": "3.*", + "league/route": "1.*", + "phpunit/phpunit": "4.8.*" }, "type": "library", "autoload": { + "psr-4": { + "p3k\\XRay\\": "lib/XRay" + }, "files": [ "lib/helpers.php", "lib/XRay.php" - ], - "psr-4": { - "p3k\\XRay\\": "lib/XRay" - } + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -22382,95 +13175,24 @@ ], "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.13.0" - }, - "time": "2024-02-02T15:26:02+00:00" - }, - { - "name": "paragonie/constant_time_encoding", - "version": "v2.6.3", - "source": { - "type": "git", - "url": "https://github.com/paragonie/constant_time_encoding.git", - "reference": "58c3f47f650c94ec05a151692652a868995d2938" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/58c3f47f650c94ec05a151692652a868995d2938", - "reference": "58c3f47f650c94ec05a151692652a868995d2938", - "shasum": "" - }, - "require": { - "php": "^7|^8" - }, - "require-dev": { - "phpunit/phpunit": "^6|^7|^8|^9", - "vimeo/psalm": "^1|^2|^3|^4" - }, - "type": "library", - "autoload": { - "psr-4": { - "ParagonIE\\ConstantTime\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Paragon Initiative Enterprises", - "email": "security@paragonie.com", - "homepage": "https://paragonie.com", - "role": "Maintainer" - }, - { - "name": "Steve 'Sc00bz' Thomas", - "email": "steve@tobtu.com", - "homepage": "https://www.tobtu.com", - "role": "Original Developer" - } - ], - "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)", - "keywords": [ - "base16", - "base32", - "base32_decode", - "base32_encode", - "base64", - "base64_decode", - "base64_encode", - "bin2hex", - "encoding", - "hex", - "hex2bin", - "rfc4648" - ], - "support": { - "email": "info@paragonie.com", - "issues": "https://github.com/paragonie/constant_time_encoding/issues", - "source": "https://github.com/paragonie/constant_time_encoding" - }, - "time": "2022-06-14T06:56:20+00:00" + "time": "2020-05-11T00:18:56+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.*", @@ -22498,25 +13220,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.4.14", + "version": "1.4.9", "source": { "type": "git", "url": "https://github.com/pear/Archive_Tar.git", - "reference": "4d761c5334c790e45ef3245f0864b8955c562caa" + "reference": "c5b00053770e1d72128252c62c2c1a12c26639f0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa", - "reference": "4d761c5334c790e45ef3245f0864b8955c562caa", + "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/c5b00053770e1d72128252c62c2c1a12c26639f0", + "reference": "c5b00053770e1d72128252c62c2c1a12c26639f0", "shasum": "" }, "require": { @@ -22569,21 +13286,7 @@ "archive", "tar" ], - "support": { - "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar", - "source": "https://github.com/pear/Archive_Tar" - }, - "funding": [ - { - "url": "https://github.com/mrook", - "type": "github" - }, - { - "url": "https://www.patreon.com/michielrook", - "type": "patreon" - } - ], - "time": "2021-07-20T13:53:39+00:00" + "time": "2019-12-04T10:17:28+00:00" }, { "name": "pear/console_getopt", @@ -22630,30 +13333,25 @@ } ], "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" }, { "name": "pear/pear-core-minimal", - "version": "v1.10.14", + "version": "v1.10.10", "source": { "type": "git", "url": "https://github.com/pear/pear-core-minimal.git", - "reference": "a86fc145edb5caedbf96527214ce3cadc9de4a32" + "reference": "625a3c429d9b2c1546438679074cac1b089116a7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/a86fc145edb5caedbf96527214ce3cadc9de4a32", - "reference": "a86fc145edb5caedbf96527214ce3cadc9de4a32", + "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7", + "reference": "625a3c429d9b2c1546438679074cac1b089116a7", "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" @@ -22679,31 +13377,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": "2023-11-26T16:15:38+00:00" + "time": "2019-11-19T19:00:24+00:00" }, { "name": "pear/pear_exception", - "version": "v1.0.2", + "version": "v1.0.1", "source": { "type": "git", "url": "https://github.com/pear/PEAR_Exception.git", - "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0" + "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7" }, "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/dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7", + "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7", "shasum": "" }, "require": { - "php": ">=5.2.0" + "php": ">=4.4.0" }, "require-dev": { - "phpunit/phpunit": "<9" + "phpunit/phpunit": "*" }, "type": "class", "extra": { @@ -22738,641 +13432,146 @@ "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": "2019-12-10T10:24:42+00:00" }, { - "name": "phenx/php-font-lib", - "version": "0.5.6", + "name": "phpstan/phpstan", + "version": "0.12.42", "source": { "type": "git", - "url": "https://github.com/dompdf/php-font-lib.git", - "reference": "a1681e9793040740a405ac5b189275059e2a9863" + "url": "https://github.com/phpstan/phpstan.git", + "reference": "7c43b7c2d5ca6554f6231e82e342a710163ac5f4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/a1681e9793040740a405ac5b189275059e2a9863", - "reference": "a1681e9793040740a405ac5b189275059e2a9863", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/7c43b7c2d5ca6554f6231e82e342a710163ac5f4", + "reference": "7c43b7c2d5ca6554f6231e82e342a710163ac5f4", "shasum": "" }, "require": { - "ext-mbstring": "*" + "php": "^7.1|^8.0" }, - "require-dev": { - "symfony/phpunit-bridge": "^3 || ^4 || ^5 || ^6" + "conflict": { + "phpstan/phpstan-shim": "*" }, - "type": "library", - "autoload": { - "psr-4": { - "FontLib\\": "src/FontLib" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "LGPL-2.1-or-later" + "bin": [ + "phpstan", + "phpstan.phar" ], - "authors": [ - { - "name": "Fabien Ménager", - "email": "fabien.menager@gmail.com" - } - ], - "description": "A library to read, parse, export and make subsets of different types of font files.", - "homepage": "https://github.com/PhenX/php-font-lib", - "support": { - "issues": "https://github.com/dompdf/php-font-lib/issues", - "source": "https://github.com/dompdf/php-font-lib/tree/0.5.6" - }, - "time": "2024-01-29T14:45:26+00:00" - }, - { - "name": "phenx/php-svg-lib", - "version": "0.5.2", - "source": { - "type": "git", - "url": "https://github.com/dompdf/php-svg-lib.git", - "reference": "732faa9fb4309221e2bd9b2fda5de44f947133aa" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/dompdf/php-svg-lib/zipball/732faa9fb4309221e2bd9b2fda5de44f947133aa", - "reference": "732faa9fb4309221e2bd9b2fda5de44f947133aa", - "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" - ], - "authors": [ - { - "name": "Fabien Ménager", - "email": "fabien.menager@gmail.com" - } - ], - "description": "A library to read, parse and export to PDF SVG files.", - "homepage": "https://github.com/PhenX/php-svg-lib", - "support": { - "issues": "https://github.com/dompdf/php-svg-lib/issues", - "source": "https://github.com/dompdf/php-svg-lib/tree/0.5.2" - }, - "time": "2024-02-07T12:49:40+00:00" - }, - { - "name": "phootwork/collection", - "version": "v3.2.2", - "source": { - "type": "git", - "url": "https://github.com/phootwork/collection.git", - "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa", - "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa", - "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.2" - }, - "time": "2022-08-27T12:51:24+00:00" - }, - { - "name": "phootwork/lang", - "version": "v3.2.2", - "source": { - "type": "git", - "url": "https://github.com/phootwork/lang.git", - "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phootwork/lang/zipball/baaf154ae7d521ebeee5e89105f5b12b0f234597", - "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597", - "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.2" - }, - "time": "2023-05-26T05:37:59+00:00" - }, - { - "name": "phpcollection/phpcollection", - "version": "0.6.0", - "source": { - "type": "git", - "url": "https://github.com/schmittjoh/php-collection.git", - "reference": "56d18c8c2c0400f2838703246ac7de919a605763" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/schmittjoh/php-collection/zipball/56d18c8c2c0400f2838703246ac7de919a605763", - "reference": "56d18c8c2c0400f2838703246ac7de919a605763", - "shasum": "" - }, - "require": { - "phpoption/phpoption": "1.*" - }, - "require-dev": { - "phpunit/phpunit": "^9.5" - }, "type": "library", "extra": { "branch-alias": { - "dev-master": "0.4-dev" + "dev-master": "0.12-dev" } }, - "autoload": { - "psr-0": { - "PhpCollection": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "Apache2" - ], - "authors": [ - { - "name": "Johannes M. Schmitt", - "email": "schmittjoh@gmail.com" - } - ], - "description": "General-Purpose Collection Library for PHP", - "keywords": [ - "collection", - "list", - "map", - "sequence", - "set" - ], - "support": { - "issues": "https://github.com/schmittjoh/php-collection/issues", - "source": "https://github.com/schmittjoh/php-collection/tree/0.6.0" - }, - "time": "2022-03-21T13:02:41+00:00" - }, - { - "name": "phpoption/phpoption", - "version": "1.9.2", - "source": { - "type": "git", - "url": "https://github.com/schmittjoh/php-option.git", - "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820", - "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820", - "shasum": "" - }, - "require": { - "php": "^7.2.5 || ^8.0" - }, - "require-dev": { - "bamarni/composer-bin-plugin": "^1.8.2", - "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2" - }, - "type": "library", - "extra": { - "bamarni-bin": { - "bin-links": true, - "forward-command": true - }, - "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.2" - }, - "funding": [ - { - "url": "https://github.com/GrahamCampbell", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption", - "type": "tidelift" - } - ], - "time": "2023-11-12T21:59:55+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": "phpseclib/phpseclib", - "version": "3.0.35", - "source": { - "type": "git", - "url": "https://github.com/phpseclib/phpseclib.git", - "reference": "4b1827beabce71953ca479485c0ae9c51287f2fe" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/4b1827beabce71953ca479485c0ae9c51287f2fe", - "reference": "4b1827beabce71953ca479485c0ae9c51287f2fe", - "shasum": "" - }, - "require": { - "paragonie/constant_time_encoding": "^1|^2", - "paragonie/random_compat": "^1.4|^2.0|^9.99.99", - "php": ">=5.6.1" - }, - "require-dev": { - "phpunit/phpunit": "*" - }, - "suggest": { - "ext-dom": "Install the DOM extension to load XML formatted public keys.", - "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.", - "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.", - "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.", - "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations." - }, - "type": "library", "autoload": { "files": [ - "phpseclib/bootstrap.php" - ], - "psr-4": { - "phpseclib3\\": "phpseclib/" - } + "bootstrap.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "authors": [ - { - "name": "Jim Wigginton", - "email": "terrafrost@php.net", - "role": "Lead Developer" - }, - { - "name": "Patrick Monnerat", - "email": "pm@datasphere.ch", - "role": "Developer" - }, - { - "name": "Andreas Fischer", - "email": "bantu@phpbb.com", - "role": "Developer" - }, - { - "name": "Hans-Jürgen Petrich", - "email": "petrich@tronic-media.com", - "role": "Developer" - }, - { - "name": "Graham Campbell", - "email": "graham@alt-three.com", - "role": "Developer" - } - ], - "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.", - "homepage": "http://phpseclib.sourceforge.net", - "keywords": [ - "BigInteger", - "aes", - "asn.1", - "asn1", - "blowfish", - "crypto", - "cryptography", - "encryption", - "rsa", - "security", - "sftp", - "signature", - "signing", - "ssh", - "twofish", - "x.509", - "x509" - ], - "support": { - "issues": "https://github.com/phpseclib/phpseclib/issues", - "source": "https://github.com/phpseclib/phpseclib/tree/3.0.35" - }, + "description": "PHPStan - PHP Static Analysis Tool", "funding": [ { - "url": "https://github.com/terrafrost", + "url": "https://github.com/ondrejmirtes", "type": "github" }, { - "url": "https://www.patreon.com/phpseclib", + "url": "https://www.patreon.com/phpstan", "type": "patreon" }, { - "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib", + "url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan", "type": "tidelift" } ], - "time": "2023-12-29T01:59:53+00:00" + "time": "2020-09-02T13:14:53+00:00" }, { - "name": "platformsh/client", - "version": "2.5.1", + "name": "phpstan/phpstan-deprecation-rules", + "version": "0.12.5", "source": { "type": "git", - "url": "https://github.com/platformsh/platformsh-client-php.git", - "reference": "a8744d8a4dedff4a22c47d714045885005c32624" + "url": "https://github.com/phpstan/phpstan-deprecation-rules.git", + "reference": "bfabc6a1b4617fbcbff43f03a4c04eae9bafae21" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/platformsh/platformsh-client-php/zipball/a8744d8a4dedff4a22c47d714045885005c32624", - "reference": "a8744d8a4dedff4a22c47d714045885005c32624", + "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/bfabc6a1b4617fbcbff43f03a4c04eae9bafae21", + "reference": "bfabc6a1b4617fbcbff43f03a4c04eae9bafae21", "shasum": "" }, "require": { - "cocur/slugify": "^3.0", - "ext-json": "*", - "guzzlehttp/guzzle": "^6.3 || ^7.0", - "php": ">=7.1.0", - "platformsh/oauth2": ">=0.0.3 <2" + "php": "^7.1 || ^8.0", + "phpstan/phpstan": "^0.12.26" }, "require-dev": { - "phpunit/phpunit": "^7.0" + "consistence/coding-standard": "^3.0.1", + "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", + "ergebnis/composer-normalize": "^2.0.2", + "jakub-onderka/php-parallel-lint": "^1.0", + "phing/phing": "^2.16.0", + "phpstan/phpstan-phpunit": "^0.12", + "phpunit/phpunit": "^7.0", + "slevomat/coding-standard": "^4.5.2" + }, + "type": "phpstan-extension", + "extra": { + "branch-alias": { + "dev-master": "0.12-dev" + }, + "phpstan": { + "includes": [ + "rules.neon" + ] + } }, - "type": "library", "autoload": { "psr-4": { - "Platformsh\\Client\\": "src" + "PHPStan\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "authors": [ - { - "name": "Patrick Dawkins" - } - ], - "description": "Platform.sh API client", - "support": { - "issues": "https://github.com/platformsh/platformsh-client-php/issues", - "source": "https://github.com/platformsh/platformsh-client-php/tree/2.5.1" - }, - "time": "2021-10-20T20:22:39+00:00" + "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.", + "time": "2020-07-21T14:52:30+00:00" }, { - "name": "platformsh/oauth2", - "version": "0.0.3", - "source": { - "type": "git", - "url": "https://github.com/platformsh/platformsh-oauth2-php.git", - "reference": "5daa2274b4cbc95658e5b32ebe4f05b5090e4549" - }, + "name": "progress-tracker/progress-tracker", + "version": "2.0.6", "dist": { "type": "zip", - "url": "https://api.github.com/repos/platformsh/platformsh-oauth2-php/zipball/5daa2274b4cbc95658e5b32ebe4f05b5090e4549", - "reference": "5daa2274b4cbc95658e5b32ebe4f05b5090e4549", - "shasum": "" + "url": "https://github.com/NigelOToole/progress-tracker/archive/2.0.6.zip" }, "require": { - "league/oauth2-client": "^2.2", - "php": ">=5.6.0" - }, - "require-dev": { - "phpunit/phpunit": "^5.7" - }, - "type": "library", - "autoload": { - "psr-4": { - "Platformsh\\OAuth2\\Client\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Patrick Dawkins" - } - ], - "description": "Platform.sh OAuth2 client", - "support": { - "issues": "https://github.com/platformsh/platformsh-oauth2-php/issues", - "source": "https://github.com/platformsh/platformsh-oauth2-php/tree/0.0.3" - }, - "time": "2021-10-20T20:12:14+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": "" + "composer/installers": "~1.0" }, "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" + "extra": { + "installer-name": "progress-tracker" + } }, { - "name": "psr/cache", - "version": "3.0.0", + "name": "psr/container", + "version": "1.0.0", "source": { "type": "git", - "url": "https://github.com/php-fig/cache.git", - "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf" + "url": "https://github.com/php-fig/container.git", + "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf", - "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf", + "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f", + "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f", "shasum": "" }, "require": { - "php": ">=8.0.0" + "php": ">=5.3.0" }, "type": "library", "extra": { @@ -23380,103 +13579,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/" @@ -23489,7 +13591,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)", @@ -23501,28 +13603,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": { @@ -23532,7 +13630,7 @@ }, "autoload": { "psr-4": { - "Psr\\EventDispatcher\\": "src/" + "Psr\\Http\\Message\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -23545,163 +13643,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.0.2", - "source": { - "type": "git", - "url": "https://github.com/php-fig/http-factory.git", - "reference": "e616d01114759c4c489f93b099585439f795fe35" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35", - "reference": "e616d01114759c4c489f93b099585439f795fe35", - "shasum": "" - }, - "require": { - "php": ">=7.0.0", - "psr/http-message": "^1.0 || ^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": "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/tree/1.0.2" - }, - "time": "2023-04-10T20:10:41+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": [ @@ -23712,37 +13653,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.0", + "version": "1.1.3", "source": { "type": "git", "url": "https://github.com/php-fig/log.git", - "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001" + "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001", - "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001", + "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc", + "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc", "shasum": "" }, "require": { - "php": ">=8.0.0" + "php": ">=5.3.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.x-dev" + "dev-master": "1.1.x-dev" } }, "autoload": { "psr-4": { - "Psr\\Log\\": "src" + "Psr\\Log\\": "Psr/Log/" } }, "notification-url": "https://packagist.org/downloads/", @@ -23752,7 +13690,7 @@ "authors": [ { "name": "PHP-FIG", - "homepage": "https://www.php-fig.org/" + "homepage": "http://www.php-fig.org/" } ], "description": "Common interface for logging libraries", @@ -23762,43 +13700,41 @@ "psr", "psr-3" ], - "support": { - "source": "https://github.com/php-fig/log/tree/3.0.0" - }, - "time": "2021-07-14T16:46:02+00:00" + "time": "2020-03-23T09:12:05+00:00" }, { "name": "psy/psysh", - "version": "v0.12.0", + "version": "v0.10.4", "source": { "type": "git", "url": "https://github.com/bobthecow/psysh.git", - "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d" + "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bobthecow/psysh/zipball/750bf031a48fd07c673dbe3f11f72362ea306d0d", - "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a8aec1b2981ab66882a01cce36a49b6317dc3560", + "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560", "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" + "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3", + "php": "^8.0 || ^7.0 || ^5.5.9", + "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10", + "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.2" + "bamarni/composer-bin-plugin": "^1.2", + "hoa/console": "3.17.*" }, "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" @@ -23806,11 +13742,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "0.12.x-dev" - }, - "bamarni-bin": { - "bin-links": false, - "forward-command": false + "dev-master": "0.10.x-dev" } }, "autoload": { @@ -23840,11 +13772,7 @@ "interactive", "shell" ], - "support": { - "issues": "https://github.com/bobthecow/psysh/issues", - "source": "https://github.com/bobthecow/psysh/tree/v0.12.0" - }, - "time": "2023-12-20T15:28:09+00:00" + "time": "2020-05-03T19:32:03+00:00" }, { "name": "ralouphie/getallheaders", @@ -23884,45 +13812,54 @@ } ], "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.5.1", + "name": "signature_pad/signature_pad", + "version": "2.3.0", + "dist": { + "type": "zip", + "url": "https://github.com/szimek/signature_pad/archive/v2.3.0.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "drupal-library", + "extra": { + "installer-name": "signature_pad" + } + }, + { + "name": "stack/builder", + "version": "v1.0.5", "source": { "type": "git", - "url": "https://github.com/MyIntervals/PHP-CSS-Parser.git", - "reference": "4a3d572b0f8b28bb6fd016ae8bbfc445facef152" + "url": "https://github.com/stackphp/builder.git", + "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/MyIntervals/PHP-CSS-Parser/zipball/4a3d572b0f8b28bb6fd016ae8bbfc445facef152", - "reference": "4a3d572b0f8b28bb6fd016ae8bbfc445facef152", + "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a", + "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a", "shasum": "" }, "require": { - "ext-iconv": "*", - "php": ">=5.6.20" + "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" - }, - "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/", @@ -23931,354 +13868,28 @@ ], "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.5.1" - }, - "time": "2024-02-15T16:41:13+00:00" - }, - { - "name": "sebastian/diff", - "version": "4.0.5", - "source": { - "type": "git", - "url": "https://github.com/sebastianbergmann/diff.git", - "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131", - "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131", - "shasum": "" - }, - "require": { - "php": ">=7.3" - }, - "require-dev": { - "phpunit/phpunit": "^9.3", - "symfony/process": "^4.2 || ^5" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.0-dev" - } - }, - "autoload": { - "classmap": [ - "src/" - ] - }, - "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.5" - }, - "funding": [ - { - "url": "https://github.com/sebastianbergmann", - "type": "github" - } - ], - "time": "2023-05-07T05:35:17+00:00" - }, - { - "name": "setasign/fpdi", - "version": "v2.6.0", - "source": { - "type": "git", - "url": "https://github.com/Setasign/FPDI.git", - "reference": "a6db878129ec6c7e141316ee71872923e7f1b7ad" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Setasign/FPDI/zipball/a6db878129ec6c7e141316ee71872923e7f1b7ad", - "reference": "a6db878129ec6c7e141316ee71872923e7f1b7ad", - "shasum": "" - }, - "require": { - "ext-zlib": "*", - "php": "^5.6 || ^7.0 || ^8.0" - }, - "conflict": { - "setasign/tfpdf": "<1.31" - }, - "require-dev": { - "phpunit/phpunit": "~5.7", - "setasign/fpdf": "~1.8.6", - "setasign/tfpdf": "~1.33", - "squizlabs/php_codesniffer": "^3.5", - "tecnickcom/tcpdf": "~6.2" - }, - "suggest": { - "setasign/fpdf": "FPDI will extend this class but as it is also possible to use TCPDF or tFPDF as an alternative. There's no fixed dependency configured." - }, - "type": "library", - "autoload": { - "psr-4": { - "setasign\\Fpdi\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Jan Slabon", - "email": "jan.slabon@setasign.com", - "homepage": "https://www.setasign.com" - }, - { - "name": "Maximilian Kresse", - "email": "maximilian.kresse@setasign.com", - "homepage": "https://www.setasign.com" - } - ], - "description": "FPDI is a collection of PHP classes facilitating developers to read pages from existing PDF documents and use them as templates in FPDF. Because it is also possible to use FPDI with TCPDF, there are no fixed dependencies defined. Please see suggestions for packages which evaluates the dependencies automatically.", - "homepage": "https://www.setasign.com/fpdi", - "keywords": [ - "fpdf", - "fpdi", - "pdf" - ], - "support": { - "issues": "https://github.com/Setasign/FPDI/issues", - "source": "https://github.com/Setasign/FPDI/tree/v2.6.0" - }, - "funding": [ - { - "url": "https://tidelift.com/funding/github/packagist/setasign/fpdi", - "type": "tidelift" - } - ], - "time": "2023-12-11T16:03:32+00:00" - }, - { - "name": "simshaun/recurr", - "version": "v5.0.2", - "source": { - "type": "git", - "url": "https://github.com/simshaun/recurr.git", - "reference": "1aff62e6e0ee875b3f2487352542605123ee9172" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/simshaun/recurr/zipball/1aff62e6e0ee875b3f2487352542605123ee9172", - "reference": "1aff62e6e0ee875b3f2487352542605123ee9172", - "shasum": "" - }, - "require": { - "doctrine/collections": "~1.6||^2.0", - "php": "^7.2||^8.0" - }, - "require-dev": { - "phpunit/phpunit": "^8.5.16", - "symfony/yaml": "^5.3" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "0.x-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.2" - }, - "time": "2023-09-26T20:31:33+00:00" - }, - { - "name": "softcreatr/jsonpath", - "version": "0.8.3", - "source": { - "type": "git", - "url": "https://github.com/SoftCreatR/JSONPath.git", - "reference": "fc12dee0b46f3fa3a175c4051dbab60984acef4b" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/SoftCreatR/JSONPath/zipball/fc12dee0b46f3fa3a175c4051dbab60984acef4b", - "reference": "fc12dee0b46f3fa3a175c4051dbab60984acef4b", - "shasum": "" - }, - "require": { - "ext-json": "*", - "php": ">=8.0" - }, - "replace": { - "flow/jsonpath": "*" - }, - "require-dev": { - "phpunit/phpunit": "^9.6", - "roave/security-advisories": "dev-latest" - }, - "type": "library", - "autoload": { - "psr-4": { - "Flow\\JSONPath\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Stephen Frank", - "email": "stephen@flowsa.com", - "homepage": "https://prismaticbytes.com", - "role": "Developer" - }, - { - "name": "Sascha Greuel", - "email": "hello@1-2.dev", - "homepage": "https://1-2.dev", - "role": "Developer" - } - ], - "description": "JSONPath implementation for parsing, searching and flattening arrays", - "support": { - "email": "hello@1-2.dev", - "forum": "https://github.com/SoftCreatR/JSONPath/discussions", - "issues": "https://github.com/SoftCreatR/JSONPath/issues", - "source": "https://github.com/SoftCreatR/JSONPath" - }, - "funding": [ - { - "url": "https://ecologi.com/softcreatr?r=61212ab3fc69b8eb8a2014f4", - "type": "custom" - }, - { - "url": "https://github.com/softcreatr", - "type": "github" - } - ], - "time": "2023-08-17T20:14:00+00:00" - }, - { - "name": "stella-maris/clock", - "version": "0.1.7", - "source": { - "type": "git", - "url": "https://github.com/stella-maris-solutions/clock.git", - "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/stella-maris-solutions/clock/zipball/fa23ce16019289a18bb3446fdecd45befcdd94f8", - "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8", - "shasum": "" - }, - "require": { - "php": "^7.0|^8.0", - "psr/clock": "^1.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "StellaMaris\\Clock\\": "src" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Andreas Heigl", - "role": "Maintainer" - } - ], - "description": "A pre-release of the proposed PSR-20 Clock-Interface", - "homepage": "https://gitlab.com/stella-maris/clock", - "keywords": [ - "clock", - "datetime", - "point in time", - "psr20" - ], - "support": { - "source": "https://github.com/stella-maris-solutions/clock/tree/0.1.7" - }, - "time": "2022-11-25T16:15:06+00:00" + "time": "2017-11-18T14:57:29+00:00" }, { "name": "stripe/stripe-php", - "version": "v7.128.0", + "version": "v7.52.0", "source": { "type": "git", "url": "https://github.com/stripe/stripe-php.git", - "reference": "c704949c49b72985c76cc61063aa26fefbd2724e" + "reference": "51e95c514aff45616dff09791ca5b2f10cf5c4e8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/stripe/stripe-php/zipball/c704949c49b72985c76cc61063aa26fefbd2724e", - "reference": "c704949c49b72985c76cc61063aa26fefbd2724e", + "url": "https://api.github.com/repos/stripe/stripe-php/zipball/51e95c514aff45616dff09791ca5b2f10cf5c4e8", + "reference": "51e95c514aff45616dff09791ca5b2f10cf5c4e8", "shasum": "" }, "require": { @@ -24288,10 +13899,11 @@ "php": ">=5.6.0" }, "require-dev": { - "friendsofphp/php-cs-fixer": "3.5.0", - "phpstan/phpstan": "^1.2", - "phpunit/phpunit": "^5.7 || ^9.0", - "squizlabs/php_codesniffer": "^3.3" + "friendsofphp/php-cs-fixer": "2.16.1", + "php-coveralls/php-coveralls": "^2.1", + "phpunit/phpunit": "^5.7", + "squizlabs/php_codesniffer": "^3.3", + "symfony/process": "~3.4" }, "type": "library", "extra": { @@ -24321,57 +13933,238 @@ "payment processing", "stripe" ], - "support": { - "issues": "https://github.com/stripe/stripe-php/issues", - "source": "https://github.com/stripe/stripe-php/tree/v7.128.0" - }, - "time": "2022-05-05T17:18:02+00:00" + "time": "2020-09-08T19:29:20+00:00" }, { - "name": "symfony/console", - "version": "v6.4.3", + "name": "svg-pan-zoom/svg-pan-zoom", + "version": "3.6.1", + "dist": { + "type": "zip", + "url": "https://github.com/ariutta/svg-pan-zoom/archive/3.6.1.zip" + }, + "require": { + "composer/installers": "~1.0" + }, + "type": "drupal-library", + "extra": { + "installer-name": "svg-pan-zoom" + } + }, + { + "name": "swiftmailer/swiftmailer", + "version": "v5.4.12", "source": { "type": "git", - "url": "https://github.com/symfony/console.git", - "reference": "2aaf83b4de5b9d43b93e4aec6f2f8b676f7c567e" + "url": "https://github.com/swiftmailer/swiftmailer.git", + "reference": "181b89f18a90f8925ef805f950d47a7190e9b950" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/2aaf83b4de5b9d43b93e4aec6f2f8b676f7c567e", - "reference": "2aaf83b4de5b9d43b93e4aec6f2f8b676f7c567e", + "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/181b89f18a90f8925ef805f950d47a7190e9b950", + "reference": "181b89f18a90f8925ef805f950d47a7190e9b950", "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" + "php": ">=5.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/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" + "mockery/mockery": "~0.9.1", + "symfony/phpunit-bridge": "~3.2" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.4-dev" + } + }, + "autoload": { + "files": [ + "lib/swift_required.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Chris Corbyn" + }, + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + } + ], + "description": "Swiftmailer, free feature-rich PHP mailer", + "homepage": "https://swiftmailer.symfony.com", + "keywords": [ + "email", + "mail", + "mailer" + ], + "time": "2018-07-31T09:26:32+00:00" + }, + { + "name": "symfony-cmf/routing", + "version": "1.4.1", + "source": { + "type": "git", + "url": "https://github.com/symfony-cmf/routing.git", + "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac", + "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac", + "shasum": "" + }, + "require": { + "php": "^5.3.9|^7.0", + "psr/log": "1.*", + "symfony/http-kernel": "^2.2|3.*", + "symfony/routing": "^2.2|3.*" + }, + "require-dev": { + "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": "1.4-dev" + } + }, + "autoload": { + "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.41", + "source": { + "type": "git", + "url": "https://github.com/symfony/class-loader.git", + "reference": "e4636a4f23f157278a19e5db160c63de0da297d8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/class-loader/zipball/e4636a4f23f157278a19e5db160c63de0da297d8", + "reference": "e4636a4f23f157278a19e5db160c63de0da297d8", + "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": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony ClassLoader Component", + "homepage": "https://symfony.com", + "time": "2020-03-15T09:38:08+00:00" + }, + { + "name": "symfony/console", + "version": "v3.4.41", + "source": { + "type": "git", + "url": "https://github.com/symfony/console.git", + "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/console/zipball/bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13", + "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13", + "shasum": "" + }, + "require": { + "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": { + "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": "3.4-dev" + } + }, "autoload": { "psr-4": { "Symfony\\Component\\Console\\": "" @@ -24394,54 +14187,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.3" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2020-05-30T18:58:05+00:00" }, { - "name": "symfony/css-selector", - "version": "v6.4.3", + "name": "symfony/debug", + "version": "v3.4.41", "source": { "type": "git", - "url": "https://github.com/symfony/css-selector.git", - "reference": "ee0f7ed5cf298cc019431bb3b3977ebc52b86229" + "url": "https://github.com/symfony/debug.git", + "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/ee0f7ed5cf298cc019431bb3b3977ebc52b86229", - "reference": "ee0f7ed5cf298cc019431bb3b3977ebc52b86229", + "url": "https://api.github.com/repos/symfony/debug/zipball/518c6a00d0872da30bd06aee3ea59a0a5cf54d6d", + "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d", "shasum": "" }, "require": { - "php": ">=8.1" + "php": "^5.5.9|>=7.0.8", + "psr/log": "~1.0" + }, + "conflict": { + "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2" + }, + "require-dev": { + "symfony/http-kernel": "~2.8|~3.0|~4.0" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.4-dev" + } + }, "autoload": { "psr-4": { - "Symfony\\Component\\CssSelector\\": "" + "Symfony\\Component\\Debug\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -24456,74 +14238,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.3" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2020-05-22T18:25:20+00:00" }, { "name": "symfony/dependency-injection", - "version": "v6.4.3", + "version": "v3.4.41", "source": { "type": "git", "url": "https://github.com/symfony/dependency-injection.git", - "reference": "6871811c5a5c5e180244ddb689746446db02c05b" + "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/6871811c5a5c5e180244ddb689746446db02c05b", - "reference": "6871811c5a5c5e180244ddb689746446db02c05b", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/e39380b7104b0ec538a075ae919f00c7e5267bac", + "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac", "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.2.10|^7.0" + "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\\": "" @@ -24546,273 +14314,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.3" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2024-01-30T08:32:12+00:00" + "time": "2020-05-30T21:06:01+00:00" }, { - "name": "symfony/deprecation-contracts", - "version": "v3.4.0", + "name": "symfony/event-dispatcher", + "version": "v3.4.41", "source": { "type": "git", - "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf" + "url": "https://github.com/symfony/event-dispatcher.git", + "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf", - "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/14d978f8e8555f2de719c00eb65376be7d2e9081", + "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081", "shasum": "" }, "require": { - "php": ">=8.1" + "php": "^5.5.9|>=7.0.8" + }, + "conflict": { + "symfony/dependency-injection": "<3.3" + }, + "require-dev": { + "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-main": "3.4-dev" - }, - "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" + "dev-master": "3.4-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.4.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": "2023-05-23T14:45:45+00:00" - }, - { - "name": "symfony/dom-crawler", - "version": "v6.4.3", - "source": { - "type": "git", - "url": "https://github.com/symfony/dom-crawler.git", - "reference": "6db31849011fefe091e94d0bb10cba26f7919894" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/6db31849011fefe091e94d0bb10cba26f7919894", - "reference": "6db31849011fefe091e94d0bb10cba26f7919894", - "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.3" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2024-01-23T14:51:35+00:00" - }, - { - "name": "symfony/error-handler", - "version": "v6.4.3", - "source": { - "type": "git", - "url": "https://github.com/symfony/error-handler.git", - "reference": "6dc3c76a278b77f01d864a6005d640822c6f26a6" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/6dc3c76a278b77f01d864a6005d640822c6f26a6", - "reference": "6dc3c76a278b77f01d864a6005d640822c6f26a6", - "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.3" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2024-01-29T15:40:36+00:00" - }, - { - "name": "symfony/event-dispatcher", - "version": "v6.4.3", - "source": { - "type": "git", - "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "ae9d3a6f3003a6caf56acd7466d8d52378d44fef" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/ae9d3a6f3003a6caf56acd7466d8d52378d44fef", - "reference": "ae9d3a6f3003a6caf56acd7466d8d52378d44fef", - "shasum": "" - }, - "require": { - "php": ">=8.1", - "symfony/event-dispatcher-contracts": "^2.5|^3" - }, - "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" - }, - "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" - }, - "type": "library", "autoload": { "psr-4": { "Symfony\\Component\\EventDispatcher\\": "" @@ -24835,123 +14377,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.3" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2020-05-05T15:06:23+00:00" }, { - "name": "symfony/event-dispatcher-contracts", - "version": "v3.4.0", + "name": "symfony/filesystem", + "version": "v4.4.13", "source": { "type": "git", - "url": "https://github.com/symfony/event-dispatcher-contracts.git", - "reference": "a76aed96a42d2b521153fb382d418e30d18b59df" + "url": "https://github.com/symfony/filesystem.git", + "reference": "27575bcbc68db1f6d06218891296572c9b845704" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df", - "reference": "a76aed96a42d2b521153fb382d418e30d18b59df", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/27575bcbc68db1f6d06218891296572c9b845704", + "reference": "27575bcbc68db1f6d06218891296572c9b845704", "shasum": "" }, "require": { - "php": ">=8.1", - "psr/event-dispatcher": "^1" + "php": ">=7.1.3", + "symfony/polyfill-ctype": "~1.8" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "3.4-dev" - }, - "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" + "dev-master": "4.4-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.4.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": "2023-05-23T14:45:45+00:00" - }, - { - "name": "symfony/filesystem", - "version": "v6.4.3", - "source": { - "type": "git", - "url": "https://github.com/symfony/filesystem.git", - "reference": "7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb", - "reference": "7f3b1755eb49297a0827a7575d5d2b2fd11cc9fb", - "shasum": "" - }, - "require": { - "php": ">=8.1", - "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-mbstring": "~1.8" - }, - "type": "library", "autoload": { "psr-4": { "Symfony\\Component\\Filesystem\\": "" @@ -24974,11 +14427,8 @@ "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.3" - }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -24993,29 +14443,31 @@ "type": "tidelift" } ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2020-08-21T17:19:37+00:00" }, { "name": "symfony/finder", - "version": "v6.4.0", + "version": "v4.4.13", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "11d736e97f116ac375a81f96e662911a34cd50ce" + "reference": "2a78590b2c7e3de5c429628457c47541c58db9c7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/11d736e97f116ac375a81f96e662911a34cd50ce", - "reference": "11d736e97f116ac375a81f96e662911a34cd50ce", + "url": "https://api.github.com/repos/symfony/finder/zipball/2a78590b2c7e3de5c429628457c47541c58db9c7", + "reference": "2a78590b2c7e3de5c429628457c47541c58db9c7", "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.4-dev" + } + }, "autoload": { "psr-4": { "Symfony\\Component\\Finder\\": "" @@ -25038,11 +14490,8 @@ "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.0" - }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -25057,42 +14506,36 @@ "type": "tidelift" } ], - "time": "2023-10-31T17:30:12+00:00" + "time": "2020-08-17T09:56:45+00:00" }, { "name": "symfony/http-foundation", - "version": "v6.4.3", + "version": "v3.4.41", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "5677bdf7cade4619cb17fc9e1e7b31ec392244a9" + "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/5677bdf7cade4619cb17fc9e1e7b31ec392244a9", - "reference": "5677bdf7cade4619cb17fc9e1e7b31ec392244a9", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/fbd216d2304b1a3fe38d6392b04729c8dd356359", + "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359", "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.3" + "symfony/polyfill-php70": "~1.6" }, "require-dev": { - "doctrine/dbal": "^2.13.1|^3|^4", - "predis/predis": "^1.1|^2.0", - "symfony/cache": "^6.3|^7.0", - "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\\": "" @@ -25115,97 +14558,74 @@ "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.3" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2020-05-16T13:15:54+00:00" }, { "name": "symfony/http-kernel", - "version": "v6.4.3", + "version": "v3.4.44", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "9c6ec4e543044f7568a53a76ab1484ecd30637a2" + "reference": "27dcaa8c6b18c75df9f37badeb4d3564ffaa1326" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/9c6ec4e543044f7568a53a76ab1484ecd30637a2", - "reference": "9c6ec4e543044f7568a53a76ab1484ecd30637a2", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/27dcaa8c6b18c75df9f37badeb4d3564ffaa1326", + "reference": "27dcaa8c6b18c75df9f37badeb4d3564ffaa1326", "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", + "symfony/polyfill-php56": "~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.3|^7.0", - "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-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\\": "" @@ -25228,11 +14648,8 @@ "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.3" - }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -25247,191 +14664,24 @@ "type": "tidelift" } ], - "time": "2024-01-31T07:21:29+00:00" - }, - { - "name": "symfony/mailer", - "version": "v6.4.3", - "source": { - "type": "git", - "url": "https://github.com/symfony/mailer.git", - "reference": "74412c62f88a85a41b61f0b71ab0afcaad6f03ee" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/mailer/zipball/74412c62f88a85a41b61f0b71ab0afcaad6f03ee", - "reference": "74412c62f88a85a41b61f0b71ab0afcaad6f03ee", - "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.3" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2024-01-29T15:01:07+00:00" - }, - { - "name": "symfony/mime", - "version": "v6.4.3", - "source": { - "type": "git", - "url": "https://github.com/symfony/mime.git", - "reference": "5017e0a9398c77090b7694be46f20eb796262a34" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/5017e0a9398c77090b7694be46f20eb796262a34", - "reference": "5017e0a9398c77090b7694be46f20eb796262a34", - "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.3.2" - }, - "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/property-access": "^5.4|^6.0|^7.0", - "symfony/property-info": "^5.4|^6.0|^7.0", - "symfony/serializer": "^6.3.2|^7.0" - }, - "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.3" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2024-01-30T08:32:12+00:00" + "time": "2020-08-31T05:53:42+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.28.0", + "version": "v1.17.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb" + "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb", - "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e94c8b1bbe2bc77507a1056cdb06451c75b427f9", + "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9", "shasum": "" }, "require": { - "php": ">=7.1" - }, - "provide": { - "ext-ctype": "*" + "php": ">=5.3.3" }, "suggest": { "ext-ctype": "For best performance" @@ -25439,20 +14689,16 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.28-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "dev-master": "1.17-dev" } }, "autoload": { - "files": [ - "bootstrap.php" - ], "psr-4": { "Symfony\\Polyfill\\Ctype\\": "" - } + }, + "files": [ + "bootstrap.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -25476,44 +14722,24 @@ "polyfill", "portable" ], - "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.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": "2023-01-26T09:26:14+00:00" + "time": "2020-05-12T16:14:59+00:00" }, { "name": "symfony/polyfill-iconv", - "version": "v1.28.0", + "version": "v1.17.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-iconv.git", - "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1" + "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6de50471469b8c9afc38164452ab2b6170ee71c1", - "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1", + "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c4de7601eefbf25f9d47190abe07f79fe0a27424", + "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424", "shasum": "" }, "require": { - "php": ">=7.1" - }, - "provide": { - "ext-iconv": "*" + "php": ">=5.3.3" }, "suggest": { "ext-iconv": "For best performance" @@ -25521,20 +14747,16 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.28-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "dev-master": "1.17-dev" } }, "autoload": { - "files": [ - "bootstrap.php" - ], "psr-4": { "Symfony\\Polyfill\\Iconv\\": "" - } + }, + "files": [ + "bootstrap.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -25559,123 +14781,25 @@ "portable", "shim" ], - "support": { - "source": "https://github.com/symfony/polyfill-iconv/tree/v1.28.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": "2023-01-26T09:26:14+00:00" - }, - { - "name": "symfony/polyfill-intl-grapheme", - "version": "v1.28.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-intl-grapheme.git", - "reference": "875e90aeea2777b6f135677f618529449334a612" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612", - "reference": "875e90aeea2777b6f135677f618529449334a612", - "shasum": "" - }, - "require": { - "php": ">=7.1" - }, - "suggest": { - "ext-intl": "For best performance" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/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.28.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": "2023-01-26T09:26:14+00:00" + "time": "2020-05-12T16:47:27+00:00" }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.28.0", + "version": "v1.17.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "ecaafce9f77234a6a449d29e49267ba10499116d" + "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d", - "reference": "ecaafce9f77234a6a449d29e49267ba10499116d", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3bff59ea7047e925be6b7f2059d60af31bb46d6a", + "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a", "shasum": "" }, "require": { - "php": ">=7.1", - "symfony/polyfill-intl-normalizer": "^1.10", + "php": ">=5.3.3", + "symfony/polyfill-mbstring": "^1.3", "symfony/polyfill-php72": "^1.10" }, "suggest": { @@ -25684,20 +14808,16 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.28-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "dev-master": "1.17-dev" } }, "autoload": { - "files": [ - "bootstrap.php" - ], "psr-4": { "Symfony\\Polyfill\\Intl\\Idn\\": "" - } + }, + "files": [ + "bootstrap.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -25708,10 +14828,6 @@ "name": "Laurent Bassin", "email": "laurent@bassin.info" }, - { - "name": "Trevor Rowbotham", - "email": "trevor.rowbotham@pm.me" - }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" @@ -25727,128 +14843,24 @@ "portable", "shim" ], - "support": { - "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.28.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": "2023-01-26T09:30:37+00:00" - }, - { - "name": "symfony/polyfill-intl-normalizer", - "version": "v1.28.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92", - "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92", - "shasum": "" - }, - "require": { - "php": ">=7.1" - }, - "suggest": { - "ext-intl": "For best performance" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-main": "1.28-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/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.28.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": "2023-01-26T09:26:14+00:00" + "time": "2020-05-12T16:47:27+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.28.0", + "version": "v1.17.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "42292d99c55abe617799667f454222c54c60e229" + "reference": "fa79b11539418b02fc5e1897267673ba2c19419c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229", - "reference": "42292d99c55abe617799667f454222c54c60e229", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fa79b11539418b02fc5e1897267673ba2c19419c", + "reference": "fa79b11539418b02fc5e1897267673ba2c19419c", "shasum": "" }, "require": { - "php": ">=7.1" - }, - "provide": { - "ext-mbstring": "*" + "php": ">=5.3.3" }, "suggest": { "ext-mbstring": "For best performance" @@ -25856,20 +14868,16 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.28-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "dev-master": "1.17-dev" } }, "autoload": { - "files": [ - "bootstrap.php" - ], "psr-4": { "Symfony\\Polyfill\\Mbstring\\": "" - } + }, + "files": [ + "bootstrap.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -25894,56 +14902,153 @@ "portable", "shim" ], - "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.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": "2023-07-28T09:04:16+00:00" + "time": "2020-05-12T16:47:27+00:00" }, { - "name": "symfony/polyfill-php72", - "version": "v1.29.0", + "name": "symfony/polyfill-php56", + "version": "v1.17.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-php72.git", - "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25" + "url": "https://github.com/symfony/polyfill-php56.git", + "reference": "e3c8c138280cdfe4b81488441555583aa1984e23" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25", - "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25", + "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/e3c8c138280cdfe4b81488441555583aa1984e23", + "reference": "e3c8c138280cdfe4b81488441555583aa1984e23", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=5.3.3", + "symfony/polyfill-util": "~1.0" }, "type": "library", "extra": { - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "branch-alias": { + "dev-master": "1.17-dev" } }, "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Php56\\": "" + }, + "files": [ + "bootstrap.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": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "time": "2020-05-12T16:47:27+00:00" + }, + { + "name": "symfony/polyfill-php70", + "version": "v1.17.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php70.git", + "reference": "82225c2d7d23d7e70515496d249c0152679b468e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/82225c2d7d23d7e70515496d249c0152679b468e", + "reference": "82225c2d7d23d7e70515496d249c0152679b468e", + "shasum": "" + }, + "require": { + "paragonie/random_compat": "~1.0|~2.0|~9.99", + "php": ">=5.3.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.17-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Php70\\": "" + }, "files": [ "bootstrap.php" ], + "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 7.0+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "time": "2020-05-12T16:47:27+00:00" + }, + { + "name": "symfony/polyfill-php72", + "version": "v1.17.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php72.git", + "reference": "f048e612a3905f34931127360bdd2def19a5e582" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/f048e612a3905f34931127360bdd2def19a5e582", + "reference": "f048e612a3905f34931127360bdd2def19a5e582", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.17-dev" + } + }, + "autoload": { "psr-4": { "Symfony\\Polyfill\\Php72\\": "" - } + }, + "files": [ + "bootstrap.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -25967,56 +15072,42 @@ "portable", "shim" ], - "support": { - "source": "https://github.com/symfony/polyfill-php72/tree/v1.29.0" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2020-05-12T16:47:27+00:00" }, { "name": "symfony/polyfill-php80", - "version": "v1.29.0", + "version": "v1.18.1", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b" + "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b", - "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/d87d5766cbf48d72388a9f6b85f280c8ad51f981", + "reference": "d87d5766cbf48d72388a9f6b85f280c8ad51f981", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.0.8" }, "type": "library", "extra": { + "branch-alias": { + "dev-master": "1.18-dev" + }, "thanks": { "name": "symfony/polyfill", "url": "https://github.com/symfony/polyfill" } }, "autoload": { - "files": [ - "bootstrap.php" - ], "psr-4": { "Symfony\\Polyfill\\Php80\\": "" }, + "files": [ + "bootstrap.php" + ], "classmap": [ "Resources/stubs" ] @@ -26047,9 +15138,6 @@ "portable", "shim" ], - "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0" - }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -26064,122 +15152,35 @@ "type": "tidelift" } ], - "time": "2024-01-29T20:11:03+00:00" + "time": "2020-07-14T12:35:20+00:00" }, { - "name": "symfony/polyfill-php81", - "version": "v1.29.0", + "name": "symfony/polyfill-util", + "version": "v1.17.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-php81.git", - "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d" + "url": "https://github.com/symfony/polyfill-util.git", + "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d", - "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d", + "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4afb4110fc037752cf0ce9869f9ab8162c4e20d7", + "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7", "shasum": "" }, "require": { - "php": ">=7.1" - }, - "type": "library", - "extra": { - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" - } - }, - "autoload": { - "files": [ - "bootstrap.php" - ], - "psr-4": { - "Symfony\\Polyfill\\Php81\\": "" - }, - "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.1+ features to lower PHP versions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "polyfill", - "portable", - "shim" - ], - "support": { - "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2024-01-29T20:11:03+00:00" - }, - { - "name": "symfony/polyfill-php83", - "version": "v1.28.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-php83.git", - "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11", - "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11", - "shasum": "" - }, - "require": { - "php": ">=7.1", - "symfony/polyfill-php80": "^1.14" + "php": ">=5.3.3" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "1.28-dev" - }, - "thanks": { - "name": "symfony/polyfill", - "url": "https://github.com/symfony/polyfill" + "dev-master": "1.17-dev" } }, "autoload": { - "files": [ - "bootstrap.php" - ], "psr-4": { - "Symfony\\Polyfill\\Php83\\": "" - }, - "classmap": [ - "Resources/stubs" - ] + "Symfony\\Polyfill\\Util\\": "" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -26195,51 +15196,39 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions", + "description": "Symfony utilities for portability of PHP codes", "homepage": "https://symfony.com", "keywords": [ + "compat", "compatibility", "polyfill", - "portable", "shim" ], - "support": { - "source": "https://github.com/symfony/polyfill-php83/tree/v1.28.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": "2023-08-16T06:22:46+00:00" + "time": "2020-05-12T16:14:59+00:00" }, { "name": "symfony/process", - "version": "v6.4.3", + "version": "v3.4.41", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "31642b0818bfcff85930344ef93193f8c607e0a3" + "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/31642b0818bfcff85930344ef93193f8c607e0a3", - "reference": "31642b0818bfcff85930344ef93193f8c607e0a3", + "url": "https://api.github.com/repos/symfony/process/zipball/8a895f0c92a7c4b10db95139bcff71bdf66d4d21", + "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21", "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\\": "" @@ -26262,61 +15251,41 @@ "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.3" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2020-05-23T17:05:51+00:00" }, { "name": "symfony/psr-http-message-bridge", - "version": "v6.4.3", + "version": "v1.1.2", "source": { "type": "git", "url": "https://github.com/symfony/psr-http-message-bridge.git", - "reference": "49cfb0223ec64379f7154214dcc1f7c46f3c7a47" + "reference": "a33352af16f78a5ff4f9d90811536abf210df12b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/49cfb0223ec64379f7154214dcc1f7c46f3c7a47", - "reference": "49cfb0223ec64379f7154214dcc1f7c46f3c7a47", + "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b", + "reference": "a33352af16f78a5ff4f9d90811536abf210df12b", "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": "^5.3.3 || ^7.0", + "psr/http-message": "^1.0", + "symfony/http-foundation": "^2.3.42 || ^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 || ^4.0" + }, + "suggest": { + "nyholm/psr7": "For a super lightweight PSR-7/17 implementation" }, "type": "symfony-bridge", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + } + }, "autoload": { "psr-4": { "Symfony\\Bridge\\PsrHttpMessage\\": "" @@ -26331,75 +15300,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.3" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2019-04-03T17:09:40+00:00" }, { "name": "symfony/routing", - "version": "v6.4.3", + "version": "v3.4.41", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "3b2957ad54902f0f544df83e3d58b38d7e8e5842" + "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/3b2957ad54902f0f544df83e3d58b38d7e8e5842", - "reference": "3b2957ad54902f0f544df83e3d58b38d7e8e5842", + "url": "https://api.github.com/repos/symfony/routing/zipball/e0d43b6f9417ad59ecaa8e2f799b79eef417387f", + "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f", "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\\": "" @@ -26422,7 +15384,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", @@ -26430,80 +15392,61 @@ "uri", "url" ], - "support": { - "source": "https://github.com/symfony/routing/tree/v6.4.3" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2024-01-30T13:55:02+00:00" + "time": "2020-05-30T19:50:06+00:00" }, { "name": "symfony/serializer", - "version": "v6.4.3", + "version": "v3.4.41", "source": { "type": "git", "url": "https://github.com/symfony/serializer.git", - "reference": "51a06ee93c4d5ab5b9edaa0635d8b83953e3c14d" + "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/serializer/zipball/51a06ee93c4d5ab5b9edaa0635d8b83953e3c14d", - "reference": "51a06ee93c4d5ab5b9edaa0635d8b83953e3c14d", + "url": "https://api.github.com/repos/symfony/serializer/zipball/0db90db012b1b0a04fbb2d64ae9160871cad9d4f", + "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f", "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\\": "" @@ -26526,147 +15469,57 @@ "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.3" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2024-01-30T08:32:12+00:00" + "time": "2020-05-30T18:58:05+00:00" }, { - "name": "symfony/service-contracts", - "version": "v3.4.1", + "name": "symfony/translation", + "version": "v3.4.41", "source": { "type": "git", - "url": "https://github.com/symfony/service-contracts.git", - "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0" + "url": "https://github.com/symfony/translation.git", + "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/fe07cbc8d837f60caf7018068e350cc5163681a0", - "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0", + "url": "https://api.github.com/repos/symfony/translation/zipball/b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f", + "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f", "shasum": "" }, "require": { - "php": ">=8.1", - "psr/container": "^1.1|^2.0" + "php": "^5.5.9|>=7.0.8", + "symfony/polyfill-mbstring": "~1.0" }, "conflict": { - "ext-psr": "<1.1|>=2" + "symfony/config": "<2.8", + "symfony/dependency-injection": "<3.4", + "symfony/yaml": "<3.4" + }, + "require-dev": { + "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" + }, + "suggest": { + "psr/log-implementation": "To use logging capability in translator", + "symfony/config": "", + "symfony/yaml": "" }, "type": "library", "extra": { "branch-alias": { - "dev-main": "3.4-dev" - }, - "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" + "dev-master": "3.4-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.4.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": "2023-12-26T14:02:43+00:00" - }, - { - "name": "symfony/string", - "version": "v6.4.3", - "source": { - "type": "git", - "url": "https://github.com/symfony/string.git", - "reference": "7a14736fb179876575464e4658fce0c304e8c15b" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/7a14736fb179876575464e4658fce0c304e8c15b", - "reference": "7a14736fb179876575464e4658fce0c304e8c15b", - "shasum": "" - }, - "require": { - "php": ">=8.1", - "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-intl-grapheme": "~1.0", - "symfony/polyfill-intl-normalizer": "~1.0", - "symfony/polyfill-mbstring": "~1.0" - }, - "conflict": { - "symfony/translation-contracts": "<2.5" - }, - "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" - }, - "type": "library", - "autoload": { - "files": [ - "Resources/functions.php" - ], - "psr-4": { - "Symfony\\Component\\String\\": "" + "Symfony\\Component\\Translation\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -26678,174 +15531,78 @@ ], "authors": [ { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" + "name": "Fabien Potencier", + "email": "fabien@symfony.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", + "description": "Symfony Translation Component", "homepage": "https://symfony.com", - "keywords": [ - "grapheme", - "i18n", - "string", - "unicode", - "utf-8", - "utf8" - ], - "support": { - "source": "https://github.com/symfony/string/tree/v6.4.3" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2024-01-25T09:26:29+00:00" + "time": "2020-05-30T18:58:05+00:00" }, { - "name": "symfony/translation-contracts", - "version": "v3.4.1", + "name": "symfony/validator", + "version": "v3.4.41", "source": { "type": "git", - "url": "https://github.com/symfony/translation-contracts.git", - "reference": "06450585bf65e978026bda220cdebca3f867fde7" + "url": "https://github.com/symfony/validator.git", + "reference": "5fb88120a11a75e17b602103a893dd8b27804529" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/06450585bf65e978026bda220cdebca3f867fde7", - "reference": "06450585bf65e978026bda220cdebca3f867fde7", + "url": "https://api.github.com/repos/symfony/validator/zipball/5fb88120a11a75e17b602103a893dd8b27804529", + "reference": "5fb88120a11a75e17b602103a893dd8b27804529", "shasum": "" }, "require": { - "php": ">=8.1" + "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": { + "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-main": "3.4-dev" - }, - "thanks": { - "name": "symfony/contracts", - "url": "https://github.com/symfony/contracts" + "dev-master": "3.4-dev" } }, - "autoload": { - "psr-4": { - "Symfony\\Contracts\\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.4.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": "2023-12-26T14:02:43+00:00" - }, - { - "name": "symfony/validator", - "version": "v6.4.3", - "source": { - "type": "git", - "url": "https://github.com/symfony/validator.git", - "reference": "9c1d8bb4edce5304fcefca7923741085f1ca5b60" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/validator/zipball/9c1d8bb4edce5304fcefca7923741085f1ca5b60", - "reference": "9c1d8bb4edce5304fcefca7923741085f1ca5b60", - "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\\": "" @@ -26868,62 +15625,54 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Provides tools to validate values", + "description": "Symfony Validator Component", "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/validator/tree/v6.4.3" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2024-01-29T15:01:07+00:00" + "time": "2020-05-30T18:43:38+00:00" }, { "name": "symfony/var-dumper", - "version": "v6.4.3", + "version": "v4.4.13", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "0435a08f69125535336177c29d56af3abc1f69da" + "reference": "1bef32329f3166486ab7cb88599cae4875632b99" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/0435a08f69125535336177c29d56af3abc1f69da", - "reference": "0435a08f69125535336177c29d56af3abc1f69da", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1bef32329f3166486ab7cb88599cae4875632b99", + "reference": "1bef32329f3166486ab7cb88599cae4875632b99", "shasum": "" }, "require": { - "php": ">=8.1", - "symfony/deprecation-contracts": "^2.5|^3", - "symfony/polyfill-mbstring": "~1.0" + "php": ">=7.1.3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/polyfill-php72": "~1.5", + "symfony/polyfill-php80": "^1.15" }, "conflict": { - "symfony/console": "<5.4" + "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|^5.0", + "symfony/process": "^4.4|^5.0", + "twig/twig": "^1.34|^2.4|^3.0" + }, + "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.4-dev" + } + }, "autoload": { "files": [ "Resources/functions/dump.php" @@ -26949,15 +15698,12 @@ "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.3" - }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -26972,112 +15718,41 @@ "type": "tidelift" } ], - "time": "2024-01-23T14:53:30+00:00" - }, - { - "name": "symfony/var-exporter", - "version": "v6.4.3", - "source": { - "type": "git", - "url": "https://github.com/symfony/var-exporter.git", - "reference": "a8c12b5448a5ac685347f5eeb2abf6a571ec16b8" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/var-exporter/zipball/a8c12b5448a5ac685347f5eeb2abf6a571ec16b8", - "reference": "a8c12b5448a5ac685347f5eeb2abf6a571ec16b8", - "shasum": "" - }, - "require": { - "php": ">=8.1", - "symfony/deprecation-contracts": "^2.5|^3" - }, - "require-dev": { - "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.3" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2024-01-23T14:51:35+00:00" + "time": "2020-08-17T07:31:35+00:00" }, { "name": "symfony/yaml", - "version": "v6.4.3", + "version": "v3.4.41", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "d75715985f0f94f978e3a8fa42533e10db921b90" + "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/d75715985f0f94f978e3a8fa42533e10db921b90", - "reference": "d75715985f0f94f978e3a8fa42533e10db921b90", + "url": "https://api.github.com/repos/symfony/yaml/zipball/7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb", + "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb", "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\\": "" @@ -27100,119 +15775,30 @@ "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.3" - }, - "funding": [ - { - "url": "https://symfony.com/sponsor", - "type": "custom" - }, - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", - "type": "tidelift" - } - ], - "time": "2024-01-23T14:51:35+00:00" - }, - { - "name": "tecnickcom/tcpdf", - "version": "6.6.5", - "source": { - "type": "git", - "url": "https://github.com/tecnickcom/TCPDF.git", - "reference": "5fce932fcee4371865314ab7f6c0d85423c5c7ce" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/tecnickcom/TCPDF/zipball/5fce932fcee4371865314ab7f6c0d85423c5c7ce", - "reference": "5fce932fcee4371865314ab7f6c0d85423c5c7ce", - "shasum": "" - }, - "require": { - "php": ">=5.3.0" - }, - "type": "library", - "autoload": { - "classmap": [ - "config", - "include", - "tcpdf.php", - "tcpdf_parser.php", - "tcpdf_import.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.6.5" - }, - "funding": [ - { - "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_donations¤cy_code=GBP&business=paypal@tecnick.com&item_name=donation%20for%20tcpdf%20project", - "type": "custom" - } - ], - "time": "2023-09-06T15:09:26+00:00" + "time": "2020-05-11T07:51:54+00:00" }, { "name": "thinkshout/mailchimp-api-php", - "version": "v3.0.0", + "version": "2.0.0", "source": { "type": "git", "url": "https://github.com/thinkshout/mailchimp-api-php.git", - "reference": "2fcd4b550f8c9b78b872bc922fafbcf6f6d39085" + "reference": "ffa6cf96efe3a7e8e0de8309737a7dae40f51981" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thinkshout/mailchimp-api-php/zipball/2fcd4b550f8c9b78b872bc922fafbcf6f6d39085", - "reference": "2fcd4b550f8c9b78b872bc922fafbcf6f6d39085", + "url": "https://api.github.com/repos/thinkshout/mailchimp-api-php/zipball/ffa6cf96efe3a7e8e0de8309737a7dae40f51981", + "reference": "ffa6cf96efe3a7e8e0de8309737a7dae40f51981", "shasum": "" }, "require": { - "guzzlehttp/guzzle": "^6.5.8|^7.4.5", + "guzzlehttp/guzzle": "^6.2.1", "php": ">=5.4.0" }, "require-dev": { - "phpunit/phpunit": "^6.2.2|^7.0|^8.0|^9.0" + "phpunit/phpunit": "^6.2.2" }, "type": "library", "autoload": { @@ -27222,47 +15808,46 @@ } }, "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.0" - }, - "time": "2023-05-26T21:57:04+00:00" + "time": "2018-02-27T17:52:03+00:00" }, { "name": "twig/twig", - "version": "v3.8.0", + "version": "v1.42.5", "source": { "type": "git", "url": "https://github.com/twigphp/Twig.git", - "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d" + "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/twigphp/Twig/zipball/9d15f0ac07f44dc4217883ec6ae02fd555c6f71d", - "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d", + "url": "https://api.github.com/repos/twigphp/Twig/zipball/87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e", + "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e", "shasum": "" }, "require": { - "php": ">=7.2.5", - "symfony/polyfill-ctype": "^1.8", - "symfony/polyfill-mbstring": "^1.3", - "symfony/polyfill-php80": "^1.22" + "php": ">=5.5.0", + "symfony/polyfill-ctype": "^1.8" }, "require-dev": { - "psr/container": "^1.0|^2.0", - "symfony/phpunit-bridge": "^5.4.9|^6.3|^7.0" + "psr/container": "^1.0", + "symfony/phpunit-bridge": "^4.4|^5.0" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.42-dev" + } + }, "autoload": { + "psr-0": { + "Twig_": "lib/" + }, "psr-4": { "Twig\\": "src/" } @@ -27293,184 +15878,70 @@ "keywords": [ "templating" ], - "support": { - "issues": "https://github.com/twigphp/Twig/issues", - "source": "https://github.com/twigphp/Twig/tree/v3.8.0" - }, - "funding": [ - { - "url": "https://github.com/fabpot", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/twig/twig", - "type": "tidelift" - } - ], - "time": "2023-11-21T18:54:41+00:00" + "time": "2020-02-11T05:59:23+00:00" }, { - "name": "vlucas/phpdotenv", - "version": "v5.6.0", + "name": "typo3/phar-stream-wrapper", + "version": "v3.1.4", "source": { "type": "git", - "url": "https://github.com/vlucas/phpdotenv.git", - "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4" + "url": "https://github.com/TYPO3/phar-stream-wrapper.git", + "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4", - "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4", + "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04", + "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04", "shasum": "" }, "require": { - "ext-pcre": "*", - "graham-campbell/result-type": "^1.1.2", - "php": "^7.2.5 || ^8.0", - "phpoption/phpoption": "^1.9.2", - "symfony/polyfill-ctype": "^1.24", - "symfony/polyfill-mbstring": "^1.24", - "symfony/polyfill-php80": "^1.24" + "ext-json": "*", + "php": "^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": "^6.5" }, "suggest": { - "ext-filter": "Required to use the boolean validator." - }, - "type": "library", - "extra": { - "bamarni-bin": { - "bin-links": true, - "forward-command": true - }, - "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.0" - }, - "funding": [ - { - "url": "https://github.com/GrahamCampbell", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv", - "type": "tidelift" - } - ], - "time": "2023-11-12T22:43:29+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" + "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-master": "v3.x-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-12-10T11:53:27+00:00" }, { "name": "webflo/drupal-finder", - "version": "1.2.2", + "version": "1.2.0", "source": { "type": "git", "url": "https://github.com/webflo/drupal-finder.git", - "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee" + "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee", - "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee", + "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/123e248e14ee8dd3fbe89fb5a733a6cf91f5820e", + "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e", "shasum": "" }, "require": { @@ -27488,7 +15959,7 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0-or-later" + "GPL-2.0+" ], "authors": [ { @@ -27497,43 +15968,34 @@ } ], "description": "Helper class to locate a Drupal installation from a given path.", - "support": { - "issues": "https://github.com/webflo/drupal-finder/issues", - "source": "https://github.com/webflo/drupal-finder/tree/1.2.2" - }, - "time": "2020-10-27T09:42:17+00:00" + "time": "2019-08-02T08:06:18+00:00" }, { "name": "webmozart/assert", - "version": "1.11.0", + "version": "1.9.1", "source": { "type": "git", - "url": "https://github.com/webmozarts/assert.git", - "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" + "url": "https://github.com/webmozart/assert.git", + "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", - "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", + "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389", + "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389", "shasum": "" }, "require": { - "ext-ctype": "*", - "php": "^7.2 || ^8.0" + "php": "^5.3.3 || ^7.0 || ^8.0", + "symfony/polyfill-ctype": "^1.8" }, "conflict": { "phpstan/phpstan": "<0.12.20", - "vimeo/psalm": "<4.6.1 || 4.6.2" + "vimeo/psalm": "<3.9.1" }, "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" - } - }, "autoload": { "psr-4": { "Webmozart\\Assert\\": "src/" @@ -27555,47 +16017,180 @@ "check", "validate" ], - "support": { - "issues": "https://github.com/webmozarts/assert/issues", - "source": "https://github.com/webmozarts/assert/tree/1.11.0" + "time": "2020-07-08T17:02:28+00:00" + }, + { + "name": "webmozart/path-util", + "version": "2.3.0", + "source": { + "type": "git", + "url": "https://github.com/webmozart/path-util.git", + "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725" }, - "time": "2022-06-03T18:03:27+00:00" + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725", + "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725", + "shasum": "" + }, + "require": { + "php": ">=5.3.3", + "webmozart/assert": "~1.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.6", + "sebastian/version": "^1.0.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.3-dev" + } + }, + "autoload": { + "psr-4": { + "Webmozart\\PathUtil\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.", + "time": "2015-12-17T08:42:14+00:00" + }, + { + "name": "wikimedia/composer-merge-plugin", + "version": "v1.4.1", + "source": { + "type": "git", + "url": "https://github.com/wikimedia/composer-merge-plugin.git", + "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/81c6ac72a24a67383419c7eb9aa2b3437f2ab100", + "reference": "81c6ac72a24a67383419c7eb9aa2b3437f2ab100", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^1.0", + "php": ">=5.3.2" + }, + "require-dev": { + "composer/composer": "~1.0.0", + "jakub-onderka/php-parallel-lint": "~0.8", + "phpunit/phpunit": "~4.8|~5.0", + "squizlabs/php_codesniffer": "~2.1.0" + }, + "type": "composer-plugin", + "extra": { + "branch-alias": { + "dev-master": "1.3.x-dev" + }, + "class": "Wikimedia\\Composer\\MergePlugin" + }, + "autoload": { + "psr-4": { + "Wikimedia\\Composer\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bryan Davis", + "email": "bd808@wikimedia.org" + } + ], + "description": "Composer plugin to merge multiple composer.json files", + "time": "2017-04-25T02:31:25+00:00" + }, + { + "name": "zaporylie/composer-drupal-optimizations", + "version": "1.1.1", + "source": { + "type": "git", + "url": "https://github.com/zaporylie/composer-drupal-optimizations.git", + "reference": "fb231d92adc862a2c9276bccbc90f684816dc75d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/zaporylie/composer-drupal-optimizations/zipball/fb231d92adc862a2c9276bccbc90f684816dc75d", + "reference": "fb231d92adc862a2c9276bccbc90f684816dc75d", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^1.1" + }, + "require-dev": { + "composer/composer": "^1.6", + "phpunit/phpunit": "^6" + }, + "type": "composer-plugin", + "extra": { + "class": "zaporylie\\ComposerDrupalOptimizations\\Plugin" + }, + "autoload": { + "psr-4": { + "zaporylie\\ComposerDrupalOptimizations\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Jakub Piasecki", + "email": "jakub@piaseccy.pl" + } + ], + "description": "Composer plugin to improve composer performance for Drupal projects", + "time": "2019-10-02T17:01:11+00:00" } ], "packages-dev": [ { "name": "behat/behat", - "version": "v3.14.0", + "version": "v3.7.0", "source": { "type": "git", "url": "https://github.com/Behat/Behat.git", - "reference": "2a3832d9cb853a794af3a576f9e524ae460f3340" + "reference": "08052f739619a9e9f62f457a67302f0715e6dd13" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Behat/Behat/zipball/2a3832d9cb853a794af3a576f9e524ae460f3340", - "reference": "2a3832d9cb853a794af3a576f9e524ae460f3340", + "url": "https://api.github.com/repos/Behat/Behat/zipball/08052f739619a9e9f62f457a67302f0715e6dd13", + "reference": "08052f739619a9e9f62f457a67302f0715e6dd13", "shasum": "" }, "require": { - "behat/gherkin": "^4.9.0", + "behat/gherkin": "^4.6.0", "behat/transliterator": "^1.2", "ext-mbstring": "*", - "php": "^7.2 || ^8.0", - "psr/container": "^1.0 || ^2.0", - "symfony/config": "^4.4 || ^5.0 || ^6.0 || ^7.0", - "symfony/console": "^4.4 || ^5.0 || ^6.0 || ^7.0", - "symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0 || ^7.0", - "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0 || ^7.0", - "symfony/translation": "^4.4 || ^5.0 || ^6.0 || ^7.0", - "symfony/yaml": "^4.4 || ^5.0 || ^6.0 || ^7.0" + "php": ">=5.3.3", + "psr/container": "^1.0", + "symfony/config": "^2.7.51 || ^3.0 || ^4.0 || ^5.0", + "symfony/console": "^2.7.51 || ^2.8.33 || ^3.3.15 || ^3.4.3 || ^4.0.3 || ^5.0", + "symfony/dependency-injection": "^2.7.51 || ^3.0 || ^4.0 || ^5.0", + "symfony/event-dispatcher": "^2.7.51 || ^3.0 || ^4.0 || ^5.0", + "symfony/translation": "^2.7.51 || ^3.0 || ^4.0 || ^5.0", + "symfony/yaml": "^2.7.51 || ^3.0 || ^4.0 || ^5.0" }, "require-dev": { + "container-interop/container-interop": "^1.2", "herrera-io/box": "~1.6.1", - "phpspec/prophecy": "^1.15", - "phpunit/phpunit": "^8.5 || ^9.0", - "symfony/process": "^4.4 || ^5.0 || ^6.0 || ^7.0", - "vimeo/psalm": "^4.8" + "phpunit/phpunit": "^4.8.36 || ^6.5.14 || ^7.5.20", + "symfony/process": "~2.5 || ^3.0 || ^4.0 || ^5.0" }, "suggest": { "ext-dom": "Needed to output test results in JUnit format." @@ -27606,13 +16201,11 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.x-dev" + "dev-master": "3.6.x-dev" } }, "autoload": { "psr-4": { - "Behat\\Hook\\": "src/Behat/Hook/", - "Behat\\Step\\": "src/Behat/Step/", "Behat\\Behat\\": "src/Behat/Behat/", "Behat\\Testwork\\": "src/Behat/Testwork/" } @@ -27628,7 +16221,7 @@ "homepage": "http://everzet.com" } ], - "description": "Scenario-oriented BDD framework for PHP", + "description": "Scenario-oriented BDD framework for PHP 5.3", "homepage": "http://behat.org/", "keywords": [ "Agile", @@ -27644,33 +16237,29 @@ "symfony", "testing" ], - "support": { - "issues": "https://github.com/Behat/Behat/issues", - "source": "https://github.com/Behat/Behat/tree/v3.14.0" - }, - "time": "2023-12-09T13:55:02+00:00" + "time": "2020-06-03T13:08:44+00:00" }, { "name": "behat/gherkin", - "version": "v4.9.0", + "version": "v4.6.2", "source": { "type": "git", "url": "https://github.com/Behat/Gherkin.git", - "reference": "0bc8d1e30e96183e4f36db9dc79caead300beff4" + "reference": "51ac4500c4dc30cbaaabcd2f25694299df666a31" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Behat/Gherkin/zipball/0bc8d1e30e96183e4f36db9dc79caead300beff4", - "reference": "0bc8d1e30e96183e4f36db9dc79caead300beff4", + "url": "https://api.github.com/repos/Behat/Gherkin/zipball/51ac4500c4dc30cbaaabcd2f25694299df666a31", + "reference": "51ac4500c4dc30cbaaabcd2f25694299df666a31", "shasum": "" }, "require": { - "php": "~7.2|~8.0" + "php": ">=5.3.1" }, "require-dev": { - "cucumber/cucumber": "dev-gherkin-22.0.0", - "phpunit/phpunit": "~8|~9", - "symfony/yaml": "~3|~4|~5" + "phpunit/phpunit": "~4.5|~5", + "symfony/phpunit-bridge": "~2.7|~3|~4", + "symfony/yaml": "~2.3|~3|~4" }, "suggest": { "symfony/yaml": "If you want to parse features, represented in YAML files" @@ -27678,7 +16267,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.x-dev" + "dev-master": "4.4-dev" } }, "autoload": { @@ -27697,7 +16286,7 @@ "homepage": "http://everzet.com" } ], - "description": "Gherkin DSL parser for PHP", + "description": "Gherkin DSL parser for PHP 5.3", "homepage": "http://behat.org/", "keywords": [ "BDD", @@ -27707,39 +16296,34 @@ "gherkin", "parser" ], - "support": { - "issues": "https://github.com/Behat/Gherkin/issues", - "source": "https://github.com/Behat/Gherkin/tree/v4.9.0" - }, - "time": "2021-10-12T13:05:09+00:00" + "time": "2020-03-17T14:03:26+00:00" }, { "name": "behat/mink", - "version": "v1.11.0", + "version": "v1.8.1", "source": { "type": "git", "url": "https://github.com/minkphp/Mink.git", - "reference": "d8527fdf8785aad38455fb426af457ab9937aece" + "reference": "07c6a9fe3fa98c2de074b25d9ed26c22904e3887" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/minkphp/Mink/zipball/d8527fdf8785aad38455fb426af457ab9937aece", - "reference": "d8527fdf8785aad38455fb426af457ab9937aece", + "url": "https://api.github.com/repos/minkphp/Mink/zipball/07c6a9fe3fa98c2de074b25d9ed26c22904e3887", + "reference": "07c6a9fe3fa98c2de074b25d9ed26c22904e3887", "shasum": "" }, "require": { - "php": ">=7.2", - "symfony/css-selector": "^4.4 || ^5.0 || ^6.0 || ^7.0" + "php": ">=5.3.1", + "symfony/css-selector": "^2.7|^3.0|^4.0|^5.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" + "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20", + "symfony/debug": "^2.7|^3.0|^4.0", + "symfony/phpunit-bridge": "^3.4.38 || ^5.0.5" }, "suggest": { - "behat/mink-browserkit-driver": "fast headless driver for any app without JS emulation", + "behat/mink-browserkit-driver": "extremely fast headless driver for Symfony\\Kernel-based apps (Sf2, Silex)", + "behat/mink-goutte-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)" @@ -27747,7 +16331,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.x-dev" + "dev-master": "1.8.x-dev" } }, "autoload": { @@ -27767,44 +16351,152 @@ } ], "description": "Browser controller/emulator abstraction for PHP", - "homepage": "https://mink.behat.org/", + "homepage": "http://mink.behat.org/", "keywords": [ "browser", "testing", "web" ], - "support": { - "issues": "https://github.com/minkphp/Mink/issues", - "source": "https://github.com/minkphp/Mink/tree/v1.11.0" - }, - "time": "2023-12-09T11:23:23+00:00" + "time": "2020-03-11T15:45:53+00:00" }, { - "name": "behat/transliterator", - "version": "v1.5.0", + "name": "behat/mink-browserkit-driver", + "version": "v1.3.4", "source": { "type": "git", - "url": "https://github.com/Behat/Transliterator.git", - "reference": "baac5873bac3749887d28ab68e2f74db3a4408af" + "url": "https://github.com/minkphp/MinkBrowserKitDriver.git", + "reference": "e3b90840022ebcd544c7b394a3c9597ae242cbee" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Behat/Transliterator/zipball/baac5873bac3749887d28ab68e2f74db3a4408af", - "reference": "baac5873bac3749887d28ab68e2f74db3a4408af", + "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/e3b90840022ebcd544c7b394a3c9597ae242cbee", + "reference": "e3b90840022ebcd544c7b394a3c9597ae242cbee", "shasum": "" }, "require": { - "php": ">=7.2" + "behat/mink": "^1.7.1@dev", + "php": ">=5.3.6", + "symfony/browser-kit": "~2.3|~3.0|~4.0", + "symfony/dom-crawler": "~2.3|~3.0|~4.0" + }, + "require-dev": { + "mink/driver-testsuite": "dev-master", + "symfony/debug": "^2.7|^3.0|^4.0", + "symfony/http-kernel": "~2.3|~3.0|~4.0" + }, + "type": "mink-driver", + "extra": { + "branch-alias": { + "dev-master": "1.3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Behat\\Mink\\Driver\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "http://everzet.com" + } + ], + "description": "Symfony2 BrowserKit driver for Mink framework", + "homepage": "http://mink.behat.org/", + "keywords": [ + "Mink", + "Symfony2", + "browser", + "testing" + ], + "time": "2020-03-11T09:49:45+00:00" + }, + { + "name": "behat/mink-goutte-driver", + "version": "v1.2.1", + "source": { + "type": "git", + "url": "https://github.com/minkphp/MinkGoutteDriver.git", + "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8b9ad6d2d95bc70b840d15323365f52fcdaea6ca", + "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca", + "shasum": "" + }, + "require": { + "behat/mink": "~1.6@dev", + "behat/mink-browserkit-driver": "~1.2@dev", + "fabpot/goutte": "~1.0.4|~2.0|~3.1", + "php": ">=5.3.1" + }, + "require-dev": { + "symfony/phpunit-bridge": "~2.7|~3.0" + }, + "type": "mink-driver", + "extra": { + "branch-alias": { + "dev-master": "1.2.x-dev" + } + }, + "autoload": { + "psr-4": { + "Behat\\Mink\\Driver\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "http://everzet.com" + } + ], + "description": "Goutte driver for Mink framework", + "homepage": "http://mink.behat.org/", + "keywords": [ + "browser", + "goutte", + "headless", + "testing" + ], + "time": "2016-03-05T09:04:22+00:00" + }, + { + "name": "behat/transliterator", + "version": "v1.3.0", + "source": { + "type": "git", + "url": "https://github.com/Behat/Transliterator.git", + "reference": "3c4ec1d77c3d05caa1f0bf8fb3aae4845005c7fc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Behat/Transliterator/zipball/3c4ec1d77c3d05caa1f0bf8fb3aae4845005c7fc", + "reference": "3c4ec1d77c3d05caa1f0bf8fb3aae4845005c7fc", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" }, "require-dev": { "chuyskywalker/rolling-curl": "^3.1", "php-yaoi/php-yaoi": "^1.0", - "phpunit/phpunit": "^8.5.25 || ^9.5.19" + "phpunit/phpunit": "^4.8.36|^6.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.x-dev" + "dev-master": "1.2-dev" } }, "autoload": { @@ -27822,357 +16514,43 @@ "slug", "transliterator" ], - "support": { - "issues": "https://github.com/Behat/Transliterator/issues", - "source": "https://github.com/Behat/Transliterator/tree/v1.5.0" - }, - "time": "2022-03-30T09:27:43+00:00" + "time": "2020-01-14T16:39:13+00:00" }, { - "name": "drupal/upgrade_status", - "version": "4.0.0", + "name": "doctrine/instantiator", + "version": "1.3.1", "source": { "type": "git", - "url": "https://git.drupalcode.org/project/upgrade_status.git", - "reference": "4.0.0" + "url": "https://github.com/doctrine/instantiator.git", + "reference": "f350df0268e904597e3bd9c4685c53e0e333feea" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/upgrade_status-4.0.0.zip", - "reference": "4.0.0", - "shasum": "013afdb46a03c9db0119cb1ce60ca49631d64368" - }, - "require": { - "drupal/core": "^9 || ^10", - "mathieuviossat/arraytotexttable": "~1.0.0", - "mglaman/phpstan-drupal": "^1.0.0", - "nikic/php-parser": "^4.0.0", - "phpstan/phpstan-deprecation-rules": "^1.0.0", - "symfony/process": "^3.4|^4.0|^5.0|^6.0", - "webflo/drupal-finder": "^1.2" - }, - "type": "drupal-module", - "extra": { - "drupal": { - "version": "4.0.0", - "datestamp": "1678815090", - "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": "colan", - "homepage": "https://www.drupal.org/user/58704" - }, - { - "name": "Gábor Hojtsy", - "homepage": "https://www.drupal.org/user/4166" - }, - { - "name": "herczogzoltan", - "homepage": "https://www.drupal.org/user/3528391" - }, - { - "name": "sun", - "homepage": "https://www.drupal.org/user/54136" - }, - { - "name": "webchick", - "homepage": "https://www.drupal.org/user/24967" - }, - { - "name": "xjm", - "homepage": "https://www.drupal.org/user/65776" - } - ], - "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": "laminas/laminas-servicemanager", - "version": "3.15.0", - "source": { - "type": "git", - "url": "https://github.com/laminas/laminas-servicemanager.git", - "reference": "65910ef6a8066b0369fab77fbec9e030be59c866" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-servicemanager/zipball/65910ef6a8066b0369fab77fbec9e030be59c866", - "reference": "65910ef6a8066b0369fab77fbec9e030be59c866", + "url": "https://api.github.com/repos/doctrine/instantiator/zipball/f350df0268e904597e3bd9c4685c53e0e333feea", + "reference": "f350df0268e904597e3bd9c4685c53e0e333feea", "shasum": "" }, "require": { - "composer-plugin-api": "^2.0", - "laminas/laminas-stdlib": "^3.2.1", - "php": "~7.4.0 || ~8.0.0 || ~8.1.0", - "psr/container": "^1.1 || ^2.0.2" - }, - "conflict": { - "ext-psr": "*", - "laminas/laminas-code": "<3.3.1", - "zendframework/zend-code": "<3.3.1", - "zendframework/zend-servicemanager": "*" - }, - "provide": { - "psr/container-implementation": "^1.1 || ^2.0" - }, - "replace": { - "container-interop/container-interop": "^1.2.0" + "php": "^7.1 || ^8.0" }, "require-dev": { - "laminas/laminas-coding-standard": "~2.3.0", - "laminas/laminas-container-config-test": "^0.6", - "mikey179/vfsstream": "^1.6.10@alpha", - "ocramius/proxy-manager": "^2.11", - "phpbench/phpbench": "^1.1", - "phpspec/prophecy-phpunit": "^2.0", - "phpunit/phpunit": "^9.5.5", - "psalm/plugin-phpunit": "^0.17.0", - "vimeo/psalm": "^4.8" - }, - "suggest": { - "ocramius/proxy-manager": "ProxyManager ^2.1.1 to handle lazy initialization of services" - }, - "bin": [ - "bin/generate-deps-for-config-factory", - "bin/generate-factory-for-class" - ], - "type": "library", - "autoload": { - "files": [ - "src/autoload.php" - ], - "psr-4": { - "Laminas\\ServiceManager\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "description": "Factory-Driven Dependency Injection Container", - "homepage": "https://laminas.dev", - "keywords": [ - "PSR-11", - "dependency-injection", - "di", - "dic", - "laminas", - "service-manager", - "servicemanager" - ], - "support": { - "chat": "https://laminas.dev/chat", - "docs": "https://docs.laminas.dev/laminas-servicemanager/", - "forum": "https://discourse.laminas.dev", - "issues": "https://github.com/laminas/laminas-servicemanager/issues", - "rss": "https://github.com/laminas/laminas-servicemanager/releases.atom", - "source": "https://github.com/laminas/laminas-servicemanager" - }, - "funding": [ - { - "url": "https://funding.communitybridge.org/projects/laminas-project", - "type": "community_bridge" - } - ], - "time": "2022-07-18T21:18:56+00:00" - }, - { - "name": "laminas/laminas-text", - "version": "2.9.0", - "source": { - "type": "git", - "url": "https://github.com/laminas/laminas-text.git", - "reference": "8879e75d03e09b0d6787e6680cfa255afd4645a7" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/laminas/laminas-text/zipball/8879e75d03e09b0d6787e6680cfa255afd4645a7", - "reference": "8879e75d03e09b0d6787e6680cfa255afd4645a7", - "shasum": "" - }, - "require": { - "laminas/laminas-servicemanager": "^3.4", - "laminas/laminas-stdlib": "^3.6", - "php": "^7.3 || ~8.0.0 || ~8.1.0" - }, - "conflict": { - "zendframework/zend-text": "*" - }, - "require-dev": { - "laminas/laminas-coding-standard": "~1.0.0", - "phpunit/phpunit": "^9.3" + "doctrine/coding-standard": "^6.0", + "ext-pdo": "*", + "ext-phar": "*", + "phpbench/phpbench": "^0.13", + "phpstan/phpstan-phpunit": "^0.11", + "phpstan/phpstan-shim": "^0.11", + "phpunit/phpunit": "^7.0" }, "type": "library", - "autoload": { - "psr-4": { - "Laminas\\Text\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-3-Clause" - ], - "description": "Create FIGlets and text-based tables", - "homepage": "https://laminas.dev", - "keywords": [ - "laminas", - "text" - ], - "support": { - "chat": "https://laminas.dev/chat", - "docs": "https://docs.laminas.dev/laminas-text/", - "forum": "https://discourse.laminas.dev", - "issues": "https://github.com/laminas/laminas-text/issues", - "rss": "https://github.com/laminas/laminas-text/releases.atom", - "source": "https://github.com/laminas/laminas-text" - }, - "funding": [ - { - "url": "https://funding.communitybridge.org/projects/laminas-project", - "type": "community_bridge" - } - ], - "time": "2021-09-02T16:50:53+00:00" - }, - { - "name": "mathieuviossat/arraytotexttable", - "version": "v1.0.9", - "source": { - "type": "git", - "url": "https://github.com/viossat/arraytotexttable.git", - "reference": "518ec338fe62e92c064a9d3d3bc8c64fb6e77d1c" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/viossat/arraytotexttable/zipball/518ec338fe62e92c064a9d3d3bc8c64fb6e77d1c", - "reference": "518ec338fe62e92c064a9d3d3bc8c64fb6e77d1c", - "shasum": "" - }, - "require": { - "laminas/laminas-text": "^2.9", - "php": ">=5.3.0" - }, - "type": "library", - "autoload": { - "psr-4": { - "MathieuViossat\\Util\\": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Mathieu Viossat", - "email": "mathieu@viossat.fr", - "homepage": "https://viossat.fr" - } - ], - "description": "Display arrays in terminal", - "homepage": "https://github.com/viossat/arraytotexttable", - "keywords": [ - "array", - "ascii", - "table", - "terminal", - "text", - "unicode" - ], - "support": { - "issues": "https://github.com/viossat/arraytotexttable/issues", - "source": "https://github.com/viossat/arraytotexttable/tree/v1.0.9" - }, - "time": "2022-08-30T15:33:10+00:00" - }, - { - "name": "mglaman/phpstan-drupal", - "version": "1.2.7", - "source": { - "type": "git", - "url": "https://github.com/mglaman/phpstan-drupal.git", - "reference": "32f79fcf48c74532014248687ae3850581a22416" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/32f79fcf48c74532014248687ae3850581a22416", - "reference": "32f79fcf48c74532014248687ae3850581a22416", - "shasum": "" - }, - "require": { - "php": "^7.4 || ^8.0", - "phpstan/phpstan": "^1.10.56", - "phpstan/phpstan-deprecation-rules": "^1.1.4", - "symfony/finder": "^4.2 || ^5.0 || ^6.0 || ^7.0", - "symfony/yaml": "^4.2|| ^5.0 || ^6.0 || ^7.0", - "webflo/drupal-finder": "^1.2" - }, - "require-dev": { - "behat/mink": "^1.8", - "composer/installers": "^1.9", - "drupal/core-recommended": "^9.0", - "drush/drush": "^10.0 || ^11 || ^12", - "phpstan/extension-installer": "^1.1", - "phpstan/phpstan-strict-rules": "^1.0", - "phpunit/phpunit": "^8.5 || ^9", - "slevomat/coding-standard": "^7.1", - "squizlabs/php_codesniffer": "^3.3", - "symfony/phpunit-bridge": "^4.4 || ^5.4 || ^6.0 || ^7.0" - }, - "suggest": { - "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.", - "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.", - "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan." - }, - "type": "phpstan-extension", "extra": { "branch-alias": { - "dev-main": "1.0-dev" - }, - "installer-paths": { - "tests/fixtures/drupal/core": [ - "type:drupal-core" - ], - "tests/fixtures/drupal/libraries/{$name}": [ - "type:drupal-library" - ], - "tests/fixtures/drupal/modules/contrib/{$name}": [ - "type:drupal-module" - ], - "tests/fixtures/drupal/profiles/contrib/{$name}": [ - "type:drupal-profile" - ], - "tests/fixtures/drupal/themes/contrib/{$name}": [ - "type:drupal-theme" - ] - }, - "phpstan": { - "includes": [ - "extension.neon", - "rules.neon" - ] + "dev-master": "1.2.x-dev" } }, "autoload": { "psr-4": { - "mglaman\\PHPStanDrupal\\": "src/" + "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" } }, "notification-url": "https://packagist.org/downloads/", @@ -28181,173 +16559,1469 @@ ], "authors": [ { - "name": "Matt Glaman", - "email": "nmd.matt@gmail.com" + "name": "Marco Pivetta", + "email": "ocramius@gmail.com", + "homepage": "http://ocramius.github.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/1.2.7" - }, + "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", + "homepage": "https://www.doctrine-project.org/projects/instantiator.html", + "keywords": [ + "constructor", + "instantiate" + ], "funding": [ { - "url": "https://github.com/mglaman", - "type": "github" + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" }, { - "url": "https://opencollective.com/phpstan-drupal", - "type": "open_collective" + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" }, { - "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal", + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator", "type": "tidelift" } ], - "time": "2024-02-14T04:38:08+00:00" + "time": "2020-05-29T17:27:14+00:00" }, { - "name": "phpstan/phpstan", - "version": "1.10.58", + "name": "fabpot/goutte", + "version": "v3.2.3", "source": { "type": "git", - "url": "https://github.com/phpstan/phpstan.git", - "reference": "a23518379ec4defd9e47cbf81019526861623ec2" + "url": "https://github.com/FriendsOfPHP/Goutte.git", + "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/a23518379ec4defd9e47cbf81019526861623ec2", - "reference": "a23518379ec4defd9e47cbf81019526861623ec2", + "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/3f0eaf0a40181359470651f1565b3e07e3dd31b8", + "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8", "shasum": "" }, "require": { - "php": "^7.2|^8.0" + "guzzlehttp/guzzle": "^6.0", + "php": ">=5.5.0", + "symfony/browser-kit": "~2.1|~3.0|~4.0", + "symfony/css-selector": "~2.1|~3.0|~4.0", + "symfony/dom-crawler": "~2.1|~3.0|~4.0" }, - "conflict": { - "phpstan/phpstan-shim": "*" + "require-dev": { + "symfony/phpunit-bridge": "^3.3 || ^4" + }, + "type": "application", + "extra": { + "branch-alias": { + "dev-master": "3.2-dev" + } }, - "bin": [ - "phpstan", - "phpstan.phar" - ], - "type": "library", "autoload": { - "files": [ - "bootstrap.php" + "psr-4": { + "Goutte\\": "Goutte" + }, + "exclude-from-classmap": [ + "Goutte/Tests" ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "description": "PHPStan - PHP Static Analysis Tool", - "keywords": [ - "dev", - "static analysis" - ], - "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": [ + "authors": [ { - "url": "https://github.com/ondrejmirtes", - "type": "github" - }, - { - "url": "https://github.com/phpstan", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan", - "type": "tidelift" + "name": "Fabien Potencier", + "email": "fabien@symfony.com" } ], - "time": "2024-02-12T20:02:57+00:00" + "description": "A simple PHP Web Scraper", + "homepage": "https://github.com/FriendsOfPHP/Goutte", + "keywords": [ + "scraper" + ], + "time": "2018-06-29T15:13:57+00:00" }, { - "name": "phpstan/phpstan-deprecation-rules", - "version": "1.1.4", + "name": "myclabs/deep-copy", + "version": "1.10.1", "source": { "type": "git", - "url": "https://github.com/phpstan/phpstan-deprecation-rules.git", - "reference": "089d8a8258ed0aeefdc7b68b6c3d25572ebfdbaa" + "url": "https://github.com/myclabs/DeepCopy.git", + "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/089d8a8258ed0aeefdc7b68b6c3d25572ebfdbaa", - "reference": "089d8a8258ed0aeefdc7b68b6c3d25572ebfdbaa", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/969b211f9a51aa1f6c01d1d2aef56d3bd91598e5", + "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5", "shasum": "" }, "require": { - "php": "^7.2 || ^8.0", - "phpstan/phpstan": "^1.10.3" + "php": "^7.1 || ^8.0" + }, + "replace": { + "myclabs/deep-copy": "self.version" }, "require-dev": { - "php-parallel-lint/php-parallel-lint": "^1.2", - "phpstan/phpstan-php-parser": "^1.1", - "phpstan/phpstan-phpunit": "^1.0", - "phpunit/phpunit": "^9.5" + "doctrine/collections": "^1.0", + "doctrine/common": "^2.6", + "phpunit/phpunit": "^7.1" }, - "type": "phpstan-extension", + "type": "library", + "autoload": { + "psr-4": { + "DeepCopy\\": "src/DeepCopy/" + }, + "files": [ + "src/DeepCopy/deep_copy.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Create deep copies (clones) of your objects", + "keywords": [ + "clone", + "copy", + "duplicate", + "object", + "object graph" + ], + "funding": [ + { + "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", + "type": "tidelift" + } + ], + "time": "2020-06-29T13:22:24+00:00" + }, + { + "name": "phar-io/manifest", + "version": "1.0.3", + "source": { + "type": "git", + "url": "https://github.com/phar-io/manifest.git", + "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4", + "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-phar": "*", + "phar-io/version": "^2.0", + "php": "^5.6 || ^7.0" + }, + "type": "library", "extra": { - "phpstan": { - "includes": [ - "rules.neon" - ] + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", + "time": "2018-07-08T19:23:20+00:00" + }, + { + "name": "phar-io/version", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/phar-io/version.git", + "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6", + "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6", + "shasum": "" + }, + "require": { + "php": "^5.6 || ^7.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Library for handling version information and constraints", + "time": "2018-07-08T19:19:57+00:00" + }, + { + "name": "phpdocumentor/reflection-common", + "version": "2.2.0", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/ReflectionCommon.git", + "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b", + "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-2.x": "2.x-dev" } }, "autoload": { "psr-4": { - "PHPStan\\": "src/" + "phpDocumentor\\Reflection\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], - "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.", - "support": { - "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues", - "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.1.4" - }, - "time": "2023-08-05T09:02:04+00:00" + "authors": [ + { + "name": "Jaap van Otterdijk", + "email": "opensource@ijaap.nl" + } + ], + "description": "Common reflection classes used by phpdocumentor to reflect the code structure", + "homepage": "http://www.phpdoc.org", + "keywords": [ + "FQSEN", + "phpDocumentor", + "phpdoc", + "reflection", + "static analysis" + ], + "time": "2020-06-27T09:03:43+00:00" }, { - "name": "symfony/config", - "version": "v6.4.3", + "name": "phpdocumentor/reflection-docblock", + "version": "5.2.1", "source": { "type": "git", - "url": "https://github.com/symfony/config.git", - "reference": "206482ff3ed450495b1d5b7bad1bc3a852def96f" + "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", + "reference": "d870572532cd70bc3fab58f2e23ad423c8404c44" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/206482ff3ed450495b1d5b7bad1bc3a852def96f", - "reference": "206482ff3ed450495b1d5b7bad1bc3a852def96f", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/d870572532cd70bc3fab58f2e23ad423c8404c44", + "reference": "d870572532cd70bc3fab58f2e23ad423c8404c44", "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" + "ext-filter": "*", + "php": "^7.2 || ^8.0", + "phpdocumentor/reflection-common": "^2.2", + "phpdocumentor/type-resolver": "^1.3", + "webmozart/assert": "^1.9.1" }, "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" + "mockery/mockery": "~1.3.2" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.x-dev" + } + }, + "autoload": { + "psr-4": { + "phpDocumentor\\Reflection\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mike van Riel", + "email": "me@mikevanriel.com" + }, + { + "name": "Jaap van Otterdijk", + "email": "account@ijaap.nl" + } + ], + "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", + "time": "2020-08-15T11:14:08+00:00" + }, + { + "name": "phpdocumentor/type-resolver", + "version": "1.3.0", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/TypeResolver.git", + "reference": "e878a14a65245fbe78f8080eba03b47c3b705651" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/e878a14a65245fbe78f8080eba03b47c3b705651", + "reference": "e878a14a65245fbe78f8080eba03b47c3b705651", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0", + "phpdocumentor/reflection-common": "^2.0" + }, + "require-dev": { + "ext-tokenizer": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "phpDocumentor\\Reflection\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mike van Riel", + "email": "me@mikevanriel.com" + } + ], + "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", + "time": "2020-06-27T10:12:23+00:00" + }, + { + "name": "phpspec/prophecy", + "version": "1.11.1", + "source": { + "type": "git", + "url": "https://github.com/phpspec/prophecy.git", + "reference": "b20034be5efcdab4fb60ca3a29cba2949aead160" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/b20034be5efcdab4fb60ca3a29cba2949aead160", + "reference": "b20034be5efcdab4fb60ca3a29cba2949aead160", + "shasum": "" + }, + "require": { + "doctrine/instantiator": "^1.2", + "php": "^7.2", + "phpdocumentor/reflection-docblock": "^5.0", + "sebastian/comparator": "^3.0 || ^4.0", + "sebastian/recursion-context": "^3.0 || ^4.0" + }, + "require-dev": { + "phpspec/phpspec": "^6.0", + "phpunit/phpunit": "^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.11.x-dev" + } + }, + "autoload": { + "psr-4": { + "Prophecy\\": "src/Prophecy" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "http://everzet.com" + }, + { + "name": "Marcello Duarte", + "email": "marcello.duarte@gmail.com" + } + ], + "description": "Highly opinionated mocking framework for PHP 5.3+", + "homepage": "https://github.com/phpspec/prophecy", + "keywords": [ + "Double", + "Dummy", + "fake", + "mock", + "spy", + "stub" + ], + "time": "2020-07-08T12:44:21+00:00" + }, + { + "name": "phpunit/php-code-coverage", + "version": "6.1.4", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-code-coverage.git", + "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/807e6013b00af69b6c5d9ceb4282d0393dbb9d8d", + "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-xmlwriter": "*", + "php": "^7.1", + "phpunit/php-file-iterator": "^2.0", + "phpunit/php-text-template": "^1.2.1", + "phpunit/php-token-stream": "^3.0", + "sebastian/code-unit-reverse-lookup": "^1.0.1", + "sebastian/environment": "^3.1 || ^4.0", + "sebastian/version": "^2.0.1", + "theseer/tokenizer": "^1.1" + }, + "require-dev": { + "phpunit/phpunit": "^7.0" + }, + "suggest": { + "ext-xdebug": "^2.6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "6.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", + "homepage": "https://github.com/sebastianbergmann/php-code-coverage", + "keywords": [ + "coverage", + "testing", + "xunit" + ], + "time": "2018-10-31T16:06:48+00:00" + }, + { + "name": "phpunit/php-file-iterator", + "version": "2.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-file-iterator.git", + "reference": "050bedf145a257b1ff02746c31894800e5122946" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946", + "reference": "050bedf145a257b1ff02746c31894800e5122946", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "require-dev": { + "phpunit/phpunit": "^7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "FilterIterator implementation that filters files based on a list of suffixes.", + "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", + "keywords": [ + "filesystem", + "iterator" + ], + "time": "2018-09-13T20:33:42+00:00" + }, + { + "name": "phpunit/php-text-template", + "version": "1.2.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-text-template.git", + "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686", + "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Simple template engine.", + "homepage": "https://github.com/sebastianbergmann/php-text-template/", + "keywords": [ + "template" + ], + "time": "2015-06-21T13:50:34+00:00" + }, + { + "name": "phpunit/php-timer", + "version": "2.1.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-timer.git", + "reference": "1038454804406b0b5f5f520358e78c1c2f71501e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e", + "reference": "1038454804406b0b5f5f520358e78c1c2f71501e", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "require-dev": { + "phpunit/phpunit": "^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Utility class for timing", + "homepage": "https://github.com/sebastianbergmann/php-timer/", + "keywords": [ + "timer" + ], + "time": "2019-06-07T04:22:29+00:00" + }, + { + "name": "phpunit/php-token-stream", + "version": "3.1.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-token-stream.git", + "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff", + "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff", + "shasum": "" + }, + "require": { + "ext-tokenizer": "*", + "php": "^7.1" + }, + "require-dev": { + "phpunit/phpunit": "^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Wrapper around PHP's tokenizer extension.", + "homepage": "https://github.com/sebastianbergmann/php-token-stream/", + "keywords": [ + "tokenizer" + ], + "abandoned": true, + "time": "2019-09-17T06:23:10+00:00" + }, + { + "name": "phpunit/phpunit", + "version": "7.5.20", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/phpunit.git", + "reference": "9467db479d1b0487c99733bb1e7944d32deded2c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9467db479d1b0487c99733bb1e7944d32deded2c", + "reference": "9467db479d1b0487c99733bb1e7944d32deded2c", + "shasum": "" + }, + "require": { + "doctrine/instantiator": "^1.1", + "ext-dom": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-xml": "*", + "myclabs/deep-copy": "^1.7", + "phar-io/manifest": "^1.0.2", + "phar-io/version": "^2.0", + "php": "^7.1", + "phpspec/prophecy": "^1.7", + "phpunit/php-code-coverage": "^6.0.7", + "phpunit/php-file-iterator": "^2.0.1", + "phpunit/php-text-template": "^1.2.1", + "phpunit/php-timer": "^2.1", + "sebastian/comparator": "^3.0", + "sebastian/diff": "^3.0", + "sebastian/environment": "^4.0", + "sebastian/exporter": "^3.1", + "sebastian/global-state": "^2.0", + "sebastian/object-enumerator": "^3.0.3", + "sebastian/resource-operations": "^2.0", + "sebastian/version": "^2.0.1" + }, + "conflict": { + "phpunit/phpunit-mock-objects": "*" + }, + "require-dev": { + "ext-pdo": "*" + }, + "suggest": { + "ext-soap": "*", + "ext-xdebug": "*", + "phpunit/php-invoker": "^2.0" + }, + "bin": [ + "phpunit" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "7.5-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "The PHP Unit Testing framework.", + "homepage": "https://phpunit.de/", + "keywords": [ + "phpunit", + "testing", + "xunit" + ], + "time": "2020-01-08T08:45:45+00:00" + }, + { + "name": "sebastian/code-unit-reverse-lookup", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", + "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", + "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", + "shasum": "" + }, + "require": { + "php": "^5.6 || ^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^5.7 || ^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Looks up which function or method a line of code belongs to", + "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", + "time": "2017-03-04T06:30:41+00:00" + }, + { + "name": "sebastian/comparator", + "version": "3.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/comparator.git", + "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da", + "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da", + "shasum": "" + }, + "require": { + "php": "^7.1", + "sebastian/diff": "^3.0", + "sebastian/exporter": "^3.1" + }, + "require-dev": { + "phpunit/phpunit": "^7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@2bepublished.at" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides the functionality to compare PHP values for equality", + "homepage": "https://github.com/sebastianbergmann/comparator", + "keywords": [ + "comparator", + "compare", + "equality" + ], + "time": "2018-07-12T15:12:46+00:00" + }, + { + "name": "sebastian/diff", + "version": "3.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/diff.git", + "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/720fcc7e9b5cf384ea68d9d930d480907a0c1a29", + "reference": "720fcc7e9b5cf384ea68d9d930d480907a0c1a29", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "require-dev": { + "phpunit/phpunit": "^7.5 || ^8.0", + "symfony/process": "^2 || ^3.3 || ^4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Kore Nordmann", + "email": "mail@kore-nordmann.de" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Diff implementation", + "homepage": "https://github.com/sebastianbergmann/diff", + "keywords": [ + "diff", + "udiff", + "unidiff", + "unified diff" + ], + "time": "2019-02-04T06:01:07+00:00" + }, + { + "name": "sebastian/environment", + "version": "4.2.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/environment.git", + "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/464c90d7bdf5ad4e8a6aea15c091fec0603d4368", + "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "require-dev": { + "phpunit/phpunit": "^7.5" + }, + "suggest": { + "ext-posix": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.2-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides functionality to handle HHVM/PHP environments", + "homepage": "http://www.github.com/sebastianbergmann/environment", + "keywords": [ + "Xdebug", + "environment", + "hhvm" + ], + "time": "2019-11-20T08:46:58+00:00" + }, + { + "name": "sebastian/exporter", + "version": "3.1.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/exporter.git", + "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e", + "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e", + "shasum": "" + }, + "require": { + "php": "^7.0", + "sebastian/recursion-context": "^3.0" + }, + "require-dev": { + "ext-mbstring": "*", + "phpunit/phpunit": "^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.1.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Provides the functionality to export PHP variables for visualization", + "homepage": "http://www.github.com/sebastianbergmann/exporter", + "keywords": [ + "export", + "exporter" + ], + "time": "2019-09-14T09:02:43+00:00" + }, + { + "name": "sebastian/global-state", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/global-state.git", + "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4", + "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4", + "shasum": "" + }, + "require": { + "php": "^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" + }, + "suggest": { + "ext-uopz": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Snapshotting of global state", + "homepage": "http://www.github.com/sebastianbergmann/global-state", + "keywords": [ + "global state" + ], + "time": "2017-04-27T15:39:26+00:00" + }, + { + "name": "sebastian/object-enumerator", + "version": "3.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-enumerator.git", + "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5", + "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5", + "shasum": "" + }, + "require": { + "php": "^7.0", + "sebastian/object-reflector": "^1.1.1", + "sebastian/recursion-context": "^3.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Traverses array structures and object graphs to enumerate all referenced objects", + "homepage": "https://github.com/sebastianbergmann/object-enumerator/", + "time": "2017-08-03T12:35:26+00:00" + }, + { + "name": "sebastian/object-reflector", + "version": "1.1.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-reflector.git", + "reference": "773f97c67f28de00d397be301821b06708fca0be" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be", + "reference": "773f97c67f28de00d397be301821b06708fca0be", + "shasum": "" + }, + "require": { + "php": "^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Allows reflection of object attributes, including inherited and non-public ones", + "homepage": "https://github.com/sebastianbergmann/object-reflector/", + "time": "2017-03-29T09:07:27+00:00" + }, + { + "name": "sebastian/recursion-context", + "version": "3.0.0", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/recursion-context.git", + "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8", + "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8", + "shasum": "" + }, + "require": { + "php": "^7.0" + }, + "require-dev": { + "phpunit/phpunit": "^6.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + } + ], + "description": "Provides functionality to recursively process PHP variables", + "homepage": "http://www.github.com/sebastianbergmann/recursion-context", + "time": "2017-03-03T06:23:57+00:00" + }, + { + "name": "sebastian/resource-operations", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/resource-operations.git", + "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9", + "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides a list of PHP built-in functions that operate on resources", + "homepage": "https://www.github.com/sebastianbergmann/resource-operations", + "time": "2018-10-04T04:07:39+00:00" + }, + { + "name": "sebastian/version", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/version.git", + "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019", + "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019", + "shasum": "" + }, + "require": { + "php": ">=5.6" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that helps with managing the version number of Git-hosted PHP projects", + "homepage": "https://github.com/sebastianbergmann/version", + "time": "2016-10-03T07:35:21+00:00" + }, + { + "name": "symfony/browser-kit", + "version": "v4.4.13", + "source": { + "type": "git", + "url": "https://github.com/symfony/browser-kit.git", + "reference": "f53310646af9901292488b2ff36e26ea10f545f5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/browser-kit/zipball/f53310646af9901292488b2ff36e26ea10f545f5", + "reference": "f53310646af9901292488b2ff36e26ea10f545f5", + "shasum": "" + }, + "require": { + "php": ">=7.1.3", + "symfony/dom-crawler": "^3.4|^4.0|^5.0" + }, + "require-dev": { + "symfony/css-selector": "^3.4|^4.0|^5.0", + "symfony/http-client": "^4.3|^5.0", + "symfony/mime": "^4.3|^5.0", + "symfony/process": "^3.4|^4.0|^5.0" + }, + "suggest": { + "symfony/process": "" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.4-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\BrowserKit\\": "" + }, + "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 BrowserKit Component", + "homepage": "https://symfony.com", + "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": "2020-05-22T17:28:00+00:00" + }, + { + "name": "symfony/config", + "version": "v5.1.5", + "source": { + "type": "git", + "url": "https://github.com/symfony/config.git", + "reference": "22f961ddffdc81389670b2ca74a1cc0213761ec0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/config/zipball/22f961ddffdc81389670b2ca74a1cc0213761ec0", + "reference": "22f961ddffdc81389670b2ca74a1cc0213761ec0", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "symfony/deprecation-contracts": "^2.1", + "symfony/filesystem": "^4.4|^5.0", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-php80": "^1.15" + }, + "conflict": { + "symfony/finder": "<4.4" + }, + "require-dev": { + "symfony/event-dispatcher": "^4.4|^5.0", + "symfony/finder": "^4.4|^5.0", + "symfony/messenger": "^4.4|^5.0", + "symfony/service-contracts": "^1.1|^2", + "symfony/yaml": "^4.4|^5.0" + }, + "suggest": { + "symfony/yaml": "To use the yaml reference dumper" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.1-dev" + } + }, "autoload": { "psr-4": { "Symfony\\Component\\Config\\": "" @@ -28370,11 +18044,8 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Helps you find, load, combine, autofill and validate configuration values of any kind", + "description": "Symfony Config Component", "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/config/tree/v6.4.3" - }, "funding": [ { "url": "https://symfony.com/sponsor", @@ -28389,63 +18060,173 @@ "type": "tidelift" } ], - "time": "2024-01-29T13:26:27+00:00" + "time": "2020-08-17T07:48:54+00:00" }, { - "name": "symfony/translation", - "version": "v6.4.3", + "name": "symfony/css-selector", + "version": "v4.4.13", "source": { "type": "git", - "url": "https://github.com/symfony/translation.git", - "reference": "637c51191b6b184184bbf98937702bcf554f7d04" + "url": "https://github.com/symfony/css-selector.git", + "reference": "bf17dc9f6ce144e41f786c32435feea4d8e11dcc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/637c51191b6b184184bbf98937702bcf554f7d04", - "reference": "637c51191b6b184184bbf98937702bcf554f7d04", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/bf17dc9f6ce144e41f786c32435feea4d8e11dcc", + "reference": "bf17dc9f6ce144e41f786c32435feea4d8e11dcc", "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" + "php": ">=7.1.3" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.4-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Component\\CssSelector\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Jean-François Simon", + "email": "jeanfrancois.simon@sensiolabs.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony CssSelector Component", + "homepage": "https://symfony.com", + "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": "2020-07-05T09:39:30+00:00" + }, + { + "name": "symfony/deprecation-contracts", + "version": "v2.2.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/deprecation-contracts.git", + "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5fa56b4074d1ae755beb55617ddafe6f5d78f665", + "reference": "5fa56b4074d1ae755beb55617ddafe6f5d78f665", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.2-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, "autoload": { "files": [ - "Resources/functions.php" - ], + "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", + "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": "2020-09-07T11:33:47+00:00" + }, + { + "name": "symfony/dom-crawler", + "version": "v4.2.12", + "source": { + "type": "git", + "url": "https://github.com/symfony/dom-crawler.git", + "reference": "ba1da8fb10291714b8db153fcf7ac515e1a217bb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/ba1da8fb10291714b8db153fcf7ac515e1a217bb", + "reference": "ba1da8fb10291714b8db153fcf7ac515e1a217bb", + "shasum": "" + }, + "require": { + "php": "^7.1.3", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-mbstring": "~1.0" + }, + "require-dev": { + "symfony/css-selector": "~3.4|~4.0" + }, + "suggest": { + "symfony/css-selector": "" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.2-dev" + } + }, + "autoload": { "psr-4": { - "Symfony\\Component\\Translation\\": "" + "Symfony\\Component\\DomCrawler\\": "" }, "exclude-from-classmap": [ "/Tests/" @@ -28465,59 +18246,92 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Provides tools to internationalize your application", + "description": "Symfony DomCrawler Component", "homepage": "https://symfony.com", - "support": { - "source": "https://github.com/symfony/translation/tree/v6.4.3" + "time": "2019-06-13T10:57:15+00:00" + }, + { + "name": "theseer/tokenizer", + "version": "1.2.0", + "source": { + "type": "git", + "url": "https://github.com/theseer/tokenizer.git", + "reference": "75a63c33a8577608444246075ea0af0d052e452a" }, - "funding": [ + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a", + "reference": "75a63c33a8577608444246075ea0af0d052e452a", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-tokenizer": "*", + "ext-xmlwriter": "*", + "php": "^7.2 || ^8.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ { - "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" + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" } ], - "time": "2024-01-29T13:11:52+00:00" + "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2020-07-12T23:59:07+00:00" + } + ], + "aliases": [ + { + "alias": "1.x-dev", + "alias_normalized": "1.9999999.9999999.9999999-dev", + "version": "dev-update-to-drupal9", + "package": "drupal/drutopia_core" } ], - "aliases": [], "minimum-stability": "dev", "stability-flags": { - "drupal/auto_entitylabel": 10, + "drupal/admin_links_access_filter": 15, + "drupal/block_theme_sync": 20, "drupal/coffee": 20, - "drupal/drutopia_collection": 20, + "drupal/comment_notify": 20, + "drupal/customerror": 20, + "drupal/diff": 5, "drupal/drutopia_core": 20, - "drupal/drutopia_organization": 20, "drupal/drutopia_site": 20, - "drupal/google_analytics": 20, - "drupal/inline_entity_form": 5, - "drupal/menu_link_config": 15, - "drupal/multiparagraph_flow": 20, - "drupal/notfoundpassthrough": 20, - "drupal/octavia": 20, - "drupal/octavia_camouflage": 20, - "drupal/plausible": 10, - "drupal/rabbit_hole": 10, - "drupal/search_api_entity_multiselect": 20, - "drupal/social_post_facebook": 20, - "drupal/social_post_twitter": 20, - "drupal/subpathauto": 5, - "drupal/tomselect": 20, - "drupal/views_daterange_filters": 15, - "drupal/views_field_compare": 10, - "drupal/workflow_buttons": 20, + "drupal/indieweb": 20, + "drupal/mailchimp": 20, + "drupal/markdown": 20, + "drupal/mimemail": 15, + "drupal/minimalhtml": 20, + "drupal/multiline_config": 20, + "drupal/regionincontent": 20, + "drupal/stripe_webform": 20, + "drupal/swiftmailer": 10, + "drupal/twigsuggest": 20, + "drupal/ui_patterns": 5, + "drupal/wysiwyg_linebreaks": 20, "drutopia/drutopia": 20 }, "prefer-stable": true, "prefer-lowest": false, "platform": [], "platform-dev": [], - "plugin-api-version": "2.6.0" + "plugin-api-version": "1.1.0" } diff --git a/config/admin_toolbar.settings.yml b/config/admin_toolbar.settings.yml deleted file mode 100644 index 5965a31..0000000 --- a/config/admin_toolbar.settings.yml +++ /dev/null @@ -1 +0,0 @@ -menu_depth: 4 diff --git a/config/admin_toolbar_tools.settings.yml b/config/admin_toolbar_tools.settings.yml deleted file mode 100644 index 2f4de20..0000000 --- a/config/admin_toolbar_tools.settings.yml +++ /dev/null @@ -1,2 +0,0 @@ -max_bundle_number: 20 -hoverintent_functionality: true diff --git a/config/block.block.31daysofmigrationsinterviewontalkingdrupal.yml b/config/block.block.31daysofmigrationsinterviewontalkingdrupal.yml deleted file mode 100644 index 8045b46..0000000 --- a/config/block.block.31daysofmigrationsinterviewontalkingdrupal.yml +++ /dev/null @@ -1,31 +0,0 @@ -uuid: 90b94a1a-2679-4e0f-bfa9-7c2c47cdd17f -langcode: en -status: true -dependencies: - content: - - 'block_content:slide:82a602d0-5a54-4baf-84a9-8bbf482a96f9' - module: - - block_content - - block_visibility_groups - theme: - - agarica -id: 31daysofmigrationsinterviewontalkingdrupal -theme: agarica -region: content_bottom -weight: 0 -provider: null -plugin: 'block_content:82a602d0-5a54-4baf-84a9-8bbf482a96f9' -settings: - id: 'block_content:82a602d0-5a54-4baf-84a9-8bbf482a96f9' - label: '31 Days of Migrations Interview on Talking Drupal' - label_display: '0' - provider: block_content - status: true - info: '' - view_mode: columnar -visibility: - condition_group: - id: condition_group - negate: false - context_mapping: { } - block_visibility_group: '' diff --git a/config/block.block.agaricnewsletter.yml b/config/block.block.agaricnewsletter.yml deleted file mode 100644 index f6864de..0000000 --- a/config/block.block.agaricnewsletter.yml +++ /dev/null @@ -1,31 +0,0 @@ -uuid: e069fce5-8225-4f8a-b004-2cb403e2beae -langcode: en -status: true -dependencies: - content: - - 'block_content:slide:d5f97865-8fc0-4240-a0c4-4b302f641345' - module: - - block_content - - block_visibility_groups - theme: - - agarica -id: agaricnewsletter -theme: agarica -region: content_bottom -weight: 0 -provider: null -plugin: 'block_content:d5f97865-8fc0-4240-a0c4-4b302f641345' -settings: - id: 'block_content:d5f97865-8fc0-4240-a0c4-4b302f641345' - label: 'Agaric Newsletter' - label_display: visible - 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/block.block.claro_breadcrumbs.yml b/config/block.block.claro_breadcrumbs.yml deleted file mode 100644 index 897dd06..0000000 --- a/config/block.block.claro_breadcrumbs.yml +++ /dev/null @@ -1,22 +0,0 @@ -uuid: b5687322-6f65-474a-86aa-6ef9d842c884 -langcode: en -status: true -dependencies: - module: - - system - theme: - - claro -_core: - default_config_hash: NjcxOBrPOiK5-38t56DwFBDVY4yer7YSlbRWXFuHe7A -id: claro_breadcrumbs -theme: claro -region: breadcrumb -weight: 0 -provider: null -plugin: system_breadcrumb_block -settings: - id: system_breadcrumb_block - label: Breadcrumbs - label_display: '0' - provider: system -visibility: { } diff --git a/config/block.block.claro_content.yml b/config/block.block.claro_content.yml deleted file mode 100644 index e07b5ab..0000000 --- a/config/block.block.claro_content.yml +++ /dev/null @@ -1,22 +0,0 @@ -uuid: 256e0ab2-c7af-465b-9d6f-d44a5539326c -langcode: en -status: true -dependencies: - module: - - system - theme: - - claro -_core: - default_config_hash: a0Yyx1GeyKarZ4T_yXQBR_ZFKnXiFLtxAb6gWLd8nr0 -id: claro_content -theme: claro -region: content -weight: 0 -provider: null -plugin: system_main_block -settings: - id: system_main_block - label: 'Main page content' - label_display: '0' - provider: system -visibility: { } diff --git a/config/block.block.claro_help.yml b/config/block.block.claro_help.yml deleted file mode 100644 index 6ea0590..0000000 --- a/config/block.block.claro_help.yml +++ /dev/null @@ -1,22 +0,0 @@ -uuid: 188b2c4c-cbb5-4e4d-ae1f-0f90d146ebef -langcode: en -status: true -dependencies: - module: - - help - theme: - - claro -_core: - default_config_hash: jccFSSVqV0WCDb6NtML1VWAWTtDbZ-zn5YgTRMgMrIM -id: claro_help -theme: claro -region: help -weight: 0 -provider: null -plugin: help_block -settings: - id: help_block - label: Help - label_display: '0' - provider: help -visibility: { } diff --git a/config/block.block.claro_local_actions.yml b/config/block.block.claro_local_actions.yml deleted file mode 100644 index d0edc35..0000000 --- a/config/block.block.claro_local_actions.yml +++ /dev/null @@ -1,20 +0,0 @@ -uuid: fe5f8678-4118-47e9-b0fd-ad68226a0526 -langcode: en -status: true -dependencies: - theme: - - claro -_core: - default_config_hash: CdXfDmRgAvms7EQovxxWPdYi0GitxeRbVtScYK16ZH0 -id: claro_local_actions -theme: claro -region: content -weight: -10 -provider: null -plugin: local_actions_block -settings: - id: local_actions_block - label: 'Primary admin actions' - label_display: '0' - provider: core -visibility: { } diff --git a/config/block.block.claro_messages.yml b/config/block.block.claro_messages.yml deleted file mode 100644 index e33d36c..0000000 --- a/config/block.block.claro_messages.yml +++ /dev/null @@ -1,22 +0,0 @@ -uuid: 45a1a2a2-78f1-489b-b8b1-b356dd599e13 -langcode: en -status: true -dependencies: - module: - - system - theme: - - claro -_core: - default_config_hash: '-Ac3ISpIT0PQ-whzD7_dw0SdKi6dAbRFNWdSjOiVDqg' -id: claro_messages -theme: claro -region: highlighted -weight: 0 -provider: null -plugin: system_messages_block -settings: - id: system_messages_block - label: 'Status messages' - label_display: '0' - provider: system -visibility: { } diff --git a/config/block.block.claro_page_title.yml b/config/block.block.claro_page_title.yml deleted file mode 100644 index 2b0b0a0..0000000 --- a/config/block.block.claro_page_title.yml +++ /dev/null @@ -1,20 +0,0 @@ -uuid: 256444a2-89e5-49e1-9ef9-314b004d8edf -langcode: en -status: true -dependencies: - theme: - - claro -_core: - default_config_hash: fNwDdW063tk_ktzSWzZVeQS9wzvLooVO280BQ9WrsIs -id: claro_page_title -theme: claro -region: header -weight: -30 -provider: null -plugin: page_title_block -settings: - id: page_title_block - label: 'Page title' - label_display: '0' - provider: core -visibility: { } diff --git a/config/block.block.claro_primary_local_tasks.yml b/config/block.block.claro_primary_local_tasks.yml deleted file mode 100644 index 9d6fa40..0000000 --- a/config/block.block.claro_primary_local_tasks.yml +++ /dev/null @@ -1,22 +0,0 @@ -uuid: 40ef5460-0f52-4869-8a62-7a6ab10840ea -langcode: en -status: true -dependencies: - theme: - - claro -_core: - default_config_hash: ACjBZI5shAMiiUpsz-inLYVXDqNNXRnSzAWV3kV_8Hw -id: claro_primary_local_tasks -theme: claro -region: header -weight: 0 -provider: null -plugin: local_tasks_block -settings: - id: local_tasks_block - label: 'Primary tabs' - label_display: '0' - provider: core - primary: true - secondary: false -visibility: { } diff --git a/config/block.block.claro_secondary_local_tasks.yml b/config/block.block.claro_secondary_local_tasks.yml deleted file mode 100644 index 09bd571..0000000 --- a/config/block.block.claro_secondary_local_tasks.yml +++ /dev/null @@ -1,22 +0,0 @@ -uuid: 950f5415-1d4a-4451-ba91-693c8dcd40e1 -langcode: en -status: true -dependencies: - theme: - - claro -_core: - default_config_hash: 2L0geP-ixCbCkEpW6BVF6H7vDUZN4ea07_Y9CociQm4 -id: claro_secondary_local_tasks -theme: claro -region: pre_content -weight: 0 -provider: null -plugin: local_tasks_block -settings: - id: local_tasks_block - label: 'Secondary tabs' - label_display: '0' - provider: core - primary: false - secondary: true -visibility: { } diff --git a/config/block.block.gin_breadcrumbs.yml b/config/block.block.gin_breadcrumbs.yml deleted file mode 100644 index 27bbe6b..0000000 --- a/config/block.block.gin_breadcrumbs.yml +++ /dev/null @@ -1,22 +0,0 @@ -uuid: b4eac400-4235-4fd9-bdaa-11ce7b3203bb -langcode: en -status: true -dependencies: - module: - - system - theme: - - gin -_core: - default_config_hash: y9X3xgCsO59pQyzNLzY1D3SDJJxCHILLWkpPnmuTJ2E -id: gin_breadcrumbs -theme: gin -region: breadcrumb -weight: 0 -provider: null -plugin: system_breadcrumb_block -settings: - id: system_breadcrumb_block - label: Breadcrumbs - label_display: '0' - provider: system -visibility: { } diff --git a/config/block.block.gin_content.yml b/config/block.block.gin_content.yml deleted file mode 100644 index e2baaf3..0000000 --- a/config/block.block.gin_content.yml +++ /dev/null @@ -1,22 +0,0 @@ -uuid: 733f5d2e-72af-439d-8193-55d88a49e4e0 -langcode: en -status: true -dependencies: - module: - - system - theme: - - gin -_core: - default_config_hash: hBHXB7hC05XU7pDYzETt-GUcpFlogK1gkjyAsg0Ym58 -id: gin_content -theme: gin -region: content -weight: 0 -provider: null -plugin: system_main_block -settings: - id: system_main_block - label: 'Main page content' - label_display: '0' - provider: system -visibility: { } diff --git a/config/block.block.gin_help.yml b/config/block.block.gin_help.yml deleted file mode 100644 index bd53bc1..0000000 --- a/config/block.block.gin_help.yml +++ /dev/null @@ -1,22 +0,0 @@ -uuid: edae7165-daf6-4a00-a353-9bada37cb337 -langcode: en -status: true -dependencies: - module: - - help - theme: - - gin -_core: - default_config_hash: 8nOAry2oKqJOr0zbrlJ3sZHDFJLIO6j-0vT0K_TYca4 -id: gin_help -theme: gin -region: help -weight: 0 -provider: null -plugin: help_block -settings: - id: help_block - label: Help - label_display: '0' - provider: help -visibility: { } diff --git a/config/block.block.gin_local_actions.yml b/config/block.block.gin_local_actions.yml deleted file mode 100644 index 555fdef..0000000 --- a/config/block.block.gin_local_actions.yml +++ /dev/null @@ -1,20 +0,0 @@ -uuid: c6f3def0-b208-4142-a7df-32fceeaff1b2 -langcode: en -status: true -dependencies: - theme: - - gin -_core: - default_config_hash: OQ9aJ-4qVwK1x00o9EOYK4eFDjQr_HLpbPiJaPSVZiQ -id: gin_local_actions -theme: gin -region: content -weight: -10 -provider: null -plugin: local_actions_block -settings: - id: local_actions_block - label: 'Primary admin actions' - label_display: '0' - provider: core -visibility: { } diff --git a/config/block.block.gin_messages.yml b/config/block.block.gin_messages.yml deleted file mode 100644 index 21f2a82..0000000 --- a/config/block.block.gin_messages.yml +++ /dev/null @@ -1,22 +0,0 @@ -uuid: 86b40799-a6f1-446f-90ae-478a814190ff -langcode: en -status: true -dependencies: - module: - - system - theme: - - gin -_core: - default_config_hash: WvPhI8OwllG0gE69-F8qL3ai3nd5SbYD6JpmEuZcyok -id: gin_messages -theme: gin -region: highlighted -weight: 0 -provider: null -plugin: system_messages_block -settings: - id: system_messages_block - label: 'Status messages' - label_display: '0' - provider: system -visibility: { } diff --git a/config/block.block.gin_page_title.yml b/config/block.block.gin_page_title.yml deleted file mode 100644 index 37c4231..0000000 --- a/config/block.block.gin_page_title.yml +++ /dev/null @@ -1,20 +0,0 @@ -uuid: bb66b6f9-554e-4c3f-9f53-e302d02ffe04 -langcode: en -status: true -dependencies: - theme: - - gin -_core: - default_config_hash: HLQY2xgby8K3vN_98hiOSasOhm9pdCsH234-s0duJ8Q -id: gin_page_title -theme: gin -region: header -weight: -30 -provider: null -plugin: page_title_block -settings: - id: page_title_block - label: 'Page title' - label_display: '0' - provider: core -visibility: { } diff --git a/config/block.block.gin_primary_local_tasks.yml b/config/block.block.gin_primary_local_tasks.yml deleted file mode 100644 index c461560..0000000 --- a/config/block.block.gin_primary_local_tasks.yml +++ /dev/null @@ -1,22 +0,0 @@ -uuid: d41456fe-6395-43c2-b06a-dde3411b99ff -langcode: en -status: true -dependencies: - theme: - - gin -_core: - default_config_hash: Hh01DLj9k7UnNdPpOQXHZHW7GHf2OPNDQyCJF7_R9ac -id: gin_primary_local_tasks -theme: gin -region: header -weight: 0 -provider: null -plugin: local_tasks_block -settings: - id: local_tasks_block - label: 'Primary tabs' - label_display: '0' - provider: core - primary: true - secondary: false -visibility: { } diff --git a/config/block.block.gin_secondary_local_tasks.yml b/config/block.block.gin_secondary_local_tasks.yml deleted file mode 100644 index 2de8561..0000000 --- a/config/block.block.gin_secondary_local_tasks.yml +++ /dev/null @@ -1,22 +0,0 @@ -uuid: 793e0050-ff07-4dc3-8165-369ce766381e -langcode: en -status: true -dependencies: - theme: - - gin -_core: - default_config_hash: BCWhood0xXFQYqxFgL1spXdb9KeIuXH1YvTdjIEedDg -id: gin_secondary_local_tasks -theme: gin -region: pre_content -weight: 0 -provider: null -plugin: local_tasks_block -settings: - id: local_tasks_block - label: 'Secondary tabs' - label_display: '0' - provider: core - primary: false - secondary: true -visibility: { } diff --git a/config/block.block.upcomingtrainingsfromagaric.yml b/config/block.block.upcomingtrainingsfromagaric.yml deleted file mode 100644 index 13cabbc..0000000 --- a/config/block.block.upcomingtrainingsfromagaric.yml +++ /dev/null @@ -1,31 +0,0 @@ -uuid: 33e858a7-5fb0-4061-99d1-85cb9b4d7e8e -langcode: en -status: false -dependencies: - content: - - 'block_content:content_reference:779630ad-78a7-4a33-9f3b-2b73de77bfa4' - module: - - block_content - - block_visibility_groups - theme: - - agarica -id: upcomingtrainingsfromagaric -theme: agarica -region: content -weight: -8 -provider: null -plugin: 'block_content:779630ad-78a7-4a33-9f3b-2b73de77bfa4' -settings: - id: 'block_content:779630ad-78a7-4a33-9f3b-2b73de77bfa4' - label: 'Upcoming Trainings from Agaric' - label_display: visible - provider: block_content - status: true - info: '' - view_mode: full -visibility: - condition_group: - id: condition_group - negate: false - context_mapping: { } - block_visibility_group: '' diff --git a/config/block_content.type.content_reference.yml b/config/block_content.type.content_reference.yml deleted file mode 100644 index 4b60e2b..0000000 --- a/config/block_content.type.content_reference.yml +++ /dev/null @@ -1,8 +0,0 @@ -uuid: 21ced413-ae8e-47ec-9e6d-d675e1c85d70 -langcode: en -status: true -dependencies: { } -id: content_reference -label: 'Content reference' -revision: 0 -description: '' diff --git a/config/captcha.captcha_point.comment_form.yml b/config/captcha.captcha_point.comment_form.yml deleted file mode 100644 index 6535dde..0000000 --- a/config/captcha.captcha_point.comment_form.yml +++ /dev/null @@ -1,7 +0,0 @@ -uuid: 5c3f5dad-c83a-4eba-89d8-ae49b1469b6a -langcode: en -status: true -dependencies: { } -formId: comment_form -captchaType: riddler/Riddler -label: comment_form diff --git a/config/captcha.captcha_point.contact_message_feedback_form.yml b/config/captcha.captcha_point.contact_message_feedback_form.yml deleted file mode 100644 index 5123cbf..0000000 --- a/config/captcha.captcha_point.contact_message_feedback_form.yml +++ /dev/null @@ -1,9 +0,0 @@ -uuid: 8c3a3bd4-0db4-43e8-b48c-7f82129f2567 -langcode: en -status: true -dependencies: { } -_core: - default_config_hash: dXrX0-J-kKv0EAFBOwj3iknBYWbh30k_54lWApW4YUQ -formId: contact_message_feedback_form -captchaType: default -label: contact_message_feedback_form diff --git a/config/captcha.captcha_point.contact_message_personal_form.yml b/config/captcha.captcha_point.contact_message_personal_form.yml deleted file mode 100644 index 570f3e9..0000000 --- a/config/captcha.captcha_point.contact_message_personal_form.yml +++ /dev/null @@ -1,9 +0,0 @@ -uuid: 36ce83e9-1cde-41c4-a6b5-61b553843af4 -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/captcha.captcha_point.node_action_form.yml b/config/captcha.captcha_point.node_action_form.yml deleted file mode 100644 index 1fdc114..0000000 --- a/config/captcha.captcha_point.node_action_form.yml +++ /dev/null @@ -1,7 +0,0 @@ -uuid: 82a5cf75-fc93-403f-91bd-0115fbbabcbe -langcode: en -status: false -dependencies: { } -formId: node_action_form -captchaType: default -label: node_action_form diff --git a/config/captcha.captcha_point.node_article_form.yml b/config/captcha.captcha_point.node_article_form.yml deleted file mode 100644 index 145d167..0000000 --- a/config/captcha.captcha_point.node_article_form.yml +++ /dev/null @@ -1,7 +0,0 @@ -uuid: 49977c7a-44b3-4fc9-a9ad-033628c680a2 -langcode: en -status: false -dependencies: { } -formId: node_article_form -captchaType: default -label: node_article_form diff --git a/config/captcha.captcha_point.node_blog_form.yml b/config/captcha.captcha_point.node_blog_form.yml deleted file mode 100644 index f3f2882..0000000 --- a/config/captcha.captcha_point.node_blog_form.yml +++ /dev/null @@ -1,7 +0,0 @@ -uuid: 55a995de-130f-4134-a792-2332c04818cb -langcode: en -status: false -dependencies: { } -formId: node_blog_form -captchaType: default -label: node_blog_form diff --git a/config/captcha.captcha_point.node_campaign_form.yml b/config/captcha.captcha_point.node_campaign_form.yml deleted file mode 100644 index d90a58c..0000000 --- a/config/captcha.captcha_point.node_campaign_form.yml +++ /dev/null @@ -1,7 +0,0 @@ -uuid: 78432405-d9f3-4d70-80fe-cfdf56921d60 -langcode: en -status: false -dependencies: { } -formId: node_campaign_form -captchaType: default -label: node_campaign_form diff --git a/config/captcha.captcha_point.node_case_study_form.yml b/config/captcha.captcha_point.node_case_study_form.yml deleted file mode 100644 index 8731b13..0000000 --- a/config/captcha.captcha_point.node_case_study_form.yml +++ /dev/null @@ -1,7 +0,0 @@ -uuid: 33598578-ea78-4150-8c4b-5c9643527187 -langcode: en -status: false -dependencies: { } -formId: node_case_study_form -captchaType: default -label: node_case_study_form diff --git a/config/captcha.captcha_point.node_event_form.yml b/config/captcha.captcha_point.node_event_form.yml deleted file mode 100644 index 7c81c2d..0000000 --- a/config/captcha.captcha_point.node_event_form.yml +++ /dev/null @@ -1,7 +0,0 @@ -uuid: 2133fb7d-efe9-448c-90de-9573313d1e18 -langcode: en -status: false -dependencies: { } -formId: node_event_form -captchaType: default -label: node_event_form diff --git a/config/captcha.captcha_point.node_landing_page_form.yml b/config/captcha.captcha_point.node_landing_page_form.yml deleted file mode 100644 index a01ae48..0000000 --- a/config/captcha.captcha_point.node_landing_page_form.yml +++ /dev/null @@ -1,7 +0,0 @@ -uuid: 27831b34-ac65-461d-b08b-c7228b540a22 -langcode: en -status: false -dependencies: { } -formId: node_landing_page_form -captchaType: default -label: node_landing_page_form diff --git a/config/captcha.captcha_point.node_page_form.yml b/config/captcha.captcha_point.node_page_form.yml deleted file mode 100644 index bf2f900..0000000 --- a/config/captcha.captcha_point.node_page_form.yml +++ /dev/null @@ -1,7 +0,0 @@ -uuid: eedde8fb-8dee-4451-8fac-4fdec3f9ef6b -langcode: en -status: false -dependencies: { } -formId: node_page_form -captchaType: default -label: node_page_form diff --git a/config/captcha.captcha_point.node_people_form.yml b/config/captcha.captcha_point.node_people_form.yml deleted file mode 100644 index 2fc4a17..0000000 --- a/config/captcha.captcha_point.node_people_form.yml +++ /dev/null @@ -1,7 +0,0 @@ -uuid: 04aafb3f-507d-4403-833d-d982cdc3032b -langcode: en -status: false -dependencies: { } -formId: node_people_form -captchaType: default -label: node_people_form diff --git a/config/captcha.captcha_point.node_resource_form.yml b/config/captcha.captcha_point.node_resource_form.yml deleted file mode 100644 index a758bb3..0000000 --- a/config/captcha.captcha_point.node_resource_form.yml +++ /dev/null @@ -1,7 +0,0 @@ -uuid: 7135081a-bfad-4ee6-ab99-49e6f505a192 -langcode: en -status: false -dependencies: { } -formId: node_resource_form -captchaType: default -label: node_resource_form diff --git a/config/captcha.captcha_point.user_login_form.yml b/config/captcha.captcha_point.user_login_form.yml deleted file mode 100644 index 4ee227b..0000000 --- a/config/captcha.captcha_point.user_login_form.yml +++ /dev/null @@ -1,9 +0,0 @@ -uuid: 72a8c963-260a-44f4-8aaa-b695c4311db2 -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/captcha.captcha_point.user_pass.yml b/config/captcha.captcha_point.user_pass.yml deleted file mode 100644 index 9d7379e..0000000 --- a/config/captcha.captcha_point.user_pass.yml +++ /dev/null @@ -1,9 +0,0 @@ -uuid: 42f5818e-f934-415a-84a3-9b99a65c78e0 -langcode: en -status: false -dependencies: { } -_core: - default_config_hash: qZeHI5fZ9WQRKsfl8FMBwzk3puSsWCRtWKEZh04JJUo -formId: user_pass -captchaType: default -label: user_pass diff --git a/config/captcha.captcha_point.user_register_form.yml b/config/captcha.captcha_point.user_register_form.yml deleted file mode 100644 index ec1c2a3..0000000 --- a/config/captcha.captcha_point.user_register_form.yml +++ /dev/null @@ -1,9 +0,0 @@ -uuid: 08ef1218-75c2-4ad9-a840-f8796fd9af97 -langcode: en -status: false -dependencies: { } -_core: - default_config_hash: 2iz3cMg7T1eSKXtNIB9WyaRptfg7wosDDPBSBhXFXl0 -formId: user_register_form -captchaType: default -label: user_register_form diff --git a/config/captcha.settings.yml b/config/captcha.settings.yml deleted file mode 100644 index 07feb0b..0000000 --- a/config/captcha.settings.yml +++ /dev/null @@ -1,15 +0,0 @@ -_core: - default_config_hash: hSAUW7BoAd9YUpKcVKyZpW4wY67g4XZAYlt3Vnz6SVA -enable_globally: 0 -enable_globally_on_admin_routes: false -default_challenge: riddler/Riddler -description: 'Please help us focus on people and not spambots by answering this question.' -administration_mode: true -administration_mode_on_admin_routes: false -whitelist_ips: '' -wrong_captcha_response_message: 'The answer you entered for the CAPTCHA was not correct. Do we need to make our website more clear about what we do?' -default_validation: 1 -persistence: 3 -enable_stats: false -log_wrong_responses: true -title: CAPTCHA diff --git a/config/claro.settings.yml b/config/claro.settings.yml deleted file mode 100644 index 6bba58b..0000000 --- a/config/claro.settings.yml +++ /dev/null @@ -1,3 +0,0 @@ -third_party_settings: - shortcut: - module_link: true diff --git a/config/config_snapshot.snapshot.config_sync.module.admin_toolbar_tools.yml b/config/config_snapshot.snapshot.config_sync.module.admin_toolbar_tools.yml deleted file mode 100644 index dd38886..0000000 --- a/config/config_snapshot.snapshot.config_sync.module.admin_toolbar_tools.yml +++ /dev/null @@ -1,20 +0,0 @@ -uuid: c4f3765b-5d11-4fe2-bf9d-e9ac83d68eed -langcode: en -status: true -dependencies: - module: - - admin_toolbar_tools -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 diff --git a/config/config_snapshot.snapshot.config_sync.module.captcha.yml b/config/config_snapshot.snapshot.config_sync.module.captcha.yml deleted file mode 100644 index a4bd0b1..0000000 --- a/config/config_snapshot.snapshot.config_sync.module.captcha.yml +++ /dev/null @@ -1,89 +0,0 @@ -uuid: 4e7bcf04-6457-474a-8390-e54f8c0c5da5 -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_feedback_form - data: - langcode: en - status: false - dependencies: { } - formId: contact_message_feedback_form - captchaType: default - label: contact_message_feedback_form - _core: - default_config_hash: dXrX0-J-kKv0EAFBOwj3iknBYWbh30k_54lWApW4YUQ - - - 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: - enabled_default: 0 - default_challenge: captcha/Math - description: 'This question is for testing whether or not you are a human visitor and to prevent automated spam submissions.' - administration_mode: false - allow_on_admin_pages: false - whitelist_ips: '' - add_captcha_description: true - 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: hSAUW7BoAd9YUpKcVKyZpW4wY67g4XZAYlt3Vnz6SVA diff --git a/config/config_snapshot.snapshot.config_sync.module.image_widget_crop.yml b/config/config_snapshot.snapshot.config_sync.module.image_widget_crop.yml deleted file mode 100644 index 15eec27..0000000 --- a/config/config_snapshot.snapshot.config_sync.module.image_widget_crop.yml +++ /dev/null @@ -1,47 +0,0 @@ -uuid: b2e8ab59-9cb8-48b4-b7ae-80073adfdad7 -langcode: en -status: true -dependencies: - module: - - image_widget_crop -id: config_sync.module.image_widget_crop -snapshotSet: config_sync -extensionType: module -extensionName: image_widget_crop -items: - - - collection: '' - name: image.style.crop_thumbnail - data: - langcode: en - status: true - dependencies: { } - name: crop_thumbnail - label: 'Crop thumbnail' - effects: - 8fc26706-68dc-4eb7-8121-33e3936ed55f: - uuid: 8fc26706-68dc-4eb7-8121-33e3936ed55f - id: image_scale - weight: 1 - data: - width: 400 - height: null - upscale: false - _core: - default_config_hash: N1S0PHZeyxfFqgzB-sDeGPaxi0dDOL8NUiP_d6WXSV0 - - - collection: '' - name: image_widget_crop.settings - data: - settings: - library_url: '' - css_url: '' - crop_preview_image_style: crop_thumbnail - crop_list: { } - crop_types_required: { } - warn_multiple_usages: false - show_default_crop: true - notify_apply: false - notify_update: true - _core: - default_config_hash: UYGkeE2iH3UGp9lBPsELb3VSgHz9vkMJeaGzcYwE7Uw diff --git a/config/config_snapshot.snapshot.config_sync.module.media_library.yml b/config/config_snapshot.snapshot.config_sync.module.media_library.yml deleted file mode 100644 index 571ddd9..0000000 --- a/config/config_snapshot.snapshot.config_sync.module.media_library.yml +++ /dev/null @@ -1,1469 +0,0 @@ -uuid: d6289864-8d53-49d7-ada6-57f681ef581d -langcode: en -status: true -dependencies: - module: - - media_library -id: config_sync.module.media_library -snapshotSet: config_sync -extensionType: module -extensionName: media_library -items: - - - collection: '' - name: core.entity_form_mode.media.media_library - data: - langcode: en - status: true - dependencies: - enforced: - module: - - media_library - module: - - media - id: media.media_library - label: 'Media library' - targetEntityType: media - cache: true - _core: - default_config_hash: pkq0uj-IoqEQRBOP_ddUDV0ZJ-dKQ_fLcppsEDF2UO8 - - - collection: '' - name: core.entity_view_mode.media.media_library - data: - langcode: en - status: true - dependencies: - enforced: - module: - - media_library - module: - - media - id: media.media_library - label: 'Media library' - targetEntityType: media - cache: true - _core: - default_config_hash: pkq0uj-IoqEQRBOP_ddUDV0ZJ-dKQ_fLcppsEDF2UO8 - - - collection: '' - name: image.style.media_library - data: - langcode: en - status: true - dependencies: - enforced: - module: - - media_library - name: media_library - label: 'Media Library thumbnail (220×220)' - effects: - 75b076a8-1234-4b42-85db-bf377c4d8d5f: - uuid: 75b076a8-1234-4b42-85db-bf377c4d8d5f - id: image_scale - weight: 0 - data: - width: 220 - height: 220 - upscale: false - _core: - default_config_hash: 7qJqToD1OQLAyeswpmg7M0LRxQlw1URQkJDWUJCnmR8 - - - collection: '' - name: media_library.settings - data: - advanced_ui: false - _core: - default_config_hash: _3gQsCnZELUjUUqHk8SSh8bXnx7TZwN95vctAeVJG60 - - - collection: '' - name: views.view.media_library - data: - langcode: en - status: true - dependencies: - config: - - core.entity_view_mode.media.media_library - - image.style.media_library - enforced: - module: - - media_library - module: - - image - - media - - media_library - - user - id: media_library - label: 'Media library' - module: views - description: 'Find and manage media.' - tag: '' - base_table: media_field_data - base_field: mid - display: - default: - display_plugin: default - id: default - display_title: Master - position: 0 - display_options: - access: - type: perm - options: - perm: 'access media overview' - 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 filters' - reset_button: false - 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: 24 - offset: 0 - id: 0 - total_pages: null - expose: - items_per_page: false - items_per_page_label: 'Items per page' - items_per_page_options: '6, 12, 24, 48' - 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: - grouping: { } - row_class: '' - default_row_class: true - row: - type: fields - options: - default_field_elements: true - inline: { } - separator: '' - hide_empty: false - fields: - media_bulk_form: - id: media_bulk_form - table: media - field: media_bulk_form - 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: false - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - action_title: Action - include_exclude: exclude - selected_actions: { } - entity_type: media - plugin_id: bulk_form - rendered_entity: - id: rendered_entity - table: media - field: rendered_entity - 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: false - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - view_mode: media_library - entity_type: media - plugin_id: rendered_entity - filters: - status: - id: status - table: media_field_data - field: status - relationship: none - group_type: group - admin_label: '' - operator: '=' - value: '1' - group: 1 - exposed: true - expose: - operator_id: '' - label: 'Publishing status' - description: null - use_operator: false - operator: status_op - identifier: status - required: true - remember: false - multiple: false - remember_roles: - authenticated: authenticated - operator_limit_selection: false - operator_list: { } - is_grouped: true - group_info: - label: Published - description: '' - identifier: status - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: - 1: - title: Published - operator: '=' - value: '1' - 2: - title: Unpublished - operator: '=' - value: '0' - plugin_id: boolean - entity_type: media - entity_field: status - name: - id: name - table: media_field_data - field: name - relationship: none - group_type: group - admin_label: '' - operator: contains - value: '' - group: 1 - exposed: true - expose: - operator_id: name_op - label: Name - description: '' - use_operator: false - operator: name_op - identifier: name - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - operator_limit_selection: false - operator_list: { } - 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: media - entity_field: name - plugin_id: string - bundle: - id: bundle - table: media_field_data - field: bundle - relationship: none - group_type: group - admin_label: '' - operator: in - value: { } - group: 1 - exposed: true - expose: - operator_id: bundle_op - label: 'Media type' - description: '' - use_operator: false - operator: bundle_op - identifier: type - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - reduce: false - operator_limit_selection: false - operator_list: { } - is_grouped: false - group_info: - label: 'Media type' - description: null - identifier: bundle - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: - 1: { } - 2: { } - 3: { } - entity_type: media - entity_field: bundle - plugin_id: bundle - status_extra: - id: status_extra - table: media_field_data - field: status_extra - relationship: none - group_type: group - admin_label: '' - 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: { } - entity_type: media - plugin_id: media_status - langcode: - id: langcode - table: media_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 - operator_limit_selection: false - operator_list: { } - 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: media - entity_field: langcode - plugin_id: language - sorts: - created: - id: created - table: media_field_data - field: created - relationship: none - group_type: group - admin_label: '' - order: DESC - exposed: true - expose: - label: 'Newest first' - granularity: second - entity_type: media - entity_field: created - plugin_id: date - name: - id: name - table: media_field_data - field: name - relationship: none - group_type: group - admin_label: '' - order: ASC - exposed: true - expose: - label: 'Name (A-Z)' - entity_type: media - entity_field: name - plugin_id: standard - name_1: - id: name_1 - table: media_field_data - field: name - relationship: none - group_type: group - admin_label: '' - order: DESC - exposed: true - expose: - label: 'Name (Z-A)' - entity_type: media - entity_field: name - plugin_id: standard - title: Media - 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 media available.' - plugin_id: text_custom - relationships: { } - display_extenders: { } - use_ajax: true - css_class: '' - cache_metadata: - max-age: 0 - contexts: - - 'languages:language_interface' - - url - - url.query_args - - 'url.query_args:sort_by' - - user - - user.permissions - tags: { } - page: - display_plugin: page - id: page - display_title: Page - position: 1 - display_options: - display_extenders: { } - path: admin/content/media-grid - fields: - media_bulk_form: - id: media_bulk_form - table: media - field: media_bulk_form - 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: false - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - action_title: Action - include_exclude: exclude - selected_actions: { } - entity_type: media - plugin_id: bulk_form - name: - id: name - table: media_field_data - field: name - relationship: none - group_type: group - admin_label: '' - label: '' - exclude: true - alter: - alter_text: false - text: '' - make_link: false - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: '' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: false - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - click_sort_column: value - type: string - settings: - link_to_entity: false - 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 - entity_type: media - entity_field: name - plugin_id: field - edit_media: - id: edit_media - table: media - field: edit_media - relationship: none - group_type: group - admin_label: '' - label: '' - exclude: false - alter: - alter_text: true - text: 'Edit {{ name }}' - make_link: true - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: 'Edit {{ name }}' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: false - element_wrapper_type: '0' - element_wrapper_class: '' - element_default_classes: false - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - text: Edit - output_url_as_text: false - absolute: false - entity_type: media - plugin_id: entity_link_edit - delete_media: - id: delete_media - table: media - field: delete_media - relationship: none - group_type: group - admin_label: '' - label: '' - exclude: false - alter: - alter_text: true - text: 'Delete {{ name }}' - make_link: true - path: '' - absolute: false - external: false - replace_spaces: false - path_case: none - trim_whitespace: false - alt: 'Delete {{ name }}' - rel: '' - link_class: '' - prefix: '' - suffix: '' - target: '' - nl2br: false - max_length: 0 - word_boundary: true - ellipsis: true - more_link: false - more_link_text: '' - more_link_path: '' - strip_tags: false - trim: false - preserve_tags: '' - html: false - element_type: '' - element_class: '' - element_label_type: '' - element_label_class: '' - element_label_colon: false - element_wrapper_type: '0' - element_wrapper_class: '' - element_default_classes: false - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - text: Delete - output_url_as_text: false - absolute: false - entity_type: media - plugin_id: entity_link_delete - rendered_entity: - id: rendered_entity - table: media - field: rendered_entity - 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: false - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - view_mode: media_library - entity_type: media - plugin_id: rendered_entity - defaults: - fields: false - cache_metadata: - max-age: 0 - contexts: - - 'languages:language_content' - - 'languages:language_interface' - - url - - url.query_args - - 'url.query_args:sort_by' - - user - - user.permissions - tags: { } - widget: - display_plugin: page - id: widget - display_title: Widget - position: 2 - display_options: - display_extenders: { } - path: admin/content/media-widget - fields: - media_library_select_form: - id: media_library_select_form - table: media - field: media_library_select_form - 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: false - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - entity_type: media - plugin_id: media_library_select_form - rendered_entity: - id: rendered_entity - table: media - field: rendered_entity - 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: false - element_wrapper_type: '' - element_wrapper_class: '' - element_default_classes: true - empty: '' - hide_empty: false - empty_zero: false - hide_alter_empty: true - view_mode: media_library - entity_type: media - plugin_id: rendered_entity - defaults: - fields: false - access: false - filters: false - filter_groups: false - arguments: false - header: false - css_class: false - display_description: '' - access: - type: perm - options: - perm: 'view media' - filters: - status: - id: status - table: media_field_data - field: status - relationship: none - group_type: group - admin_label: '' - operator: '=' - value: '1' - group: 1 - exposed: false - expose: - operator_id: '' - label: '' - description: '' - use_operator: false - operator: '' - identifier: '' - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - operator_limit_selection: false - operator_list: { } - 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: media - entity_field: status - plugin_id: boolean - name: - id: name - table: media_field_data - field: name - relationship: none - group_type: group - admin_label: '' - operator: contains - value: '' - group: 1 - exposed: true - expose: - operator_id: name_op - label: Name - description: '' - use_operator: false - operator: name_op - identifier: name - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - operator_limit_selection: false - operator_list: { } - 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: media - entity_field: name - plugin_id: string - default_langcode: - id: default_langcode - table: media_field_data - field: default_langcode - relationship: none - group_type: group - admin_label: '' - operator: '=' - value: '1' - group: 1 - exposed: false - expose: - operator_id: '' - label: '' - description: '' - use_operator: false - operator: '' - operator_limit_selection: false - operator_list: { } - identifier: '' - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - entity_type: media - entity_field: default_langcode - plugin_id: boolean - filter_groups: - operator: AND - groups: - 1: AND - arguments: - bundle: - id: bundle - table: media_field_data - field: bundle - relationship: none - group_type: group - admin_label: '' - default_action: ignore - exception: - value: all - title_enable: false - title: All - title_enable: false - title: '' - default_argument_type: fixed - default_argument_options: - argument: '' - default_argument_skip_url: false - summary_options: - base_path: '' - count: true - items_per_page: 24 - override: false - summary: - sort_order: asc - number_of_records: 0 - format: default_summary - specify_validation: false - validate: - type: none - fail: 'not found' - validate_options: { } - glossary: false - limit: 0 - case: none - path_case: none - transform_dash: false - break_phrase: false - entity_type: media - entity_field: bundle - plugin_id: string - header: - display_link_grid: - id: display_link_grid - table: views - field: display_link - display_id: widget - label: Grid - plugin_id: display_link - empty: true - display_link_table: - id: display_link_table - table: views - field: display_link - display_id: widget_table - label: Table - plugin_id: display_link - empty: true - css_class: '' - rendering_language: '***LANGUAGE_language_interface***' - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url - - url.query_args - - 'url.query_args:sort_by' - - user.permissions - tags: { } - widget_table: - display_plugin: page - id: widget_table - display_title: 'Widget (table)' - position: 3 - display_options: - display_extenders: { } - path: admin/content/media-widget-table - style: - type: table - options: - row_class: 'media-library-item media-library-item--table js-media-library-item js-click-to-select' - default_row_class: true - defaults: - style: false - row: false - fields: false - access: false - filters: false - filter_groups: false - arguments: false - header: false - css_class: false - row: - type: fields - fields: - media_library_select_form: - id: media_library_select_form - label: '' - table: media - field: media_library_select_form - relationship: none - entity_type: media - plugin_id: media_library_select_form - element_wrapper_class: '' - element_class: '' - thumbnail__target_id: - id: thumbnail__target_id - label: Thumbnail - table: media_field_data - field: thumbnail__target_id - relationship: none - type: image - entity_type: media - entity_field: thumbnail - plugin_id: field - settings: - image_style: media_library - image_link: '' - name: - id: name - label: Name - table: media_field_data - field: name - relationship: none - type: string - entity_type: media - entity_field: name - plugin_id: field - settings: - link_to_entity: false - uid: - id: uid - label: Author - table: media_field_revision - field: uid - relationship: none - type: entity_reference_label - entity_type: media - entity_field: uid - plugin_id: field - settings: - link: true - changed: - id: changed - label: Updated - table: media_field_data - field: changed - relationship: none - type: timestamp - entity_type: media - entity_field: changed - plugin_id: field - settings: - date_format: short - custom_date_format: '' - timezone: '' - access: - type: perm - options: - perm: 'view media' - filters: - status: - id: status - table: media_field_data - field: status - relationship: none - group_type: group - admin_label: '' - operator: '=' - value: '1' - group: 1 - exposed: false - expose: - operator_id: '' - label: '' - description: '' - use_operator: false - operator: '' - identifier: '' - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - operator_limit_selection: false - operator_list: { } - 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: media - entity_field: status - plugin_id: boolean - name: - id: name - table: media_field_data - field: name - relationship: none - group_type: group - admin_label: '' - operator: contains - value: '' - group: 1 - exposed: true - expose: - operator_id: name_op - label: Name - description: '' - use_operator: false - operator: name_op - identifier: name - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - anonymous: '0' - administrator: '0' - operator_limit_selection: false - operator_list: { } - 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: media - entity_field: name - plugin_id: string - default_langcode: - id: default_langcode - table: media_field_data - field: default_langcode - relationship: none - group_type: group - admin_label: '' - operator: '=' - value: '1' - group: 1 - exposed: false - expose: - operator_id: '' - label: '' - description: '' - use_operator: false - operator: '' - operator_limit_selection: false - operator_list: { } - identifier: '' - required: false - remember: false - multiple: false - remember_roles: - authenticated: authenticated - is_grouped: false - group_info: - label: '' - description: '' - identifier: '' - optional: true - widget: select - multiple: false - remember: false - default_group: All - default_group_multiple: { } - group_items: { } - entity_type: media - entity_field: default_langcode - plugin_id: boolean - filter_groups: - operator: AND - groups: - 1: AND - arguments: - bundle: - id: bundle - table: media_field_data - field: bundle - relationship: none - group_type: group - admin_label: '' - default_action: ignore - exception: - value: all - title_enable: false - title: All - title_enable: false - title: '' - default_argument_type: fixed - default_argument_options: - argument: '' - default_argument_skip_url: false - summary_options: - base_path: '' - count: true - items_per_page: 24 - override: false - summary: - sort_order: asc - number_of_records: 0 - format: default_summary - specify_validation: false - validate: - type: none - fail: 'not found' - validate_options: { } - glossary: false - limit: 0 - case: none - path_case: none - transform_dash: false - break_phrase: false - entity_type: media - entity_field: bundle - plugin_id: string - header: - display_link_grid: - id: display_link_grid - table: views - field: display_link - display_id: widget - label: Grid - plugin_id: display_link - empty: true - display_link_table: - id: display_link_table - table: views - field: display_link - display_id: widget_table - label: Table - plugin_id: display_link - empty: true - css_class: '' - rendering_language: '***LANGUAGE_language_interface***' - cache_metadata: - max-age: -1 - contexts: - - 'languages:language_interface' - - url - - url.query_args - - 'url.query_args:sort_by' - - user.permissions - tags: { } - _core: - default_config_hash: dHOSWSHbMJNke0ZBGh1O5KrnwynSOCOpQycITW-pwfs diff --git a/config/config_snapshot.snapshot.config_sync.module.plausible.yml b/config/config_snapshot.snapshot.config_sync.module.plausible.yml deleted file mode 100644 index ca7be8f..0000000 --- a/config/config_snapshot.snapshot.config_sync.module.plausible.yml +++ /dev/null @@ -1,26 +0,0 @@ -uuid: 0a350ca2-bbc3-4cba-ad45-3289ea2e3599 -langcode: en -status: true -dependencies: - module: - - plausible -id: config_sync.module.plausible -snapshotSet: config_sync -extensionType: module -extensionName: plausible -items: - - - collection: '' - name: plausible.settings - data: - script: - domain: '' - api: '' - src: 'https://plausible.io/js/plausible.js' - visibility: - request_path_mode: 0 - request_path_pages: '' - user_role_mode: 0 - user_role_roles: { } - _core: - default_config_hash: 2SiIYRsf-Gi9ND77G28c3dFL1cVw6F7QLmrIafNZp-g diff --git a/config/config_snapshot.snapshot.config_sync.module.rdf.yml b/config/config_snapshot.snapshot.config_sync.module.rdf.yml deleted file mode 100644 index 46f29da..0000000 --- a/config/config_snapshot.snapshot.config_sync.module.rdf.yml +++ /dev/null @@ -1,31 +0,0 @@ -uuid: d38694b0-7f8d-4b00-a5bf-62ed5a9968ac -langcode: en -status: true -dependencies: - module: - - rdf -id: config_sync.module.rdf -snapshotSet: config_sync -extensionType: module -extensionName: rdf -items: - - - collection: '' - name: rdf.mapping.user.user - data: - langcode: en - status: true - dependencies: - module: - - user - id: user.user - targetEntityType: user - bundle: user - types: - - 'schema:Person' - fieldMappings: - name: - properties: - - 'schema:name' - _core: - default_config_hash: TGTlmpYAtXxjtYMFA_A0vosE2c4R5MCQwLviIA5HUM0 diff --git a/config/config_snapshot.snapshot.config_sync.module.riddler.yml b/config/config_snapshot.snapshot.config_sync.module.riddler.yml deleted file mode 100644 index 9f36b7e..0000000 --- a/config/config_snapshot.snapshot.config_sync.module.riddler.yml +++ /dev/null @@ -1,21 +0,0 @@ -uuid: bb530c43-9956-41b9-a3d6-8d3a377fa202 -langcode: en -status: true -dependencies: - module: - - riddler -id: config_sync.module.riddler -snapshotSet: config_sync -extensionType: module -extensionName: riddler -items: - - - collection: '' - name: riddler.settings - data: - riddles: - - - question: 'Do you really hate Spam?' - response: Yes! - _core: - default_config_hash: pKKCV0W4-r3Zf1QQzR2HDXAXmfH81248yrY2d9iR7S4 diff --git a/config/config_snapshot.snapshot.config_sync.theme.claro.yml b/config/config_snapshot.snapshot.config_sync.theme.claro.yml deleted file mode 100644 index 2a0dfd7..0000000 --- a/config/config_snapshot.snapshot.config_sync.theme.claro.yml +++ /dev/null @@ -1,207 +0,0 @@ -uuid: 8cd0792d-745f-458b-8112-b8267f9bdec3 -langcode: en -status: true -dependencies: - theme: - - claro -id: config_sync.theme.claro -snapshotSet: config_sync -extensionType: theme -extensionName: claro -items: - - - collection: '' - name: block.block.claro_breadcrumbs - data: - langcode: en - status: true - dependencies: - module: - - system - theme: - - claro - id: claro_breadcrumbs - theme: claro - region: breadcrumb - weight: 0 - provider: null - plugin: system_breadcrumb_block - settings: - id: system_breadcrumb_block - label: Breadcrumbs - label_display: '0' - provider: system - visibility: { } - _core: - default_config_hash: NjcxOBrPOiK5-38t56DwFBDVY4yer7YSlbRWXFuHe7A - - - collection: '' - name: block.block.claro_content - data: - langcode: en - status: true - dependencies: - module: - - system - theme: - - claro - id: claro_content - theme: claro - region: content - weight: 0 - provider: null - plugin: system_main_block - settings: - id: system_main_block - label: 'Main page content' - label_display: '0' - provider: system - visibility: { } - _core: - default_config_hash: a0Yyx1GeyKarZ4T_yXQBR_ZFKnXiFLtxAb6gWLd8nr0 - - - collection: '' - name: block.block.claro_help - data: - langcode: en - status: true - dependencies: - module: - - help - theme: - - claro - id: claro_help - theme: claro - region: help - weight: 0 - provider: null - plugin: help_block - settings: - id: help_block - label: Help - label_display: '0' - provider: help - visibility: { } - _core: - default_config_hash: jccFSSVqV0WCDb6NtML1VWAWTtDbZ-zn5YgTRMgMrIM - - - collection: '' - name: block.block.claro_local_actions - data: - langcode: en - status: true - dependencies: - theme: - - claro - id: claro_local_actions - theme: claro - region: content - weight: -10 - provider: null - plugin: local_actions_block - settings: - id: local_actions_block - label: 'Primary admin actions' - label_display: '0' - provider: core - visibility: { } - _core: - default_config_hash: CdXfDmRgAvms7EQovxxWPdYi0GitxeRbVtScYK16ZH0 - - - collection: '' - name: block.block.claro_messages - data: - langcode: en - status: true - dependencies: - module: - - system - theme: - - claro - id: claro_messages - theme: claro - region: highlighted - weight: 0 - provider: null - plugin: system_messages_block - settings: - id: system_messages_block - label: 'Status messages' - label_display: '0' - provider: system - visibility: { } - _core: - default_config_hash: '-Ac3ISpIT0PQ-whzD7_dw0SdKi6dAbRFNWdSjOiVDqg' - - - collection: '' - name: block.block.claro_page_title - data: - langcode: en - status: true - dependencies: - theme: - - claro - id: claro_page_title - theme: claro - region: header - weight: -30 - provider: null - plugin: page_title_block - settings: - id: page_title_block - label: 'Page title' - label_display: '0' - provider: core - visibility: { } - _core: - default_config_hash: fNwDdW063tk_ktzSWzZVeQS9wzvLooVO280BQ9WrsIs - - - collection: '' - name: block.block.claro_primary_local_tasks - data: - langcode: en - status: true - dependencies: - theme: - - claro - id: claro_primary_local_tasks - theme: claro - region: header - weight: 0 - provider: null - plugin: local_tasks_block - settings: - id: local_tasks_block - label: 'Primary tabs' - label_display: '0' - provider: core - primary: true - secondary: false - visibility: { } - _core: - default_config_hash: ACjBZI5shAMiiUpsz-inLYVXDqNNXRnSzAWV3kV_8Hw - - - collection: '' - name: block.block.claro_secondary_local_tasks - data: - langcode: en - status: true - dependencies: - theme: - - claro - id: claro_secondary_local_tasks - theme: claro - region: pre_content - weight: 0 - provider: null - plugin: local_tasks_block - settings: - id: local_tasks_block - label: 'Secondary tabs' - label_display: '0' - provider: core - primary: false - secondary: true - visibility: { } - _core: - default_config_hash: 2L0geP-ixCbCkEpW6BVF6H7vDUZN4ea07_Y9CociQm4 diff --git a/config/config_snapshot.snapshot.config_sync.theme.gin.yml b/config/config_snapshot.snapshot.config_sync.theme.gin.yml deleted file mode 100644 index b52d523..0000000 --- a/config/config_snapshot.snapshot.config_sync.theme.gin.yml +++ /dev/null @@ -1,227 +0,0 @@ -uuid: ac3b6f80-3aee-4d0e-888c-cab03dd1362a -langcode: en -status: true -dependencies: - theme: - - gin -id: config_sync.theme.gin -snapshotSet: config_sync -extensionType: theme -extensionName: gin -items: - - - collection: '' - name: block.block.gin_breadcrumbs - data: - langcode: en - status: true - dependencies: - module: - - system - theme: - - gin - id: gin_breadcrumbs - theme: gin - region: breadcrumb - weight: 0 - provider: null - plugin: system_breadcrumb_block - settings: - id: system_breadcrumb_block - label: Breadcrumbs - provider: system - label_display: '0' - visibility: { } - _core: - default_config_hash: y9X3xgCsO59pQyzNLzY1D3SDJJxCHILLWkpPnmuTJ2E - - - collection: '' - name: block.block.gin_content - data: - langcode: en - status: true - dependencies: - module: - - system - theme: - - gin - id: gin_content - theme: gin - 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: { } - _core: - default_config_hash: hBHXB7hC05XU7pDYzETt-GUcpFlogK1gkjyAsg0Ym58 - - - collection: '' - name: block.block.gin_help - data: - langcode: en - status: true - dependencies: - module: - - help - theme: - - gin - id: gin_help - theme: gin - region: help - weight: 0 - provider: null - plugin: help_block - settings: - id: help_block - label: Help - provider: help - label_display: '0' - visibility: { } - _core: - default_config_hash: 8nOAry2oKqJOr0zbrlJ3sZHDFJLIO6j-0vT0K_TYca4 - - - collection: '' - name: block.block.gin_local_actions - data: - langcode: en - status: true - dependencies: - theme: - - gin - id: gin_local_actions - theme: gin - 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: { } - _core: - default_config_hash: OQ9aJ-4qVwK1x00o9EOYK4eFDjQr_HLpbPiJaPSVZiQ - - - collection: '' - name: block.block.gin_messages - data: - langcode: en - status: true - dependencies: - module: - - system - theme: - - gin - id: gin_messages - theme: gin - region: highlighted - weight: 0 - provider: null - plugin: system_messages_block - settings: - id: system_messages_block - label: 'Status messages' - provider: system - label_display: '0' - visibility: { } - _core: - default_config_hash: WvPhI8OwllG0gE69-F8qL3ai3nd5SbYD6JpmEuZcyok - - - collection: '' - name: block.block.gin_page_title - data: - langcode: en - status: true - dependencies: - theme: - - gin - id: gin_page_title - theme: gin - region: header - weight: -30 - provider: null - plugin: page_title_block - settings: - id: page_title_block - label: 'Page title' - provider: core - label_display: '0' - visibility: { } - _core: - default_config_hash: HLQY2xgby8K3vN_98hiOSasOhm9pdCsH234-s0duJ8Q - - - collection: '' - name: block.block.gin_primary_local_tasks - data: - langcode: en - status: true - dependencies: - theme: - - gin - id: gin_primary_local_tasks - theme: gin - 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: { } - _core: - default_config_hash: Hh01DLj9k7UnNdPpOQXHZHW7GHf2OPNDQyCJF7_R9ac - - - collection: '' - name: block.block.gin_secondary_local_tasks - data: - langcode: en - status: true - dependencies: - theme: - - gin - id: gin_secondary_local_tasks - theme: gin - 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: { } - _core: - default_config_hash: BCWhood0xXFQYqxFgL1spXdb9KeIuXH1YvTdjIEedDg - - - collection: '' - name: gin.settings - data: - preset_accent_color: blue - preset_focus_color: gin - enable_darkmode: '0' - classic_toolbar: vertical - secondary_toolbar_frontend: true - logo: - use_default: true - high_contrast_mode: false - layout_density: default - show_description_toggle: false - show_user_theme_settings: false - third_party_settings: - shortcut: - module_link: true - _core: - default_config_hash: UvSCt3S_NldJPFzvhSNOy9vWoPPFhmsmTC12vtVss9s diff --git a/config/core.entity_form_display.block_content.content_reference.default.yml b/config/core.entity_form_display.block_content.content_reference.default.yml deleted file mode 100644 index 5001275..0000000 --- a/config/core.entity_form_display.block_content.content_reference.default.yml +++ /dev/null @@ -1,38 +0,0 @@ -uuid: a17872c1-2168-498e-8801-06d18f93357f -langcode: en -status: true -dependencies: - config: - - block_content.type.content_reference - - field.field.block_content.content_reference.field_content_reference -id: block_content.content_reference.default -targetEntityType: block_content -bundle: content_reference -mode: default -content: - field_content_reference: - type: entity_reference_autocomplete - weight: 26 - region: content - settings: - match_operator: CONTAINS - match_limit: 10 - size: 60 - placeholder: '' - third_party_settings: { } - info: - type: string_textfield - weight: -5 - region: content - settings: - size: 60 - placeholder: '' - third_party_settings: { } - langcode: - type: language_select - weight: 2 - region: content - settings: - include_locked: true - third_party_settings: { } -hidden: { } diff --git a/config/core.entity_form_display.paragraph.embedded_content.default.yml b/config/core.entity_form_display.paragraph.embedded_content.default.yml deleted file mode 100644 index c00ff14..0000000 --- a/config/core.entity_form_display.paragraph.embedded_content.default.yml +++ /dev/null @@ -1,25 +0,0 @@ -uuid: 67bf5672-4615-41f3-98b7-98a4909c3ca8 -langcode: en -status: true -dependencies: - config: - - field.field.paragraph.embedded_content.field_content_reference - - paragraphs.paragraphs_type.embedded_content -id: paragraph.embedded_content.default -targetEntityType: paragraph -bundle: embedded_content -mode: default -content: - field_content_reference: - type: entity_reference_autocomplete - weight: 0 - region: content - settings: - match_operator: CONTAINS - match_limit: 10 - size: 60 - placeholder: '' - third_party_settings: { } -hidden: - created: true - status: true diff --git a/config/core.entity_form_mode.media.media_library.yml b/config/core.entity_form_mode.media.media_library.yml deleted file mode 100644 index e4bf8d7..0000000 --- a/config/core.entity_form_mode.media.media_library.yml +++ /dev/null @@ -1,16 +0,0 @@ -uuid: ce58b4ab-1355-4710-bbc4-88f51fa2386b -langcode: en -status: true -dependencies: - module: - - media - enforced: - module: - - media_library -_core: - default_config_hash: pkq0uj-IoqEQRBOP_ddUDV0ZJ-dKQ_fLcppsEDF2UO8 -id: media.media_library -label: 'Media library' -description: '' -targetEntityType: media -cache: true diff --git a/config/core.entity_view_display.block_content.content_reference.default.yml b/config/core.entity_view_display.block_content.content_reference.default.yml deleted file mode 100644 index 5a0345f..0000000 --- a/config/core.entity_view_display.block_content.content_reference.default.yml +++ /dev/null @@ -1,28 +0,0 @@ -uuid: 4f384ef4-723a-47a3-b3d3-c677993c050e -langcode: en -status: true -dependencies: - config: - - block_content.type.content_reference - - field.field.block_content.content_reference.field_content_reference - module: - - ds -id: block_content.content_reference.default -targetEntityType: block_content -bundle: content_reference -mode: default -content: - field_content_reference: - type: entity_reference_entity_view - label: hidden - settings: - view_mode: simple_card - link: false - third_party_settings: - ds: - ds_limit: '' - weight: 0 - region: content -hidden: - langcode: true - search_api_excerpt: true diff --git a/config/core.entity_view_display.node.page.embedded.yml b/config/core.entity_view_display.node.page.embedded.yml deleted file mode 100644 index ac532e9..0000000 --- a/config/core.entity_view_display.node.page.embedded.yml +++ /dev/null @@ -1,84 +0,0 @@ -uuid: d2637080-7971-4471-abf0-bc6939e755d9 -langcode: en -status: true -dependencies: - config: - - core.entity_view_mode.node.embedded - - field.field.node.page.body - - field.field.node.page.field_body_paragraph - - field.field.node.page.field_meta_tags - - field.field.node.page.field_storyline - - field.field.node.page.field_summary - - node.type.page - module: - - ds - - entity_reference_revisions - - user -third_party_settings: - ds: - layout: - id: ds_1col - library: null - 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: - - node_title - - field_body_paragraph - - field_storyline - fields: - node_title: - plugin_id: node_title - weight: 0 - label: hidden - formatter: default - settings: - link: false - wrapper: h3 - class: '' - exclude_node_title: '1' -_core: - default_config_hash: 9nmRao0UFQtmO6lONrWp9ITjFaO41GzV-xJczx0qjKg -id: node.page.embedded -targetEntityType: node -bundle: page -mode: embedded -content: - field_body_paragraph: - type: entity_reference_revisions_entity_view - label: hidden - settings: - view_mode: default - link: '' - third_party_settings: { } - weight: 1 - region: ds_content - field_storyline: - type: entity_reference_revisions_entity_view - label: hidden - settings: - view_mode: default - link: '' - third_party_settings: { } - weight: 2 - region: ds_content -hidden: - body: true - field_meta_tags: true - field_summary: true - indieweb_bridgypublishmastodon: true - indieweb_bridgypublishtwitter: true - indieweb_syndication: true - langcode: true - links: true - search_api_excerpt: true diff --git a/config/core.entity_view_display.paragraph.embedded_content.default.yml b/config/core.entity_view_display.paragraph.embedded_content.default.yml deleted file mode 100644 index a5e6a0e..0000000 --- a/config/core.entity_view_display.paragraph.embedded_content.default.yml +++ /dev/null @@ -1,27 +0,0 @@ -uuid: ed546b19-a85f-4fe6-9363-33b0a2e29bce -langcode: en -status: true -dependencies: - config: - - field.field.paragraph.embedded_content.field_content_reference - - paragraphs.paragraphs_type.embedded_content - module: - - ds -id: paragraph.embedded_content.default -targetEntityType: paragraph -bundle: embedded_content -mode: default -content: - field_content_reference: - type: entity_reference_entity_view - label: hidden - settings: - view_mode: embedded - link: false - third_party_settings: - ds: - ds_limit: '' - weight: 0 - region: content -hidden: - search_api_excerpt: true diff --git a/config/core.entity_view_mode.media.full.yml b/config/core.entity_view_mode.media.full.yml deleted file mode 100644 index 14f7301..0000000 --- a/config/core.entity_view_mode.media.full.yml +++ /dev/null @@ -1,13 +0,0 @@ -uuid: 7c91db2c-a8ef-4ec3-9331-dc9796f1c0e6 -langcode: en -status: false -dependencies: - module: - - media -_core: - default_config_hash: 6NBUEuGmlkClK8Fb76tSMMpO2eZ4LWCBdbUk4z7CuP0 -id: media.full -label: 'Full content' -description: '' -targetEntityType: media -cache: true diff --git a/config/core.entity_view_mode.media.media_library.yml b/config/core.entity_view_mode.media.media_library.yml deleted file mode 100644 index 33171c3..0000000 --- a/config/core.entity_view_mode.media.media_library.yml +++ /dev/null @@ -1,16 +0,0 @@ -uuid: d1c3c179-3064-4b7e-a89c-7fa7045b4dca -langcode: en -status: true -dependencies: - module: - - media - enforced: - module: - - media_library -_core: - default_config_hash: pkq0uj-IoqEQRBOP_ddUDV0ZJ-dKQ_fLcppsEDF2UO8 -id: media.media_library -label: 'Media library' -description: '' -targetEntityType: media -cache: true diff --git a/config/core.entity_view_mode.node.embedded.yml b/config/core.entity_view_mode.node.embedded.yml deleted file mode 100644 index 9876057..0000000 --- a/config/core.entity_view_mode.node.embedded.yml +++ /dev/null @@ -1,11 +0,0 @@ -uuid: 8aa5ebf2-a43b-4f6e-aeb7-81c37758c227 -langcode: en -status: true -dependencies: - module: - - node -id: node.embedded -label: Embedded -description: '' -targetEntityType: node -cache: true diff --git a/config/ds.settings.yml b/config/ds.settings.yml deleted file mode 100644 index 62d1d28..0000000 --- a/config/ds.settings.yml +++ /dev/null @@ -1,18 +0,0 @@ -_core: - default_config_hash: xfB0qOeoAomOThclNNokdKTrVwXLcXz13SU3-4a5-FY -disabled: false -field_template: false -classes: - region: { } - field: { } -use_field_names: true -ft_bc: true -exclude_layout_builder_blocks_on_block_field: false -ft_expert_prefix_suffix_textarea: false -ft_default: default -ft_show_colon: false -ft_layout_builder: null -exclude_ds_layout_layout_builder: false -layout_icon_image_bc: true -ft_default_bc: true -layout_suggestion_bc: true diff --git a/config/editor.editor.webform_default.yml b/config/editor.editor.webform_default.yml deleted file mode 100644 index 534c329..0000000 --- a/config/editor.editor.webform_default.yml +++ /dev/null @@ -1,49 +0,0 @@ -uuid: f9c714eb-b653-4de4-8f1d-766454d3a10b -langcode: en -status: true -dependencies: - config: - - filter.format.webform_default - module: - - ckeditor5 -format: webform_default -editor: ckeditor5 -settings: - toolbar: - items: - - heading - - '|' - - bold - - italic - - subscript - - superscript - - '|' - - specialCharacters - - '|' - - numberedList - - bulletedList - - '|' - - link - - '|' - - indent - - outdent - - '|' - - blockQuote - - '|' - - sourceEditing - plugins: - ckeditor5_heading: - enabled_headings: - - heading2 - - heading3 - - heading4 - - heading5 - - heading6 - ckeditor5_list: - properties: - reversed: true - startIndex: true - multiBlock: true - ckeditor5_sourceEditing: - allowed_tags: { } -image_upload: { } diff --git a/config/field.field.block_content.content_reference.field_content_reference.yml b/config/field.field.block_content.content_reference.field_content_reference.yml deleted file mode 100644 index c28c91f..0000000 --- a/config/field.field.block_content.content_reference.field_content_reference.yml +++ /dev/null @@ -1,36 +0,0 @@ -uuid: 2a3d8c6d-e403-472f-87cc-67af63bedcdf -langcode: en -status: true -dependencies: - config: - - block_content.type.content_reference - - field.storage.block_content.field_content_reference - - node.type.blog - - node.type.case_study - - node.type.landing_page - - node.type.page - - node.type.people -id: block_content.content_reference.field_content_reference -field_name: field_content_reference -entity_type: block_content -bundle: content_reference -label: 'Content reference' -description: '' -required: true -translatable: false -default_value: { } -default_value_callback: '' -settings: - handler: 'default:node' - handler_settings: - target_bundles: - page: page - blog: blog - case_study: case_study - landing_page: landing_page - people: people - sort: - field: _none - auto_create: false - auto_create_bundle: page -field_type: entity_reference diff --git a/config/field.field.paragraph.embedded_content.field_content_reference.yml b/config/field.field.paragraph.embedded_content.field_content_reference.yml deleted file mode 100644 index 40f135b..0000000 --- a/config/field.field.paragraph.embedded_content.field_content_reference.yml +++ /dev/null @@ -1,29 +0,0 @@ -uuid: 4b8ec78c-e9b3-4350-921e-9cabf3b1e7cd -langcode: en -status: true -dependencies: - config: - - field.storage.paragraph.field_content_reference - - node.type.page - - paragraphs.paragraphs_type.embedded_content -id: paragraph.embedded_content.field_content_reference -field_name: field_content_reference -entity_type: paragraph -bundle: embedded_content -label: Content -description: '' -required: true -translatable: true -default_value: { } -default_value_callback: '' -settings: - handler: 'default:node' - handler_settings: - target_bundles: - page: page - sort: - field: changed - direction: DESC - auto_create: false - auto_create_bundle: '' -field_type: entity_reference diff --git a/config/field.storage.block_content.field_content_reference.yml b/config/field.storage.block_content.field_content_reference.yml deleted file mode 100644 index 1bbe06a..0000000 --- a/config/field.storage.block_content.field_content_reference.yml +++ /dev/null @@ -1,20 +0,0 @@ -uuid: cc838cc9-a9cf-4db8-b573-929e597c2a99 -langcode: en -status: true -dependencies: - module: - - block_content - - node -id: block_content.field_content_reference -field_name: field_content_reference -entity_type: block_content -type: entity_reference -settings: - target_type: node -module: core -locked: false -cardinality: 9 -translatable: true -indexes: { } -persist_with_no_fields: false -custom_storage: false diff --git a/config/filter.format.markdown.yml b/config/filter.format.markdown.yml deleted file mode 100644 index a879552..0000000 --- a/config/filter.format.markdown.yml +++ /dev/null @@ -1,34 +0,0 @@ -uuid: bafc7219-d76b-411d-9eb2-a3be3d94dc4a -langcode: en -status: true -dependencies: - module: - - markdown -name: Markdown -format: markdown -weight: 0 -filters: - markdown: - id: markdown - provider: markdown - status: true - weight: 0 - settings: - id: commonmark - enabled: true - render_strategy: - type: filter_output - custom_allowed_html: '' - plugins: - commonmark: true - commonmark-external-links: false - commonmark-footnotes: false - commonmark-heading-permalink: false - commonmark-strikethrough: false - commonmark-table: false - commonmark-task-list: false - filter_align: false - filter_caption: false - media_embed: false - override: false - filterFormat: markdown diff --git a/config/filter.format.webform_default.yml b/config/filter.format.webform_default.yml deleted file mode 100644 index 0cbafe9..0000000 --- a/config/filter.format.webform_default.yml +++ /dev/null @@ -1,11 +0,0 @@ -uuid: c44fdcff-1798-4006-94c1-d9b2090eac40 -langcode: en -status: true -dependencies: - enforced: - module: - - webform -name: 'Webform (Default) - DO NOT EDIT' -format: webform_default -weight: 100 -filters: { } diff --git a/config/gin.settings.yml b/config/gin.settings.yml deleted file mode 100644 index d4897a6..0000000 --- a/config/gin.settings.yml +++ /dev/null @@ -1,25 +0,0 @@ -_core: - default_config_hash: UvSCt3S_NldJPFzvhSNOy9vWoPPFhmsmTC12vtVss9s -favicon: - use_default: true -features: - comment_user_picture: true - comment_user_verification: true - favicon: true - node_user_picture: true -logo: - use_default: true -third_party_settings: - shortcut: - module_link: true -preset_accent_color: dark_purple -preset_focus_color: gin -enable_darkmode: '0' -classic_toolbar: horizontal -secondary_toolbar_frontend: true -high_contrast_mode: false -accent_color: '' -focus_color: '' -layout_density: default -show_description_toggle: true -show_user_theme_settings: true diff --git a/config/image.style.crop_thumbnail.yml b/config/image.style.crop_thumbnail.yml deleted file mode 100644 index 5a4d375..0000000 --- a/config/image.style.crop_thumbnail.yml +++ /dev/null @@ -1,17 +0,0 @@ -uuid: b722a525-a7df-492c-bb37-7c51d6a0fe40 -langcode: en -status: true -dependencies: { } -_core: - default_config_hash: N1S0PHZeyxfFqgzB-sDeGPaxi0dDOL8NUiP_d6WXSV0 -name: crop_thumbnail -label: 'Crop thumbnail' -effects: - 8fc26706-68dc-4eb7-8121-33e3936ed55f: - uuid: 8fc26706-68dc-4eb7-8121-33e3936ed55f - id: image_scale - weight: 1 - data: - width: 400 - height: null - upscale: false diff --git a/config/image.style.media_library.yml b/config/image.style.media_library.yml deleted file mode 100644 index 65e742a..0000000 --- a/config/image.style.media_library.yml +++ /dev/null @@ -1,20 +0,0 @@ -uuid: 949cdfef-b4c1-4714-80e7-37e6a43a1403 -langcode: en -status: true -dependencies: - enforced: - module: - - media_library -_core: - default_config_hash: 7qJqToD1OQLAyeswpmg7M0LRxQlw1URQkJDWUJCnmR8 -name: media_library -label: 'Media Library thumbnail (220×220)' -effects: - 75b076a8-1234-4b42-85db-bf377c4d8d5f: - uuid: 75b076a8-1234-4b42-85db-bf377c4d8d5f - id: image_scale - weight: 0 - data: - width: 220 - height: 220 - upscale: false diff --git a/config/image_widget_crop.settings.yml b/config/image_widget_crop.settings.yml deleted file mode 100644 index d7ceb3e..0000000 --- a/config/image_widget_crop.settings.yml +++ /dev/null @@ -1,12 +0,0 @@ -_core: - default_config_hash: UYGkeE2iH3UGp9lBPsELb3VSgHz9vkMJeaGzcYwE7Uw -settings: - library_url: '' - css_url: '' - crop_preview_image_style: crop_thumbnail - crop_list: { } - crop_types_required: { } - warn_multiple_usages: false - show_default_crop: true - notify_apply: false - notify_update: true diff --git a/config/language.content_settings.block_content.content_reference.yml b/config/language.content_settings.block_content.content_reference.yml deleted file mode 100644 index 85721fe..0000000 --- a/config/language.content_settings.block_content.content_reference.yml +++ /dev/null @@ -1,11 +0,0 @@ -uuid: fa4ee272-a1d0-4058-8257-9b45b9a83c8c -langcode: en -status: true -dependencies: - config: - - block_content.type.content_reference -id: block_content.content_reference -target_entity_type_id: block_content -target_bundle: content_reference -default_langcode: site_default -language_alterable: false diff --git a/config/language/es/block.block.article_type_facet.yml b/config/language/es/block.block.article_type_facet.yml deleted file mode 100644 index c8f9db5..0000000 --- a/config/language/es/block.block.article_type_facet.yml +++ /dev/null @@ -1,2 +0,0 @@ -settings: - label: Tipo diff --git a/config/language/es/block.block.event_type_facet.yml b/config/language/es/block.block.event_type_facet.yml deleted file mode 100644 index c8f9db5..0000000 --- a/config/language/es/block.block.event_type_facet.yml +++ /dev/null @@ -1,2 +0,0 @@ -settings: - label: Tipo diff --git a/config/language/es/block.block.resource_type_facet.yml b/config/language/es/block.block.resource_type_facet.yml deleted file mode 100644 index c8f9db5..0000000 --- a/config/language/es/block.block.resource_type_facet.yml +++ /dev/null @@ -1,2 +0,0 @@ -settings: - label: Tipo diff --git a/config/language/es/field.field.node.page.field_body_paragraph.yml b/config/language/es/field.field.node.page.field_body_paragraph.yml deleted file mode 100644 index 79ce516..0000000 --- a/config/language/es/field.field.node.page.field_body_paragraph.yml +++ /dev/null @@ -1 +0,0 @@ -label: Descripción diff --git a/config/language/es/system.menu.admin.yml b/config/language/es/system.menu.admin.yml deleted file mode 100644 index 2f4edaa..0000000 --- a/config/language/es/system.menu.admin.yml +++ /dev/null @@ -1 +0,0 @@ -label: Administración diff --git a/config/language/es/views.view.media.yml b/config/language/es/views.view.media.yml deleted file mode 100644 index c3ad582..0000000 --- a/config/language/es/views.view.media.yml +++ /dev/null @@ -1,20 +0,0 @@ -display: - default: - display_title: 'Por defecto' - display_options: - fields: - media_bulk_form: - action_title: Acción - bundle: - label: Tipo - status: - label: Estado - operations: - label: Operaciones - exposed_form: - options: - submit_button: Filter - filters: - bundle: - expose: - label: Tipo diff --git a/config/language/es/views.view.media_library.yml b/config/language/es/views.view.media_library.yml deleted file mode 100644 index 5fe9821..0000000 --- a/config/language/es/views.view.media_library.yml +++ /dev/null @@ -1,36 +0,0 @@ -display: - default: - display_title: 'Por defecto' - display_options: - fields: - media_bulk_form: - action_title: Acción - filters: - name: - expose: - label: Nombre - page: - display_title: Página - display_options: - fields: - media_bulk_form: - action_title: Acción - edit_media: - text: Editar - delete_media: - text: Eliminar - widget: - display_options: - filters: - name: - expose: - label: Nombre - widget_table: - display_options: - fields: - name: - label: Nombre - filters: - name: - expose: - label: Nombre diff --git a/config/language/es/views.view.watchdog.yml b/config/language/es/views.view.watchdog.yml deleted file mode 100644 index 068949e..0000000 --- a/config/language/es/views.view.watchdog.yml +++ /dev/null @@ -1,22 +0,0 @@ -display: - default: - display_title: 'Por defecto' - display_options: - fields: - type: - label: Tipo - timestamp: - label: Fecha - name: - label: Usuario - link: - label: Operaciones - exposed_form: - options: - submit_button: Filter - filters: - type: - expose: - label: Tipo - page: - display_title: Página diff --git a/config/language/es/views.view.who_s_online.yml b/config/language/es/views.view.who_s_online.yml deleted file mode 100644 index dcdad34..0000000 --- a/config/language/es/views.view.who_s_online.yml +++ /dev/null @@ -1,3 +0,0 @@ -display: - default: - display_title: 'Por defecto' diff --git a/config/language/es/webform.webform.migration_quote.yml b/config/language/es/webform.webform.migration_quote.yml deleted file mode 100644 index f11491c..0000000 --- a/config/language/es/webform.webform.migration_quote.yml +++ /dev/null @@ -1,27 +0,0 @@ -title: Contact -elements: | - introduction: - '#markup': 'Usted – nuestros clientes, colegas, y admiradores locos – es la razón por la que hacemos lo que hacemos. Nos encantaría saber de usted.' - name: - '#title': 'Tu Nombre' - email: - '#title': 'Tu Correo Electrónico' - subject: - '#title': 'El Tema' - message: - '#title': Mensaje - actions: - '#submit__label': 'Enviar Mensaje' -settings: - confirmation_message: '¡Gracias por contactarnos! Nos pondremos en contacto con usted tan pronto como uno de nosotros (probablemente Clayton) revise nuestro correo electrónico.' -handlers: - email_notification: - settings: - body: | - Hola Agarics, - - Tú recibiste un nuevo mensaje. - -

Submitted on {{ webform_token('[webform_submission:created]', webform_submission) }}

-

Submitted values are:

- {{ webform_token('[webform_submission:values]', webform_submission) }} diff --git a/config/markdown.parser.commonmark.yml b/config/markdown.parser.commonmark.yml deleted file mode 100644 index 55901fc..0000000 --- a/config/markdown.parser.commonmark.yml +++ /dev/null @@ -1,79 +0,0 @@ -dependencies: - module: - - markdown -id: commonmark -enabled: true -weight: 0 -render_strategy: - type: filter_output - custom_allowed_html: '' - plugins: - commonmark: true - commonmark-external-links: false - commonmark-footnotes: false - commonmark-heading-permalink: false - commonmark-strikethrough: false - commonmark-table: false - commonmark-task-list: false -settings: - allow_unsafe_links: true - enable_em: true - enable_strong: true - html_input: allow - max_nesting_level: 0 - use_asterisk: true - use_underscore: true -extensions: - - - id: commonmark-attributes - enabled: false - weight: 0 - - - id: commonmark-autolink - enabled: true - weight: 0 - - - id: commonmark-disallowed-raw-html - enabled: false - weight: 0 - - - id: commonmark-external-links - enabled: false - weight: 0 - settings: { } - - - id: commonmark-footnotes - enabled: false - weight: 0 - settings: { } - - - id: commonmark-heading-permalink - enabled: false - weight: 0 - settings: { } - - - id: commonmark-mention - enabled: false - weight: 0 - - - id: commonmark-smart-punctuation - enabled: false - weight: 0 - settings: { } - - - id: commonmark-strikethrough - enabled: false - weight: 0 - - - id: commonmark-table - enabled: false - weight: 0 - - - id: commonmark-table-of-contents - enabled: false - weight: 0 - settings: { } - - - id: commonmark-task-list - enabled: false - weight: 0 diff --git a/config/media.settings.yml b/config/media.settings.yml deleted file mode 100644 index 32d79b3..0000000 --- a/config/media.settings.yml +++ /dev/null @@ -1,6 +0,0 @@ -_core: - default_config_hash: PlWtVQXY5oKYZqCMPXh6SPamXagn5BoZqgAI8EY9WsY -icon_base_uri: 'public://media-icons/generic' -iframe_domain: null -oembed_providers_url: 'https://oembed.com/providers.json' -standalone_url: false diff --git a/config/media_library.settings.yml b/config/media_library.settings.yml deleted file mode 100644 index 3a1479a..0000000 --- a/config/media_library.settings.yml +++ /dev/null @@ -1,3 +0,0 @@ -_core: - default_config_hash: _3gQsCnZELUjUUqHk8SSh8bXnx7TZwN95vctAeVJG60 -advanced_ui: false diff --git a/config/paragraphs.paragraphs_type.embedded_content.yml b/config/paragraphs.paragraphs_type.embedded_content.yml deleted file mode 100644 index 6abdf8e..0000000 --- a/config/paragraphs.paragraphs_type.embedded_content.yml +++ /dev/null @@ -1,10 +0,0 @@ -uuid: 3608b2be-c89a-45a1-9bf2-c2603cfd3c3d -langcode: en -status: true -dependencies: { } -id: embedded_content -label: 'Embedded content' -icon_uuid: null -icon_default: null -description: 'Embed a full piece of content in another piece of content. Used for example to include our training FAQ on each individual training page.' -behavior_plugins: { } diff --git a/config/plausible.settings.yml b/config/plausible.settings.yml deleted file mode 100644 index e5ee6b7..0000000 --- a/config/plausible.settings.yml +++ /dev/null @@ -1,25 +0,0 @@ -_core: - default_config_hash: 2SiIYRsf-Gi9ND77G28c3dFL1cVw6F7QLmrIafNZp-g -script: - domain: agaric.coop - api: '' - src: 'https://plausible.io/js/plausible.js' -visibility: - enable: true - admin_route_mode: 0 - request_path_mode: 1 - request_path_pages: '' - user_role_roles: - contributor: contributor - editor: editor - manager: manager - administrator: administrator - anonymous: '0' - authenticated: '0' - past: '0' - partner: '0' - staff: '0' - user_role_mode: 2 -events: - 403: false - 404: false diff --git a/config/preview_link.settings.yml b/config/preview_link.settings.yml deleted file mode 100644 index 10f4218..0000000 --- a/config/preview_link.settings.yml +++ /dev/null @@ -1,4 +0,0 @@ -enabled_entity_types: { } -multiple_entities: false -expiry_seconds: 604800 -display_message: subsequent diff --git a/config/riddler.riddle.nameacontentmanagementframeworkwhichagarichasexpertisewith.yml b/config/riddler.riddle.nameacontentmanagementframeworkwhichagarichasexpertisewith.yml deleted file mode 100644 index 3e3cedf..0000000 --- a/config/riddler.riddle.nameacontentmanagementframeworkwhichagarichasexpertisewith.yml +++ /dev/null @@ -1,8 +0,0 @@ -uuid: 88e54612-d4d1-4bf6-98e0-a08e9b6a1083 -langcode: en -status: true -dependencies: { } -id: nameacontentmanagementframeworkwhichagarichasexpertisewith -question: 'Name a content management framework which Agaric has expertise with!' -solution: 'Drupal,Drupal!,Django,Django!,React,Hugo,Wordpress,ReadTheDocs,Flask,Drutopia,Visions Unite,VisionsUnite,FindIt,Find It' -hint: null diff --git a/config/search_api.settings.yml b/config/search_api.settings.yml deleted file mode 100644 index 6cd5bd1..0000000 --- a/config/search_api.settings.yml +++ /dev/null @@ -1,28 +0,0 @@ -_core: - default_config_hash: n7m4vlCPoB3_1C7l13LKYsifmLur4QR71mOD7S_5hSE -default_cron_limit: 50 -cron_worker_runtime: 15 -default_tracker: default -tracking_page_size: 100 -boost_factors: - - 0.0 - - 0.1 - - 0.2 - - 0.3 - - 0.5 - - 0.6 - - 0.7 - - 0.8 - - 0.9 - - 1.0 - - 1.1 - - 1.2 - - 1.3 - - 1.4 - - 1.5 - - 2.0 - - 3.0 - - 5.0 - - 8.0 - - 13.0 - - 21.0 diff --git a/config/.htaccess b/config/sync/.htaccess similarity index 100% rename from config/.htaccess rename to config/sync/.htaccess diff --git a/config/sync/antibot.settings.yml b/config/sync/antibot.settings.yml new file mode 100644 index 0000000..13513a7 --- /dev/null +++ b/config/sync/antibot.settings.yml @@ -0,0 +1,10 @@ +form_ids: + - 'comment_*' + - user_login_form + - user_pass + - user_register_form + - 'contact_*' + - 'webform_*' +show_form_ids: false +_core: + default_config_hash: 7QwhifH5gAzkdFMMDFV6XQRrcx4PAvtROZO8rs19nTo diff --git a/config/automated_cron.settings.yml b/config/sync/automated_cron.settings.yml similarity index 100% rename from config/automated_cron.settings.yml rename to config/sync/automated_cron.settings.yml index 3fc5821..2418a00 100644 --- a/config/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/autosave_form.messages.yml b/config/sync/autosave_form.messages.yml similarity index 100% rename from config/autosave_form.messages.yml rename to config/sync/autosave_form.messages.yml index 4b81262..e2546d3 100644 --- a/config/autosave_form.messages.yml +++ b/config/sync/autosave_form.messages.yml @@ -1,3 +1,3 @@ +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 -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/autosave_form.settings.yml b/config/sync/autosave_form.settings.yml similarity index 85% rename from config/autosave_form.settings.yml rename to config/sync/autosave_form.settings.yml index 1e4768f..03f89c9 100644 --- a/config/autosave_form.settings.yml +++ b/config/sync/autosave_form.settings.yml @@ -1,7 +1,4 @@ -_core: - default_config_hash: QnLi3Y7e5T_v9EZqYxRb90E0bBDb2g1y7xREWLKJLC0 interval: 60000 -only_on_form_change: false active_on: content_entity_forms: true config_entity_forms: false @@ -10,4 +7,5 @@ notification: message: 'Saving draft...' delay: 1000 allowed_content_entity_types: { } -allowed_new: true +_core: + default_config_hash: QnLi3Y7e5T_v9EZqYxRb90E0bBDb2g1y7xREWLKJLC0 diff --git a/config/block.block.agarica_account_menu.yml b/config/sync/block.block.agarica_account_menu.yml similarity index 100% rename from config/block.block.agarica_account_menu.yml rename to config/sync/block.block.agarica_account_menu.yml index 99fcace..d67fccb 100644 --- a/config/block.block.agarica_account_menu.yml +++ b/config/sync/block.block.agarica_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/block.block.agarica_branding.yml b/config/sync/block.block.agarica_branding.yml similarity index 100% rename from config/block.block.agarica_branding.yml rename to config/sync/block.block.agarica_branding.yml index 1a09689..91ea85d 100644 --- a/config/block.block.agarica_branding.yml +++ b/config/sync/block.block.agarica_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/block.block.agarica_content.yml b/config/sync/block.block.agarica_content.yml similarity index 97% rename from config/block.block.agarica_content.yml rename to config/sync/block.block.agarica_content.yml index 65869ae..2271b3d 100644 --- a/config/block.block.agarica_content.yml +++ b/config/sync/block.block.agarica_content.yml @@ -11,12 +11,12 @@ _core: id: agarica_content theme: agarica region: content -weight: -10 +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/block.block.agarica_footer_menu.yml b/config/sync/block.block.agarica_footer_menu.yml similarity index 100% rename from config/block.block.agarica_footer_menu.yml rename to config/sync/block.block.agarica_footer_menu.yml index 439affa..d976349 100644 --- a/config/block.block.agarica_footer_menu.yml +++ b/config/sync/block.block.agarica_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.agarica_group_operations.yml b/config/sync/block.block.agarica_group_operations.yml new file mode 100644 index 0000000..277c3f1 --- /dev/null +++ b/config/sync/block.block.agarica_group_operations.yml @@ -0,0 +1,38 @@ +uuid: ffa31e4d-08cc-4580-8360-c6b77ecb5ade +langcode: en +status: true +dependencies: + module: + - block_visibility_groups + - ctools + - group + theme: + - agarica +_core: + default_config_hash: tFNrNdtnXTOnNWULWj6DqEc8-4I-DY9Z6JhS5AlHn24 +id: agarica_group_operations +theme: agarica +region: sidebar_first +weight: -20 +provider: null +plugin: group_operations +settings: + id: group_operations + label: 'Group operations' + provider: group + label_display: visible + context_mapping: + group: '@group.group_route_context:group' +visibility: + condition_group: + id: condition_group + negate: false + block_visibility_group: '' + context_mapping: { } + 'entity_bundle:group': + id: 'entity_bundle:group' + bundles: + group: group + negate: false + context_mapping: + group: '@group.group_route_context:group' diff --git a/config/block.block.agarica_help.yml b/config/sync/block.block.agarica_help.yml similarity index 100% rename from config/block.block.agarica_help.yml rename to config/sync/block.block.agarica_help.yml index 723a927..75eff29 100644 --- a/config/block.block.agarica_help.yml +++ b/config/sync/block.block.agarica_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/block.block.agarica_home_page_custom_1.yml b/config/sync/block.block.agarica_home_page_custom_1.yml similarity index 84% rename from config/block.block.agarica_home_page_custom_1.yml rename to config/sync/block.block.agarica_home_page_custom_1.yml index 9f66713..8615da9 100644 --- a/config/block.block.agarica_home_page_custom_1.yml +++ b/config/sync/block.block.agarica_home_page_custom_1.yml @@ -1,7 +1,9 @@ uuid: 7201dbba-0cc0-46c5-a175-3b1be47aa5e3 langcode: en -status: false +status: true dependencies: + config: + - block_visibility_groups.block_visibility_group.home_page content: - 'block_content:slide:a3a19121-c6a2-4a3f-8225-8e84f5fb0c9d' module: @@ -14,14 +16,14 @@ _core: id: agarica_home_page_custom_1 theme: agarica region: content_bottom -weight: -11 +weight: 0 provider: null plugin: 'block_content:a3a19121-c6a2-4a3f-8225-8e84f5fb0c9d' settings: id: 'block_content:a3a19121-c6a2-4a3f-8225-8e84f5fb0c9d' label: 'Home page custom 1' - label_display: '0' provider: block_content + label_display: '0' status: true info: '' view_mode: columnar @@ -29,5 +31,5 @@ visibility: condition_group: id: condition_group negate: false + block_visibility_group: home_page context_mapping: { } - block_visibility_group: '' diff --git a/config/block.block.agarica_home_page_custom_2.yml b/config/sync/block.block.agarica_home_page_custom_2.yml similarity index 84% rename from config/block.block.agarica_home_page_custom_2.yml rename to config/sync/block.block.agarica_home_page_custom_2.yml index d81358c..33244fc 100644 --- a/config/block.block.agarica_home_page_custom_2.yml +++ b/config/sync/block.block.agarica_home_page_custom_2.yml @@ -1,7 +1,9 @@ uuid: 9d41ad55-46a7-43b8-877b-5219eeb54bac langcode: en -status: false +status: true dependencies: + config: + - block_visibility_groups.block_visibility_group.home_page content: - 'block_content:slide:8f30e41d-3693-43bc-a281-9b11e29df3b8' module: @@ -14,14 +16,14 @@ _core: id: agarica_home_page_custom_2 theme: agarica region: content_bottom -weight: -10 +weight: 2 provider: null plugin: 'block_content:8f30e41d-3693-43bc-a281-9b11e29df3b8' settings: id: 'block_content:8f30e41d-3693-43bc-a281-9b11e29df3b8' label: 'Home page custom 2' - label_display: '0' provider: block_content + label_display: '0' status: true info: '' view_mode: columnar @@ -29,5 +31,5 @@ visibility: condition_group: id: condition_group negate: false + block_visibility_group: home_page context_mapping: { } - block_visibility_group: '' diff --git a/config/block.block.agarica_home_page_custom_3.yml b/config/sync/block.block.agarica_home_page_custom_3.yml similarity index 97% rename from config/block.block.agarica_home_page_custom_3.yml rename to config/sync/block.block.agarica_home_page_custom_3.yml index aacd0b7..3785248 100644 --- a/config/block.block.agarica_home_page_custom_3.yml +++ b/config/sync/block.block.agarica_home_page_custom_3.yml @@ -1,6 +1,6 @@ uuid: d8665d59-0f09-4004-b54b-91be96de670d langcode: en -status: false +status: true dependencies: config: - block_visibility_groups.block_visibility_group.home_page @@ -16,14 +16,14 @@ _core: id: agarica_home_page_custom_3 theme: agarica region: content_bottom -weight: -8 +weight: 4 provider: null plugin: 'block_content:086d20ee-9e48-4ee3-81ae-263f7dc279ba' settings: id: 'block_content:086d20ee-9e48-4ee3-81ae-263f7dc279ba' label: 'Home page custom 3' - label_display: '0' provider: block_content + label_display: '0' status: true info: '' view_mode: columnar @@ -31,5 +31,5 @@ visibility: condition_group: id: condition_group negate: false - context_mapping: { } block_visibility_group: home_page + context_mapping: { } diff --git a/config/block.block.agarica_local_actions.yml b/config/sync/block.block.agarica_local_actions.yml similarity index 97% rename from config/block.block.agarica_local_actions.yml rename to config/sync/block.block.agarica_local_actions.yml index cc6ec15..fed311d 100644 --- a/config/block.block.agarica_local_actions.yml +++ b/config/sync/block.block.agarica_local_actions.yml @@ -9,12 +9,12 @@ _core: id: agarica_local_actions theme: agarica region: content -weight: -11 +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/block.block.agarica_local_tasks.yml b/config/sync/block.block.agarica_local_tasks.yml similarity index 100% rename from config/block.block.agarica_local_tasks.yml rename to config/sync/block.block.agarica_local_tasks.yml index 8451818..5903f15 100644 --- a/config/block.block.agarica_local_tasks.yml +++ b/config/sync/block.block.agarica_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/block.block.agarica_main_menu.yml b/config/sync/block.block.agarica_main_menu.yml similarity index 100% rename from config/block.block.agarica_main_menu.yml rename to config/sync/block.block.agarica_main_menu.yml index 4a08674..98a1e1f 100644 --- a/config/block.block.agarica_main_menu.yml +++ b/config/sync/block.block.agarica_main_menu.yml @@ -20,8 +20,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 @@ -29,5 +29,5 @@ visibility: condition_group: id: condition_group negate: false - context_mapping: { } block_visibility_group: '' + context_mapping: { } diff --git a/config/block.block.agarica_messages.yml b/config/sync/block.block.agarica_messages.yml similarity index 100% rename from config/block.block.agarica_messages.yml rename to config/sync/block.block.agarica_messages.yml index 8f88d95..f11c439 100644 --- a/config/block.block.agarica_messages.yml +++ b/config/sync/block.block.agarica_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/block.block.agarica_page_title.yml b/config/sync/block.block.agarica_page_title.yml similarity index 100% rename from config/block.block.agarica_page_title.yml rename to config/sync/block.block.agarica_page_title.yml index 836cb8e..f188cff 100644 --- a/config/block.block.agarica_page_title.yml +++ b/config/sync/block.block.agarica_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/block.block.agarica_powered_by_drutopia.yml b/config/sync/block.block.agarica_powered_by_drutopia.yml similarity index 100% rename from config/block.block.agarica_powered_by_drutopia.yml rename to config/sync/block.block.agarica_powered_by_drutopia.yml index b8e86ae..699950b 100644 --- a/config/block.block.agarica_powered_by_drutopia.yml +++ b/config/sync/block.block.agarica_powered_by_drutopia.yml @@ -17,6 +17,6 @@ plugin: drutopia_powered_by_block settings: id: drutopia_powered_by_block label: 'Powered by Drutopia' - label_display: '0' provider: drutopia + label_display: '0' visibility: { } diff --git a/config/block.block.agarica_socialmedialinks.yml b/config/sync/block.block.agarica_socialmedialinks.yml similarity index 100% rename from config/block.block.agarica_socialmedialinks.yml rename to config/sync/block.block.agarica_socialmedialinks.yml index 8f70d66..d34e4b1 100644 --- a/config/block.block.agarica_socialmedialinks.yml +++ b/config/sync/block.block.agarica_socialmedialinks.yml @@ -17,8 +17,8 @@ plugin: social_media_links_block settings: id: social_media_links_block label: 'Social Media Links' - label_display: '0' provider: social_media_links + label_display: '0' platforms: behance: value: '' diff --git a/config/block.block.agarica_views_block__related_content_block_related_content.yml b/config/sync/block.block.agarica_views_block__related_content_block_related_content.yml similarity index 98% rename from config/block.block.agarica_views_block__related_content_block_related_content.yml rename to config/sync/block.block.agarica_views_block__related_content_block_related_content.yml index 8554db5..5c36191 100644 --- a/config/block.block.agarica_views_block__related_content_block_related_content.yml +++ b/config/sync/block.block.agarica_views_block__related_content_block_related_content.yml @@ -15,27 +15,27 @@ _core: id: agarica_views_block__related_content_block_related_content theme: agarica region: content -weight: -9 +weight: 10 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: { } + 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' + bundles: + people: people negate: true context_mapping: node: '@node.node_route_context:node' - bundles: - people: people diff --git a/config/block.block.article_topics_facet.yml b/config/sync/block.block.article_topics_facet.yml similarity index 100% rename from config/block.block.article_topics_facet.yml rename to config/sync/block.block.article_topics_facet.yml index 212453d..5cb682d 100644 --- a/config/block.block.article_topics_facet.yml +++ b/config/sync/block.block.article_topics_facet.yml @@ -21,11 +21,11 @@ plugin: 'facet_block:article_topics' settings: id: 'facet_block:article_topics' label: Topics - label_display: visible provider: facets + label_display: visible visibility: condition_group: id: condition_group negate: false - context_mapping: { } block_visibility_group: article_listing + context_mapping: { } diff --git a/config/block.block.article_type_facet.yml b/config/sync/block.block.article_type_facet.yml similarity index 100% rename from config/block.block.article_type_facet.yml rename to config/sync/block.block.article_type_facet.yml index 3d83d36..280615e 100644 --- a/config/block.block.article_type_facet.yml +++ b/config/sync/block.block.article_type_facet.yml @@ -21,11 +21,11 @@ plugin: 'facet_block:article_type' settings: id: 'facet_block:article_type' label: Type - label_display: visible provider: facets + label_display: visible visibility: condition_group: id: condition_group negate: false - context_mapping: { } block_visibility_group: article_listing + context_mapping: { } diff --git a/config/block.block.blog_topics_facet.yml b/config/sync/block.block.blog_topics_facet.yml similarity index 100% rename from config/block.block.blog_topics_facet.yml rename to config/sync/block.block.blog_topics_facet.yml index 49e1bf9..db7c253 100644 --- a/config/block.block.blog_topics_facet.yml +++ b/config/sync/block.block.blog_topics_facet.yml @@ -21,11 +21,11 @@ plugin: 'facet_block:blog_topics' settings: id: 'facet_block:blog_topics' label: Topics - label_display: visible provider: facets + label_display: visible visibility: condition_group: id: condition_group negate: false - context_mapping: { } block_visibility_group: blog_listing + context_mapping: { } diff --git a/config/block.block.bulma_account_menu.yml b/config/sync/block.block.bulma_account_menu.yml similarity index 100% rename from config/block.block.bulma_account_menu.yml rename to config/sync/block.block.bulma_account_menu.yml index 9b65df1..c6eaa6c 100644 --- a/config/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/block.block.bulma_branding.yml b/config/sync/block.block.bulma_branding.yml similarity index 100% rename from config/block.block.bulma_branding.yml rename to config/sync/block.block.bulma_branding.yml index 778e876..c4b4e3d 100644 --- a/config/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/block.block.bulma_content.yml b/config/sync/block.block.bulma_content.yml similarity index 100% rename from config/block.block.bulma_content.yml rename to config/sync/block.block.bulma_content.yml index 37081f7..43bb3ff 100644 --- a/config/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/block.block.bulma_help.yml b/config/sync/block.block.bulma_help.yml similarity index 100% rename from config/block.block.bulma_help.yml rename to config/sync/block.block.bulma_help.yml index f45c086..8fef326 100644 --- a/config/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/block.block.bulma_local_tasks.yml b/config/sync/block.block.bulma_local_tasks.yml similarity index 100% rename from config/block.block.bulma_local_tasks.yml rename to config/sync/block.block.bulma_local_tasks.yml index c4ea790..17d5c15 100644 --- a/config/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/block.block.bulma_main_menu.yml b/config/sync/block.block.bulma_main_menu.yml similarity index 100% rename from config/block.block.bulma_main_menu.yml rename to config/sync/block.block.bulma_main_menu.yml index df7760a..9438f55 100644 --- a/config/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/block.block.bulma_messages.yml b/config/sync/block.block.bulma_messages.yml similarity index 100% rename from config/block.block.bulma_messages.yml rename to config/sync/block.block.bulma_messages.yml index b6dd75c..1632952 100644 --- a/config/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/block.block.bulma_page_title.yml b/config/sync/block.block.bulma_page_title.yml similarity index 100% rename from config/block.block.bulma_page_title.yml rename to config/sync/block.block.bulma_page_title.yml index 42c8405..2ec527f 100644 --- a/config/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/block.block.bulma_powered.yml b/config/sync/block.block.bulma_powered.yml similarity index 100% rename from config/block.block.bulma_powered.yml rename to config/sync/block.block.bulma_powered.yml index 99408df..bc694c4 100644 --- a/config/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/block.block.bulma_tools.yml b/config/sync/block.block.bulma_tools.yml similarity index 100% rename from config/block.block.bulma_tools.yml rename to config/sync/block.block.bulma_tools.yml index 3fde28d..1ebdaa3 100644 --- a/config/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/block.block.content_search_form_global.yml b/config/sync/block.block.content_search_form_global.yml similarity index 100% rename from config/block.block.content_search_form_global.yml rename to config/sync/block.block.content_search_form_global.yml index ad51282..706ee7b 100644 --- a/config/block.block.content_search_form_global.yml +++ b/config/sync/block.block.content_search_form_global.yml @@ -20,12 +20,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/block.block.content_search_form_search.yml b/config/sync/block.block.content_search_form_search.yml similarity index 100% rename from config/block.block.content_search_form_search.yml rename to config/sync/block.block.content_search_form_search.yml index a1ce5a4..1ea95c7 100644 --- a/config/block.block.content_search_form_search.yml +++ b/config/sync/block.block.content_search_form_search.yml @@ -21,12 +21,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: search + context_mapping: { } diff --git a/config/block.block.event_topics_facet.yml b/config/sync/block.block.event_topics_facet.yml similarity index 100% rename from config/block.block.event_topics_facet.yml rename to config/sync/block.block.event_topics_facet.yml index 459ec58..bcfc522 100644 --- a/config/block.block.event_topics_facet.yml +++ b/config/sync/block.block.event_topics_facet.yml @@ -21,11 +21,11 @@ plugin: 'facet_block:event_topics' settings: id: 'facet_block:event_topics' label: Topics - label_display: visible provider: facets + label_display: visible visibility: condition_group: id: condition_group negate: false - context_mapping: { } block_visibility_group: event_listing + context_mapping: { } diff --git a/config/block.block.event_type_facet.yml b/config/sync/block.block.event_type_facet.yml similarity index 100% rename from config/block.block.event_type_facet.yml rename to config/sync/block.block.event_type_facet.yml index 9929393..b755fcb 100644 --- a/config/block.block.event_type_facet.yml +++ b/config/sync/block.block.event_type_facet.yml @@ -21,11 +21,11 @@ plugin: 'facet_block:event_type' settings: id: 'facet_block:event_type' label: Type - label_display: visible provider: facets + label_display: visible visibility: condition_group: id: condition_group negate: false - context_mapping: { } block_visibility_group: event_listing + context_mapping: { } diff --git a/config/block.block.exposedformsearchpage_1.yml b/config/sync/block.block.exposedformsearchpage_1.yml similarity index 100% rename from config/block.block.exposedformsearchpage_1.yml rename to config/sync/block.block.exposedformsearchpage_1.yml index 456e45e..4de3601 100644 --- a/config/block.block.exposedformsearchpage_1.yml +++ b/config/sync/block.block.exposedformsearchpage_1.yml @@ -18,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/block.block.exposedformsearchpage_1_2.yml b/config/sync/block.block.exposedformsearchpage_1_2.yml similarity index 100% rename from config/block.block.exposedformsearchpage_1_2.yml rename to config/sync/block.block.exposedformsearchpage_1_2.yml index 12ba201..0c876d5 100644 --- a/config/block.block.exposedformsearchpage_1_2.yml +++ b/config/sync/block.block.exposedformsearchpage_1_2.yml @@ -19,19 +19,19 @@ plugin: 'views_exposed_filter_block:search-page_1' settings: id: 'views_exposed_filter_block:search-page_1' label: '' - label_display: visible provider: views + label_display: visible views_label: '' visibility: condition_group: id: condition_group negate: false - context_mapping: { } block_visibility_group: '' + context_mapping: { } request_path: id: request_path - negate: false - context_mapping: { } pages: | /search /search/* + negate: false + context_mapping: { } diff --git a/config/block.block.footer_about_us.yml b/config/sync/block.block.footer_about_us.yml similarity index 92% rename from config/block.block.footer_about_us.yml rename to config/sync/block.block.footer_about_us.yml index 43fd62f..1bce7e8 100644 --- a/config/block.block.footer_about_us.yml +++ b/config/sync/block.block.footer_about_us.yml @@ -20,20 +20,18 @@ plugin: 'menu_block:main' settings: id: 'menu_block:main' label: 'About Us' - label_display: visible provider: menu_block + label_display: visible follow: false follow_parent: child - label_link: false - label_type: block 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/block.block.footer_get_involved.yml b/config/sync/block.block.footer_get_involved.yml similarity index 92% rename from config/block.block.footer_get_involved.yml rename to config/sync/block.block.footer_get_involved.yml index 52c12ae..2a00d01 100644 --- a/config/block.block.footer_get_involved.yml +++ b/config/sync/block.block.footer_get_involved.yml @@ -20,20 +20,18 @@ plugin: 'menu_block:main' settings: id: 'menu_block:main' label: 'Get Involved' - label_display: visible provider: menu_block + label_display: visible follow: false follow_parent: child - label_link: false - label_type: block 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/block.block.footer_our_work.yml b/config/sync/block.block.footer_our_work.yml similarity index 92% rename from config/block.block.footer_our_work.yml rename to config/sync/block.block.footer_our_work.yml index f075147..1b3fa10 100644 --- a/config/block.block.footer_our_work.yml +++ b/config/sync/block.block.footer_our_work.yml @@ -20,20 +20,18 @@ plugin: 'menu_block:main' settings: id: 'menu_block:main' label: 'Our Work' - label_display: visible provider: menu_block + label_display: visible follow: false follow_parent: child - label_link: false - label_type: block 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.group_operations.yml b/config/sync/block.block.group_operations.yml new file mode 100644 index 0000000..29c224a --- /dev/null +++ b/config/sync/block.block.group_operations.yml @@ -0,0 +1,38 @@ +uuid: 327c7cdf-c88a-4ccc-8097-ddc9b226d985 +langcode: en +status: true +dependencies: + module: + - block_visibility_groups + - ctools + - group + theme: + - octavia +_core: + default_config_hash: tFNrNdtnXTOnNWULWj6DqEc8-4I-DY9Z6JhS5AlHn24 +id: group_operations +theme: octavia +region: sidebar_first +weight: -20 +provider: null +plugin: group_operations +settings: + id: group_operations + label: 'Group operations' + provider: group + label_display: visible + context_mapping: + group: '@group.group_route_context:group' +visibility: + condition_group: + id: condition_group + negate: false + block_visibility_group: '' + context_mapping: { } + 'entity_bundle:group': + id: 'entity_bundle:group' + bundles: + group: group + negate: false + context_mapping: + group: '@group.group_route_context:group' diff --git a/config/block.block.hireagaric.yml b/config/sync/block.block.hireagaric.yml similarity index 83% rename from config/block.block.hireagaric.yml rename to config/sync/block.block.hireagaric.yml index e5529eb..2922993 100644 --- a/config/block.block.hireagaric.yml +++ b/config/sync/block.block.hireagaric.yml @@ -1,6 +1,6 @@ uuid: 111507ad-206f-4d2f-864e-24b12ebac1dd langcode: en -status: false +status: true dependencies: content: - 'block_content:basic:134165a3-b38a-41c1-92aa-984e3e6d3435' @@ -14,14 +14,14 @@ dependencies: id: hireagaric theme: agarica region: content_bottom -weight: -9 +weight: 0 provider: null plugin: 'block_content:134165a3-b38a-41c1-92aa-984e3e6d3435' settings: id: 'block_content:134165a3-b38a-41c1-92aa-984e3e6d3435' label: 'Hire Agaric' - label_display: '0' provider: block_content + label_display: '0' status: true info: '' view_mode: full @@ -29,12 +29,19 @@ visibility: condition_group: id: condition_group negate: false - context_mapping: { } block_visibility_group: '' - 'entity_bundle:node': - id: 'entity_bundle:node' + context_mapping: { } + node_type: + id: node_type + bundles: + blog: blog negate: false context_mapping: node: '@node.node_route_context:node' + 'entity_bundle:node': + id: 'entity_bundle:node' bundles: blog: blog + negate: false + context_mapping: + node: '@node.node_route_context:node' diff --git a/config/block.block.home_page_custom_1.yml b/config/sync/block.block.home_page_custom_1.yml similarity index 100% rename from config/block.block.home_page_custom_1.yml rename to config/sync/block.block.home_page_custom_1.yml index d673aa3..a43fe8a 100644 --- a/config/block.block.home_page_custom_1.yml +++ b/config/sync/block.block.home_page_custom_1.yml @@ -19,8 +19,8 @@ plugin: 'block_content:a3a19121-c6a2-4a3f-8225-8e84f5fb0c9d' settings: id: 'block_content:a3a19121-c6a2-4a3f-8225-8e84f5fb0c9d' label: 'Home page custom 1' - label_display: '0' provider: block_content + label_display: '0' status: true info: '' view_mode: columnar @@ -28,5 +28,5 @@ visibility: condition_group: id: condition_group negate: false - context_mapping: { } block_visibility_group: home_page + context_mapping: { } diff --git a/config/block.block.home_page_custom_2.yml b/config/sync/block.block.home_page_custom_2.yml similarity index 100% rename from config/block.block.home_page_custom_2.yml rename to config/sync/block.block.home_page_custom_2.yml index 238fa81..6d8c6f2 100644 --- a/config/block.block.home_page_custom_2.yml +++ b/config/sync/block.block.home_page_custom_2.yml @@ -19,8 +19,8 @@ plugin: 'block_content:8f30e41d-3693-43bc-a281-9b11e29df3b8' settings: id: 'block_content:8f30e41d-3693-43bc-a281-9b11e29df3b8' label: 'Home page custom 2' - label_display: '0' provider: block_content + label_display: '0' status: true info: '' view_mode: columnar @@ -28,5 +28,5 @@ visibility: condition_group: id: condition_group negate: false - context_mapping: { } block_visibility_group: home_page + context_mapping: { } diff --git a/config/block.block.home_page_custom_3.yml b/config/sync/block.block.home_page_custom_3.yml similarity index 100% rename from config/block.block.home_page_custom_3.yml rename to config/sync/block.block.home_page_custom_3.yml index 443e406..f9fe56a 100644 --- a/config/block.block.home_page_custom_3.yml +++ b/config/sync/block.block.home_page_custom_3.yml @@ -19,8 +19,8 @@ plugin: 'block_content:086d20ee-9e48-4ee3-81ae-263f7dc279ba' settings: id: 'block_content:086d20ee-9e48-4ee3-81ae-263f7dc279ba' label: 'Home page custom 3' - label_display: '0' provider: block_content + label_display: '0' status: true info: '' view_mode: columnar @@ -28,5 +28,5 @@ visibility: condition_group: id: condition_group negate: false - context_mapping: { } block_visibility_group: home_page + context_mapping: { } diff --git a/config/block.block.home_page_feature.yml b/config/sync/block.block.home_page_feature.yml similarity index 100% rename from config/block.block.home_page_feature.yml rename to config/sync/block.block.home_page_feature.yml index b5e605a..f84ba8b 100644 --- a/config/block.block.home_page_feature.yml +++ b/config/sync/block.block.home_page_feature.yml @@ -4,13 +4,13 @@ status: true dependencies: config: - block_visibility_groups.block_visibility_group.home_page + enforced: + module: + - block_content module: - block_visibility_groups theme: - octavia - enforced: - module: - - block_content _core: default_config_hash: UM0JrnLICjDPy7RItwhppXAo_6rI5emb5-m1PX-ClIM id: home_page_feature @@ -22,8 +22,8 @@ plugin: 'block_content:2b547200-6da3-4608-aa40-b98a6bea4933' settings: id: 'block_content:2b547200-6da3-4608-aa40-b98a6bea4933' label: 'Home page feature' - label_display: '0' provider: block_content + label_display: '0' status: true info: '' view_mode: full @@ -31,5 +31,5 @@ visibility: condition_group: id: condition_group negate: false - context_mapping: { } block_visibility_group: home_page + context_mapping: { } diff --git a/config/block.block.languageswitcher.yml b/config/sync/block.block.languageswitcher.yml similarity index 97% rename from config/block.block.languageswitcher.yml rename to config/sync/block.block.languageswitcher.yml index 30d6989..0826509 100644 --- a/config/block.block.languageswitcher.yml +++ b/config/sync/block.block.languageswitcher.yml @@ -16,12 +16,12 @@ plugin: 'dropdown_language:language_interface' settings: id: 'dropdown_language:language_interface' label: 'Language:' - label_display: visible provider: dropdown_language - labels: { } + label_display: visible + labels: null visibility: condition_group: id: condition_group negate: false - context_mapping: { } block_visibility_group: '' + context_mapping: { } diff --git a/config/block.block.mainnavigation.yml b/config/sync/block.block.mainnavigation.yml similarity index 100% rename from config/block.block.mainnavigation.yml rename to config/sync/block.block.mainnavigation.yml index 161a376..57359a2 100644 --- a/config/block.block.mainnavigation.yml +++ b/config/sync/block.block.mainnavigation.yml @@ -18,8 +18,8 @@ plugin: 'system_menu_block:main' settings: id: 'system_menu_block:main' label: 'Second-level main navigation' - label_display: '0' provider: system + label_display: '0' level: 2 depth: 1 expand_all_items: false @@ -27,5 +27,5 @@ visibility: condition_group: id: condition_group negate: false - context_mapping: { } block_visibility_group: '' + context_mapping: { } diff --git a/config/block.block.octavia_account_menu.yml b/config/sync/block.block.octavia_account_menu.yml similarity index 100% rename from config/block.block.octavia_account_menu.yml rename to config/sync/block.block.octavia_account_menu.yml index 20a7b46..675d625 100644 --- a/config/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/block.block.octavia_branding.yml b/config/sync/block.block.octavia_branding.yml similarity index 100% rename from config/block.block.octavia_branding.yml rename to config/sync/block.block.octavia_branding.yml index 1982007..c7eabb9 100644 --- a/config/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/block.block.octavia_content.yml b/config/sync/block.block.octavia_content.yml similarity index 100% rename from config/block.block.octavia_content.yml rename to config/sync/block.block.octavia_content.yml index 626d3c4..6fbb8a9 100644 --- a/config/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/block.block.octavia_footer_menu.yml b/config/sync/block.block.octavia_footer_menu.yml similarity index 100% rename from config/block.block.octavia_footer_menu.yml rename to config/sync/block.block.octavia_footer_menu.yml index 5c68cd3..8b5b5ab 100644 --- a/config/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/block.block.octavia_help.yml b/config/sync/block.block.octavia_help.yml similarity index 100% rename from config/block.block.octavia_help.yml rename to config/sync/block.block.octavia_help.yml index 2eb558e..676eb1d 100644 --- a/config/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/block.block.octavia_local_actions.yml b/config/sync/block.block.octavia_local_actions.yml similarity index 100% rename from config/block.block.octavia_local_actions.yml rename to config/sync/block.block.octavia_local_actions.yml index cad882e..307f4b9 100644 --- a/config/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/block.block.octavia_local_tasks.yml b/config/sync/block.block.octavia_local_tasks.yml similarity index 100% rename from config/block.block.octavia_local_tasks.yml rename to config/sync/block.block.octavia_local_tasks.yml index 7c93501..86f9eb1 100644 --- a/config/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/block.block.octavia_main_menu.yml b/config/sync/block.block.octavia_main_menu.yml similarity index 100% rename from config/block.block.octavia_main_menu.yml rename to config/sync/block.block.octavia_main_menu.yml index f9a8f63..10dc9c7 100644 --- a/config/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/block.block.octavia_messages.yml b/config/sync/block.block.octavia_messages.yml similarity index 100% rename from config/block.block.octavia_messages.yml rename to config/sync/block.block.octavia_messages.yml index 51d7940..ed78abf 100644 --- a/config/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/block.block.octavia_page_title.yml b/config/sync/block.block.octavia_page_title.yml similarity index 100% rename from config/block.block.octavia_page_title.yml rename to config/sync/block.block.octavia_page_title.yml index fa75a1e..58e880e 100644 --- a/config/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/block.block.octavia_powered_by_drutopia.yml b/config/sync/block.block.octavia_powered_by_drutopia.yml similarity index 100% rename from config/block.block.octavia_powered_by_drutopia.yml rename to config/sync/block.block.octavia_powered_by_drutopia.yml index dd90e40..fdfbb9c 100644 --- a/config/block.block.octavia_powered_by_drutopia.yml +++ b/config/sync/block.block.octavia_powered_by_drutopia.yml @@ -17,6 +17,6 @@ plugin: drutopia_powered_by_block settings: id: drutopia_powered_by_block label: 'Powered by Drutopia' - label_display: '0' provider: drutopia + label_display: '0' visibility: { } diff --git a/config/block.block.resource_topics_facet.yml b/config/sync/block.block.resource_topics_facet.yml similarity index 100% rename from config/block.block.resource_topics_facet.yml rename to config/sync/block.block.resource_topics_facet.yml index 478b3db..32f2d1c 100644 --- a/config/block.block.resource_topics_facet.yml +++ b/config/sync/block.block.resource_topics_facet.yml @@ -21,11 +21,11 @@ plugin: 'facet_block:resource_topics' settings: id: 'facet_block:resource_topics' label: Topics - label_display: visible provider: facets + label_display: visible visibility: condition_group: id: condition_group negate: false - context_mapping: { } block_visibility_group: resource_listing + context_mapping: { } diff --git a/config/block.block.resource_type_facet.yml b/config/sync/block.block.resource_type_facet.yml similarity index 100% rename from config/block.block.resource_type_facet.yml rename to config/sync/block.block.resource_type_facet.yml index b370e1b..7a0cc17 100644 --- a/config/block.block.resource_type_facet.yml +++ b/config/sync/block.block.resource_type_facet.yml @@ -21,11 +21,11 @@ plugin: 'facet_block:resource_type' settings: id: 'facet_block:resource_type' label: Type - label_display: visible provider: facets + label_display: visible visibility: condition_group: id: condition_group negate: false - context_mapping: { } block_visibility_group: resource_listing + context_mapping: { } diff --git a/config/block.block.seven_breadcrumbs.yml b/config/sync/block.block.seven_breadcrumbs.yml similarity index 100% rename from config/block.block.seven_breadcrumbs.yml rename to config/sync/block.block.seven_breadcrumbs.yml index 9786fc4..0989c14 100644 --- a/config/block.block.seven_breadcrumbs.yml +++ b/config/sync/block.block.seven_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/block.block.seven_content.yml b/config/sync/block.block.seven_content.yml similarity index 100% rename from config/block.block.seven_content.yml rename to config/sync/block.block.seven_content.yml index 44bebc4..a927187 100644 --- a/config/block.block.seven_content.yml +++ b/config/sync/block.block.seven_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/block.block.seven_help.yml b/config/sync/block.block.seven_help.yml similarity index 100% rename from config/block.block.seven_help.yml rename to config/sync/block.block.seven_help.yml index a2b9697..cb934cb 100644 --- a/config/block.block.seven_help.yml +++ b/config/sync/block.block.seven_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/block.block.seven_local_actions.yml b/config/sync/block.block.seven_local_actions.yml similarity index 100% rename from config/block.block.seven_local_actions.yml rename to config/sync/block.block.seven_local_actions.yml index 7bd1aa9..0dcd212 100644 --- a/config/block.block.seven_local_actions.yml +++ b/config/sync/block.block.seven_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/block.block.seven_login.yml b/config/sync/block.block.seven_login.yml similarity index 100% rename from config/block.block.seven_login.yml rename to config/sync/block.block.seven_login.yml index 2916fb5..6c6b864 100644 --- a/config/block.block.seven_login.yml +++ b/config/sync/block.block.seven_login.yml @@ -17,6 +17,6 @@ plugin: user_login_block settings: id: user_login_block label: 'User login' - label_display: visible provider: user + label_display: visible visibility: { } diff --git a/config/block.block.seven_messages.yml b/config/sync/block.block.seven_messages.yml similarity index 100% rename from config/block.block.seven_messages.yml rename to config/sync/block.block.seven_messages.yml index 3af450d..6d58952 100644 --- a/config/block.block.seven_messages.yml +++ b/config/sync/block.block.seven_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/block.block.seven_page_title.yml b/config/sync/block.block.seven_page_title.yml similarity index 100% rename from config/block.block.seven_page_title.yml rename to config/sync/block.block.seven_page_title.yml index c47c870..f836a10 100644 --- a/config/block.block.seven_page_title.yml +++ b/config/sync/block.block.seven_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/block.block.seven_primary_local_tasks.yml b/config/sync/block.block.seven_primary_local_tasks.yml similarity index 100% rename from config/block.block.seven_primary_local_tasks.yml rename to config/sync/block.block.seven_primary_local_tasks.yml index 6d46cfc..5be5444 100644 --- a/config/block.block.seven_primary_local_tasks.yml +++ b/config/sync/block.block.seven_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/block.block.seven_secondary_local_tasks.yml b/config/sync/block.block.seven_secondary_local_tasks.yml similarity index 100% rename from config/block.block.seven_secondary_local_tasks.yml rename to config/sync/block.block.seven_secondary_local_tasks.yml index 99d269b..8be1678 100644 --- a/config/block.block.seven_secondary_local_tasks.yml +++ b/config/sync/block.block.seven_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/block.block.socialmedialinks.yml b/config/sync/block.block.socialmedialinks.yml similarity index 100% rename from config/block.block.socialmedialinks.yml rename to config/sync/block.block.socialmedialinks.yml index 60583e6..c049dbf 100644 --- a/config/block.block.socialmedialinks.yml +++ b/config/sync/block.block.socialmedialinks.yml @@ -17,8 +17,8 @@ plugin: social_media_links_block settings: id: social_media_links_block label: 'Social Media Links' - label_display: '0' provider: social_media_links + label_display: '0' platforms: behance: value: '' diff --git a/config/block.block.userlogin.yml b/config/sync/block.block.userlogin.yml similarity index 86% rename from config/block.block.userlogin.yml rename to config/sync/block.block.userlogin.yml index 75a2f09..bea5073 100644 --- a/config/block.block.userlogin.yml +++ b/config/sync/block.block.userlogin.yml @@ -1,6 +1,6 @@ uuid: bace00b3-a26c-4ee1-9aea-8e59f77b6a86 langcode: en -status: false +status: true dependencies: module: - block_visibility_groups @@ -11,24 +11,24 @@ dependencies: id: userlogin theme: agarica region: bottom -weight: -11 +weight: 19 provider: null plugin: user_login_block settings: id: user_login_block label: 'User login' - label_display: visible provider: user + label_display: visible visibility: condition_group: id: condition_group negate: false - context_mapping: { } block_visibility_group: '' + context_mapping: { } http_client_error_status: id: http_client_error_status + request_401: 0 + request_403: 1 + request_404: 0 negate: false context_mapping: { } - request_401: false - request_403: true - request_404: false diff --git a/config/block.block.views_block__related_content_block_related_content.yml b/config/sync/block.block.views_block__related_content_block_related_content.yml similarity index 100% rename from config/block.block.views_block__related_content_block_related_content.yml rename to config/sync/block.block.views_block__related_content_block_related_content.yml index b470ee5..10927c3 100644 --- a/config/block.block.views_block__related_content_block_related_content.yml +++ b/config/sync/block.block.views_block__related_content_block_related_content.yml @@ -20,14 +20,14 @@ 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: { } diff --git a/config/block_content.type.basic.yml b/config/sync/block_content.type.basic.yml similarity index 100% rename from config/block_content.type.basic.yml rename to config/sync/block_content.type.basic.yml diff --git a/config/block_content.type.slide.yml b/config/sync/block_content.type.slide.yml similarity index 100% rename from config/block_content.type.slide.yml rename to config/sync/block_content.type.slide.yml diff --git a/config/block_visibility_groups.block_visibility_group.article_listing.yml b/config/sync/block_visibility_groups.block_visibility_group.article_listing.yml similarity index 100% rename from config/block_visibility_groups.block_visibility_group.article_listing.yml rename to config/sync/block_visibility_groups.block_visibility_group.article_listing.yml index 190117f..2cd0699 100644 --- a/config/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/block_visibility_groups.block_visibility_group.blog_listing.yml b/config/sync/block_visibility_groups.block_visibility_group.blog_listing.yml similarity index 100% rename from config/block_visibility_groups.block_visibility_group.blog_listing.yml rename to config/sync/block_visibility_groups.block_visibility_group.blog_listing.yml index f14e0d3..ddb7ad2 100644 --- a/config/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/block_visibility_groups.block_visibility_group.event_listing.yml b/config/sync/block_visibility_groups.block_visibility_group.event_listing.yml similarity index 100% rename from config/block_visibility_groups.block_visibility_group.event_listing.yml rename to config/sync/block_visibility_groups.block_visibility_group.event_listing.yml index e3ddc0c..fef6f37 100644 --- a/config/block_visibility_groups.block_visibility_group.event_listing.yml +++ b/config/sync/block_visibility_groups.block_visibility_group.event_listing.yml @@ -12,8 +12,8 @@ logic: and conditions: 1e04f2af-09a5-4978-83f4-0c5b0cefbfc4: id: request_path - negate: false - uuid: 1e04f2af-09a5-4978-83f4-0c5b0cefbfc4 - context_mapping: { } pages: /events + negate: false + context_mapping: { } + uuid: 1e04f2af-09a5-4978-83f4-0c5b0cefbfc4 allow_other_conditions: false diff --git a/config/block_visibility_groups.block_visibility_group.home_page.yml b/config/sync/block_visibility_groups.block_visibility_group.home_page.yml similarity index 100% rename from config/block_visibility_groups.block_visibility_group.home_page.yml rename to config/sync/block_visibility_groups.block_visibility_group.home_page.yml index 98e0a0c..c1b44f1 100644 --- a/config/block_visibility_groups.block_visibility_group.home_page.yml +++ b/config/sync/block_visibility_groups.block_visibility_group.home_page.yml @@ -12,8 +12,8 @@ logic: and conditions: c14822f9-38fa-4397-a5b6-ba9a6f94138e: id: request_path - negate: false - uuid: c14822f9-38fa-4397-a5b6-ba9a6f94138e - context_mapping: { } pages: '' + negate: false + context_mapping: { } + uuid: c14822f9-38fa-4397-a5b6-ba9a6f94138e allow_other_conditions: false diff --git a/config/block_visibility_groups.block_visibility_group.resource_listing.yml b/config/sync/block_visibility_groups.block_visibility_group.resource_listing.yml similarity index 100% rename from config/block_visibility_groups.block_visibility_group.resource_listing.yml rename to config/sync/block_visibility_groups.block_visibility_group.resource_listing.yml index 556ea9c..f33e125 100644 --- a/config/block_visibility_groups.block_visibility_group.resource_listing.yml +++ b/config/sync/block_visibility_groups.block_visibility_group.resource_listing.yml @@ -12,8 +12,8 @@ logic: and conditions: a8640e54-e935-4421-ade8-277a3e8cf3e2: id: request_path - negate: false - uuid: a8640e54-e935-4421-ade8-277a3e8cf3e2 - context_mapping: { } pages: /resources + negate: false + context_mapping: { } + uuid: a8640e54-e935-4421-ade8-277a3e8cf3e2 allow_other_conditions: false diff --git a/config/block_visibility_groups.block_visibility_group.search.yml b/config/sync/block_visibility_groups.block_visibility_group.search.yml similarity index 100% rename from config/block_visibility_groups.block_visibility_group.search.yml rename to config/sync/block_visibility_groups.block_visibility_group.search.yml index d6ec7a7..43b4a17 100644 --- a/config/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/bulma.settings.yml b/config/sync/bulma.settings.yml similarity index 100% rename from config/bulma.settings.yml rename to config/sync/bulma.settings.yml index 8609d89..8cc6e0a 100644 --- a/config/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 @@ -31,3 +29,5 @@ cdn: bulmaswatch: version: 0.5.1 theme: default +_core: + default_config_hash: u5HfkXMiQipMF-CAMTyJj7Thrm-29irq33crpU5f3jI diff --git a/config/coffee.configuration.yml b/config/sync/coffee.configuration.yml similarity index 100% rename from config/coffee.configuration.yml rename to config/sync/coffee.configuration.yml index 545da1d..6058a0b 100644 --- a/config/coffee.configuration.yml +++ b/config/sync/coffee.configuration.yml @@ -1,5 +1,3 @@ -_core: - default_config_hash: cOqVnz_7pbb_0R31nQwih4Gh8XkmIbyFagFp6uUPaOc coffee_menus: admin: admin footer: footer @@ -7,6 +5,8 @@ coffee_menus: tools: tools account: account max_results: 12 +_core: + default_config_hash: cOqVnz_7pbb_0R31nQwih4Gh8XkmIbyFagFp6uUPaOc keycodes: - 206 - 75 diff --git a/config/comment.type.comment.yml b/config/sync/comment.type.comment.yml similarity index 100% rename from config/comment.type.comment.yml rename to config/sync/comment.type.comment.yml diff --git a/config/comment_notify.settings.yml b/config/sync/comment_notify.settings.yml similarity index 93% rename from config/comment_notify.settings.yml rename to config/sync/comment_notify.settings.yml index bca1d3b..f55526f 100644 --- a/config/comment_notify.settings.yml +++ b/config/sync/comment_notify.settings.yml @@ -1,7 +1,5 @@ -_core: - default_config_hash: Q6HMOSKUhb-YgBPZ1JIbcVeOxHPv-eJoBGYmXiG9Pik -bundle_types: - - node--blog--comment +node_types: + - blog available_alerts: 1: true 2: false @@ -14,23 +12,23 @@ mail_templates: 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: @@ -38,22 +36,24 @@ mail_templates: 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] -node_types: - - blog +_core: + default_config_hash: Q6HMOSKUhb-YgBPZ1JIbcVeOxHPv-eJoBGYmXiG9Pik +bundle_types: + - node--blog--comment diff --git a/config/config_perms.custom_perms_entity.administer_account_settings.yml b/config/sync/config_perms.custom_perms_entity.administer_account_settings.yml similarity index 100% rename from config/config_perms.custom_perms_entity.administer_account_settings.yml rename to config/sync/config_perms.custom_perms_entity.administer_account_settings.yml diff --git a/config/config_perms.custom_perms_entity.administer_date_time.yml b/config/sync/config_perms.custom_perms_entity.administer_date_time.yml similarity index 100% rename from config/config_perms.custom_perms_entity.administer_date_time.yml rename to config/sync/config_perms.custom_perms_entity.administer_date_time.yml diff --git a/config/config_perms.custom_perms_entity.administer_error_logs.yml b/config/sync/config_perms.custom_perms_entity.administer_error_logs.yml similarity index 100% rename from config/config_perms.custom_perms_entity.administer_error_logs.yml rename to config/sync/config_perms.custom_perms_entity.administer_error_logs.yml diff --git a/config/config_perms.custom_perms_entity.administer_file_system.yml b/config/sync/config_perms.custom_perms_entity.administer_file_system.yml similarity index 100% rename from config/config_perms.custom_perms_entity.administer_file_system.yml rename to config/sync/config_perms.custom_perms_entity.administer_file_system.yml diff --git a/config/config_perms.custom_perms_entity.administer_groups.yml b/config/sync/config_perms.custom_perms_entity.administer_groups.yml similarity index 100% rename from config/config_perms.custom_perms_entity.administer_groups.yml rename to config/sync/config_perms.custom_perms_entity.administer_groups.yml diff --git a/config/config_perms.custom_perms_entity.administer_site_information.yml b/config/sync/config_perms.custom_perms_entity.administer_site_information.yml similarity index 100% rename from config/config_perms.custom_perms_entity.administer_site_information.yml rename to config/sync/config_perms.custom_perms_entity.administer_site_information.yml diff --git a/config/config_perms.custom_perms_entity.edit_contact_form.yml b/config/sync/config_perms.custom_perms_entity.edit_contact_form.yml similarity index 100% rename from config/config_perms.custom_perms_entity.edit_contact_form.yml rename to config/sync/config_perms.custom_perms_entity.edit_contact_form.yml diff --git a/config/config_snapshot.snapshot.config_sync.module.address.yml b/config/sync/config_snapshot.snapshot.config_sync.module.address.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.address.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.address.yml diff --git a/config/config_snapshot.snapshot.config_sync.module.admin_toolbar.yml b/config/sync/config_snapshot.snapshot.config_sync.module.admin_toolbar.yml similarity index 55% rename from config/config_snapshot.snapshot.config_sync.module.admin_toolbar.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.admin_toolbar.yml index e5ca04e..60f8f59 100644 --- a/config/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_tools.yml b/config/sync/config_snapshot.snapshot.config_sync.module.admin_toolbar_tools.yml new file mode 100644 index 0000000..d98f030 --- /dev/null +++ b/config/sync/config_snapshot.snapshot.config_sync.module.admin_toolbar_tools.yml @@ -0,0 +1,11 @@ +uuid: c4f3765b-5d11-4fe2-bf9d-e9ac83d68eed +langcode: en +status: true +dependencies: + module: + - admin_toolbar_tools +id: config_sync.module.admin_toolbar_tools +snapshotSet: config_sync +extensionType: module +extensionName: admin_toolbar_tools +items: { } diff --git a/config/config_snapshot.snapshot.config_sync.module.agaric_migration.yml b/config/sync/config_snapshot.snapshot.config_sync.module.agaric_migration.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.agaric_migration.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.agaric_migration.yml diff --git a/config/config_snapshot.snapshot.config_sync.module.allowed_formats.yml b/config/sync/config_snapshot.snapshot.config_sync.module.allowed_formats.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.allowed_formats.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.allowed_formats.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.antibot.yml b/config/sync/config_snapshot.snapshot.config_sync.module.antibot.yml new file mode 100644 index 0000000..e8c6766 --- /dev/null +++ b/config/sync/config_snapshot.snapshot.config_sync.module.antibot.yml @@ -0,0 +1,22 @@ +uuid: 4bc3ca8c-e1d5-40a4-bdb6-e385f720a88e +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_*' + show_form_ids: false diff --git a/config/config_snapshot.snapshot.config_sync.module.automated_cron.yml b/config/sync/config_snapshot.snapshot.config_sync.module.automated_cron.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.automated_cron.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.automated_cron.yml diff --git a/config/config_snapshot.snapshot.config_sync.module.autosave_form.yml b/config/sync/config_snapshot.snapshot.config_sync.module.autosave_form.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.autosave_form.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.autosave_form.yml 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..cb8a8f8 --- /dev/null +++ b/config/sync/config_snapshot.snapshot.config_sync.module.better_normalizers.yml @@ -0,0 +1,11 @@ +uuid: a9942b62-3fd9-4d0d-8cfb-fff14dcdc863 +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/config_snapshot.snapshot.config_sync.module.block.yml b/config/sync/config_snapshot.snapshot.config_sync.module.block.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.block.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.block.yml diff --git a/config/config_snapshot.snapshot.config_sync.module.block_content.yml b/config/sync/config_snapshot.snapshot.config_sync.module.block_content.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.block_content.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.block_content.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.block_theme_sync.yml b/config/sync/config_snapshot.snapshot.config_sync.module.block_theme_sync.yml new file mode 100644 index 0000000..488907e --- /dev/null +++ b/config/sync/config_snapshot.snapshot.config_sync.module.block_theme_sync.yml @@ -0,0 +1,11 @@ +uuid: 854d3b96-f788-42c9-8061-2f52ee1ce278 +langcode: en +status: true +dependencies: + module: + - block_theme_sync +id: config_sync.module.block_theme_sync +snapshotSet: config_sync +extensionType: module +extensionName: block_theme_sync +items: { } diff --git a/config/config_snapshot.snapshot.config_sync.module.block_visibility_groups.yml b/config/sync/config_snapshot.snapshot.config_sync.module.block_visibility_groups.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.block_visibility_groups.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.block_visibility_groups.yml diff --git a/config/config_snapshot.snapshot.config_sync.module.breakpoint.yml b/config/sync/config_snapshot.snapshot.config_sync.module.breakpoint.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.breakpoint.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.breakpoint.yml diff --git a/config/config_snapshot.snapshot.config_sync.module.ckeditor.yml b/config/sync/config_snapshot.snapshot.config_sync.module.ckeditor.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.ckeditor.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.ckeditor.yml diff --git a/config/config_snapshot.snapshot.config_sync.module.ckeditor_markdown.yml b/config/sync/config_snapshot.snapshot.config_sync.module.ckeditor_markdown.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.ckeditor_markdown.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.ckeditor_markdown.yml diff --git a/config/config_snapshot.snapshot.config_sync.module.coffee.yml b/config/sync/config_snapshot.snapshot.config_sync.module.coffee.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.coffee.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.coffee.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.color.yml b/config/sync/config_snapshot.snapshot.config_sync.module.color.yml new file mode 100644 index 0000000..b9e9026 --- /dev/null +++ b/config/sync/config_snapshot.snapshot.config_sync.module.color.yml @@ -0,0 +1,11 @@ +uuid: 24d017a7-cecb-4edd-9621-ba4dafa21151 +langcode: en +status: true +dependencies: + module: + - color +id: config_sync.module.color +snapshotSet: config_sync +extensionType: module +extensionName: color +items: { } diff --git a/config/config_snapshot.snapshot.config_sync.module.comment.yml b/config/sync/config_snapshot.snapshot.config_sync.module.comment.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.comment.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.comment.yml diff --git a/config/config_snapshot.snapshot.config_sync.module.comment_notify.yml b/config/sync/config_snapshot.snapshot.config_sync.module.comment_notify.yml similarity index 92% rename from config/config_snapshot.snapshot.config_sync.module.comment_notify.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.comment_notify.yml index 45c4679..bb55b73 100644 --- a/config/config_snapshot.snapshot.config_sync.module.comment_notify.yml +++ b/config/sync/config_snapshot.snapshot.config_sync.module.comment_notify.yml @@ -26,43 +26,43 @@ items: 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: 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] diff --git a/config/config_snapshot.snapshot.config_sync.module.components.yml b/config/sync/config_snapshot.snapshot.config_sync.module.components.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.components.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.components.yml diff --git a/config/config_snapshot.snapshot.config_sync.module.config.yml b/config/sync/config_snapshot.snapshot.config_sync.module.config.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.config.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.config.yml diff --git a/config/config_snapshot.snapshot.config_sync.module.config_actions.yml b/config/sync/config_snapshot.snapshot.config_sync.module.config_actions.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.config_actions.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.config_actions.yml diff --git a/config/config_snapshot.snapshot.config_sync.module.config_actions_provider.yml b/config/sync/config_snapshot.snapshot.config_sync.module.config_actions_provider.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.config_actions_provider.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.config_actions_provider.yml diff --git a/config/config_snapshot.snapshot.config_sync.module.config_distro.yml b/config/sync/config_snapshot.snapshot.config_sync.module.config_distro.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.config_distro.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.config_distro.yml diff --git a/config/config_snapshot.snapshot.config_sync.module.config_filter.yml b/config/sync/config_snapshot.snapshot.config_sync.module.config_filter.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.config_filter.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.config_filter.yml diff --git a/config/config_snapshot.snapshot.config_sync.module.config_merge.yml b/config/sync/config_snapshot.snapshot.config_sync.module.config_merge.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.config_merge.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.config_merge.yml diff --git a/config/config_snapshot.snapshot.config_sync.module.config_normalizer.yml b/config/sync/config_snapshot.snapshot.config_sync.module.config_normalizer.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.config_normalizer.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.config_normalizer.yml diff --git a/config/config_snapshot.snapshot.config_sync.module.config_perms.yml b/config/sync/config_snapshot.snapshot.config_sync.module.config_perms.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.config_perms.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.config_perms.yml diff --git a/config/config_snapshot.snapshot.config_sync.module.config_provider.yml b/config/sync/config_snapshot.snapshot.config_sync.module.config_provider.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.config_provider.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.config_provider.yml diff --git a/config/config_snapshot.snapshot.config_sync.module.config_snapshot.yml b/config/sync/config_snapshot.snapshot.config_sync.module.config_snapshot.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.config_snapshot.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.config_snapshot.yml diff --git a/config/config_snapshot.snapshot.config_sync.module.config_sync.yml b/config/sync/config_snapshot.snapshot.config_sync.module.config_sync.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.config_sync.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.config_sync.yml diff --git a/config/config_snapshot.snapshot.config_sync.module.config_translation.yml b/config/sync/config_snapshot.snapshot.config_sync.module.config_translation.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.config_translation.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.config_translation.yml diff --git a/config/config_snapshot.snapshot.config_sync.module.config_update.yml b/config/sync/config_snapshot.snapshot.config_sync.module.config_update.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.config_update.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.config_update.yml diff --git a/config/config_snapshot.snapshot.config_sync.module.contact.yml b/config/sync/config_snapshot.snapshot.config_sync.module.contact.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.contact.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.contact.yml diff --git a/config/config_snapshot.snapshot.config_sync.module.content_translation.yml b/config/sync/config_snapshot.snapshot.config_sync.module.content_translation.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.content_translation.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.content_translation.yml diff --git a/config/config_snapshot.snapshot.config_sync.module.contextual.yml b/config/sync/config_snapshot.snapshot.config_sync.module.contextual.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.contextual.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.contextual.yml diff --git a/config/config_snapshot.snapshot.config_sync.module.crop.yml b/config/sync/config_snapshot.snapshot.config_sync.module.crop.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.crop.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.crop.yml diff --git a/config/config_snapshot.snapshot.config_sync.module.ctools.yml b/config/sync/config_snapshot.snapshot.config_sync.module.ctools.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.ctools.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.ctools.yml diff --git a/config/config_snapshot.snapshot.config_sync.module.customerror.yml b/config/sync/config_snapshot.snapshot.config_sync.module.customerror.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.customerror.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.customerror.yml diff --git a/config/config_snapshot.snapshot.config_sync.module.datetime.yml b/config/sync/config_snapshot.snapshot.config_sync.module.datetime.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.datetime.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.datetime.yml diff --git a/config/config_snapshot.snapshot.config_sync.module.datetime_range.yml b/config/sync/config_snapshot.snapshot.config_sync.module.datetime_range.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.datetime_range.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.datetime_range.yml diff --git a/config/config_snapshot.snapshot.config_sync.module.dblog.yml b/config/sync/config_snapshot.snapshot.config_sync.module.dblog.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.dblog.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.dblog.yml diff --git a/config/sync/config_snapshot.snapshot.config_sync.module.default_content.yml b/config/sync/config_snapshot.snapshot.config_sync.module.default_content.yml new file mode 100644 index 0000000..f4f8484 --- /dev/null +++ b/config/sync/config_snapshot.snapshot.config_sync.module.default_content.yml @@ -0,0 +1,11 @@ +uuid: d99c8ad0-01f3-4001-a044-bf8f406d5d1d +langcode: en +status: true +dependencies: + module: + - default_content +id: config_sync.module.default_content +snapshotSet: config_sync +extensionType: module +extensionName: default_content +items: { } diff --git a/config/config_snapshot.snapshot.config_sync.module.diff.yml b/config/sync/config_snapshot.snapshot.config_sync.module.diff.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.diff.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.diff.yml diff --git a/config/config_snapshot.snapshot.config_sync.module.dropdown_language.yml b/config/sync/config_snapshot.snapshot.config_sync.module.dropdown_language.yml similarity index 100% rename from config/config_snapshot.snapshot.config_sync.module.dropdown_language.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.dropdown_language.yml diff --git a/config/config_snapshot.snapshot.config_sync.module.drutopia.yml b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia.yml similarity index 72% rename from config/config_snapshot.snapshot.config_sync.module.drutopia.yml rename to config/sync/config_snapshot.snapshot.config_sync.module.drutopia.yml index 5ea3363..4ac92a1 100644 --- a/config/config_snapshot.snapshot.config_sync.module.drutopia.yml +++ b/config/sync/config_snapshot.snapshot.config_sync.module.drutopia.yml @@ -9,22 +9,6 @@ snapshotSet: config_sync extensionType: module extensionName: drutopia items: - - - collection: '' - name: admin_toolbar.settings - data: - menu_depth: 4 - _core: - default_config_hash: jvTSppzcgH5wnzBhX5xnAExcp2I1CzkQ_aky65XNfYI - - - 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 - collection: '' name: automated_cron.settings @@ -364,202 +348,6 @@ items: negate: false block_visibility_group: '' context_mapping: { } - - - collection: '' - name: block.block.gin_breadcrumbs - data: - langcode: en - status: true - dependencies: - module: - - system - theme: - - gin - id: gin_breadcrumbs - theme: gin - region: breadcrumb - weight: 0 - provider: null - plugin: system_breadcrumb_block - settings: - id: system_breadcrumb_block - label: Breadcrumbs - label_display: '0' - provider: system - visibility: { } - _core: - default_config_hash: ZOACAyVqAsweSfQ3uPyiRW1JJA5JZQ1xTo30oqNdOcQ - - - collection: '' - name: block.block.gin_content - data: - langcode: en - status: true - dependencies: - module: - - system - theme: - - gin - id: gin_content - theme: gin - region: content - weight: 0 - provider: null - plugin: system_main_block - settings: - id: system_main_block - label: 'Main page content' - label_display: '0' - provider: system - visibility: { } - _core: - default_config_hash: V4zLpZTS1gx4lR-Lu8wLaSlSxVO7HM0grGXam8rw0po - - - collection: '' - name: block.block.gin_help - data: - langcode: en - status: true - dependencies: - module: - - help - theme: - - gin - id: gin_help - theme: gin - region: help - weight: 0 - provider: null - plugin: help_block - settings: - id: help_block - label: Help - label_display: '0' - provider: help - visibility: { } - _core: - default_config_hash: rv3H3EpMJnPncOjb28qFfzyc1Bq-lJVK7pc2xeVIC9g - - - collection: '' - name: block.block.gin_local_actions - data: - langcode: en - status: true - dependencies: - theme: - - gin - id: gin_local_actions - theme: gin - region: content - weight: -10 - provider: null - plugin: local_actions_block - settings: - id: local_actions_block - label: 'Primary admin actions' - label_display: '0' - provider: core - visibility: { } - _core: - default_config_hash: DPPQGDnzOrO36H18ZZEuAooGvVz2OzLBTX6_rUPWDl4 - - - collection: '' - name: block.block.gin_messages - data: - langcode: en - status: true - dependencies: - module: - - system - theme: - - gin - id: gin_messages - theme: gin - region: highlighted - weight: 0 - provider: null - plugin: system_messages_block - settings: - id: system_messages_block - label: 'Status messages' - label_display: '0' - provider: system - visibility: { } - _core: - default_config_hash: Wlzjc8v3Cj_Xac0rE-j2lFubQsKTNqSVIX3TBcvG7Ww - - - collection: '' - name: block.block.gin_page_title - data: - langcode: en - status: true - dependencies: - theme: - - gin - id: gin_page_title - theme: gin - region: header - weight: -30 - provider: null - plugin: page_title_block - settings: - id: page_title_block - label: 'Page title' - label_display: '0' - provider: core - visibility: { } - _core: - default_config_hash: 7MZjpjUKVzdu4dpBXJaFfv8aaFwpWvEpE7glKXjyAqs - - - collection: '' - name: block.block.gin_primary_local_tasks - data: - langcode: en - status: true - dependencies: - theme: - - gin - id: gin_primary_local_tasks - theme: gin - region: header - weight: 0 - provider: null - plugin: local_tasks_block - settings: - id: local_tasks_block - label: 'Primary tabs' - label_display: '0' - provider: core - primary: true - secondary: false - visibility: { } - _core: - default_config_hash: L7ggfcG-f8RT8RVoYr0AevU3-bZd0pVkcjFaT7Oy080 - - - collection: '' - name: block.block.gin_secondary_local_tasks - data: - langcode: en - status: true - dependencies: - theme: - - gin - id: gin_secondary_local_tasks - theme: gin - region: pre_content - weight: 0 - provider: null - plugin: local_tasks_block - settings: - id: local_tasks_block - label: 'Secondary tabs' - label_display: '0' - provider: core - primary: false - secondary: true - visibility: { } - _core: - default_config_hash: _bwkDKqd3fNgkGbyCTCQSXF_U8o66wQGHKchr1E6zBk - collection: '' name: block.block.group_operations @@ -1044,111 +832,6 @@ items: fontawesome: examples: '' visibility: { } - - - collection: '' - name: editor.editor.basic_html - data: - langcode: en - status: true - dependencies: - config: - - filter.format.basic_html - module: - - ckeditor5 - format: basic_html - editor: ckeditor5 - settings: - toolbar: - items: - - bold - - italic - - '|' - - link - - '|' - - bulletedList - - numberedList - - '|' - - blockQuote - - drupalInsertImage - - '|' - - heading - - code - - '|' - - sourceEditing - 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: - - '' - - '
' - - '
' - - '
' - - '' - - '
' - - '